-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmulti-modal-rag-with-colpali.code-workspace
More file actions
52 lines (52 loc) · 1.23 KB
/
multi-modal-rag-with-colpali.code-workspace
File metadata and controls
52 lines (52 loc) · 1.23 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
{
"folders": [
{
"name": "ColPali Inference",
"path": "modules/colpali_inference"
},
{
"name": "Document Processor",
"path": "modules/document_processor"
},
{
"name": "Agent",
"path": "modules/agent"
},
{
"name": "Infrastructure",
"path": "modules/infra"
},
{
"name": "Helm Charts",
"path": "modules/helm"
},
{
"name": "Automation Scripts",
"path": "scripts"
}
],
"settings": {
"files.trimTrailingWhitespace": true,
"editor.formatOnSave": true,
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/Scripts/python.exe",
"python.terminal.activateEnvironment": true,
"python.testing.pytestEnabled": true,
"python.envFile": "${workspaceFolder}/.env",
"python.analysis.autoImportCompletions": true,
"[python]": {
"editor.defaultFormatter": "ms-python.python"
}
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"ms-azuretools.vscode-docker",
"ms-vscode.powershell",
"ms-vscode.azure-account",
"bierner.markdown-mermaid",
"ms-kubernetes-tools.vscode-kubernetes-tools"
]
}
}