-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtai.code-workspace
More file actions
73 lines (73 loc) · 2.2 KB
/
tai.code-workspace
File metadata and controls
73 lines (73 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"folders": [
{
"name": "🤖 AI Chatbot Backend",
"path": "./ai_chatbot_backend"
},
{
"name": "🔍 RAG Pipeline",
"path": "./rag"
},
{
"name": "📊 Evaluation",
"path": "./evaluation"
},
{
"name": "📁 Root",
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/.mypy_cache": true,
"**/.ruff_cache": true,
"**/*.egg-info": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"isort.args": [
"--settings-path",
"${workspaceFolder}"
],
"isort.check": true,
"isort.importStrategy": "fromEnvironment",
"python.analysis.inlayHints.callArgumentNames": "all",
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.terminal.activateEnvironment": false,
"search.exclude": {
"**/node_modules": true,
"**/.venv": true,
"**/*.egg-info": true,
"**/__pycache__": true
},
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.rulers": [
120
]
},
"cursorpyright.analysis.inlayHints.callArgumentNames": "all",
"cursorpyright.analysis.inlayHints.functionReturnTypes": true,
"cursorpyright.analysis.inlayHints.variableTypes": true,
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.black-formatter",
"ms-vscode.makefile-tools"
]
}
}