File tree Expand file tree Collapse file tree 7 files changed +96
-1
lines changed
agentstack-sdk-py/.vscode
agentstack-server/.vscode Expand file tree Collapse file tree 7 files changed +96
-1
lines changed Original file line number Diff line number Diff line change @@ -210,4 +210,9 @@ mise.local.toml
210210.ruff_cache /
211211
212212# VSCode
213- .vscode /
213+ .vscode /*
214+ ! .vscode /settings.json
215+ ! .vscode /tasks.json
216+ ! .vscode /launch.json
217+ ! .vscode /extensions.json
218+ ! .vscode /* .code-snippets
Original file line number Diff line number Diff line change 1+ {
2+ "recommendations" : [
3+ " charliermarsh.ruff"
4+ ]
5+ }
Original file line number Diff line number Diff line change 1+ {
2+ "folders" : [
3+ {
4+ "name" : " root" ,
5+ "path" : " ."
6+ },
7+ {
8+ "name" : " agentstack-server" ,
9+ "path" : " apps/agentstack-server"
10+ },
11+ {
12+ "name" : " agentstack-sdk-py" ,
13+ "path" : " apps/agentstack-sdk-py"
14+ },
15+ {
16+ "name" : " agentstack-cli" ,
17+ "path" : " apps/agentstack-cli"
18+ },
19+ {
20+ "name" : " agent-chat" ,
21+ "path" : " agents/chat"
22+ },
23+ {
24+ "name" : " agent-form" ,
25+ "path" : " agents/form"
26+ },
27+ {
28+ "name" : " agent-rag" ,
29+ "path" : " agents/rag"
30+ }
31+ ],
32+ "settings" : {
33+ "python.analysis.extraPaths" : [
34+ " ${workspaceFolder}/apps/agentstack-sdk-py/src"
35+ ],
36+ "python.analysis.diagnosticMode" : " workspace" ,
37+ "python.analysis.typeCheckingMode" : " basic"
38+ }
39+ }
Original file line number Diff line number Diff line change 1+ {
2+ "python.defaultInterpreterPath" : " ${workspaceFolder}/.venv/bin/python" ,
3+ "python.analysis.typeCheckingMode" : " basic" ,
4+ "python.analysis.diagnosticMode" : " workspace"
5+ }
Original file line number Diff line number Diff line change 1+ {
2+ "python.defaultInterpreterPath" : " ${workspaceFolder}/.venv/bin/python" ,
3+ "python.analysis.typeCheckingMode" : " basic" ,
4+ "python.analysis.diagnosticMode" : " workspace" ,
5+ "python.testing.pytestArgs" : [
6+ " tests"
7+ ],
8+ "python.testing.unittestEnabled" : false ,
9+ "python.testing.pytestEnabled" : true
10+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 0.2.0" ,
3+ "configurations" : [
4+ {
5+ "name" : " agentstack-server" ,
6+ "type" : " debugpy" ,
7+ "request" : " launch" ,
8+ "module" : " uvicorn" ,
9+ "args" : [
10+ " agentstack_server.application:app" ,
11+ " --host=0.0.0.0" ,
12+ " --port=18333" ,
13+ " --timeout-keep-alive=60" ,
14+ " --timeout-graceful-shutdown=2"
15+ ],
16+ }
17+ ]
18+ }
Original file line number Diff line number Diff line change 1+ {
2+ "python.defaultInterpreterPath" : " ${workspaceFolder}/.venv/bin/python" ,
3+ "python.analysis.typeCheckingMode" : " basic" ,
4+ "python.analysis.diagnosticMode" : " workspace" ,
5+ "python.analysis.indexing" : true ,
6+ "python.analysis.autoImportUserSymbols" : true ,
7+ "python.analysis.autoImportCompletions" : true ,
8+ "python.testing.pytestArgs" : [
9+ " tests"
10+ ],
11+ "python.testing.unittestEnabled" : false ,
12+ "python.testing.pytestEnabled" : true ,
13+ }
You can’t perform that action at this time.
0 commit comments