init
This commit is contained in:
71
vw-agentic-rag/.vscode/launch.json
vendored
Normal file
71
vw-agentic-rag/.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Debug Agentic RAG Service",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/debug_service.py",
|
||||
"console": "integratedTerminal",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"env": {
|
||||
"PYTHONPATH": "${workspaceFolder}",
|
||||
"CONFIG_FILE": "${workspaceFolder}/config.yaml"
|
||||
},
|
||||
"args": [],
|
||||
"justMyCode": false,
|
||||
"stopOnEntry": false
|
||||
},
|
||||
{
|
||||
"name": "Debug Service with uvicorn",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"module": "uvicorn",
|
||||
"args": [
|
||||
"service.main:app",
|
||||
"--host", "0.0.0.0",
|
||||
"--port", "8000",
|
||||
"--reload",
|
||||
"--log-level", "debug"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"env": {
|
||||
"PYTHONPATH": "${workspaceFolder}",
|
||||
"CONFIG_FILE": "${workspaceFolder}/config.yaml"
|
||||
},
|
||||
"justMyCode": false,
|
||||
"stopOnEntry": false
|
||||
},
|
||||
{
|
||||
"name": "Run Tests",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"module": "pytest",
|
||||
"args": [
|
||||
"-v",
|
||||
"tests/"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"env": {
|
||||
"PYTHONPATH": "${workspaceFolder}",
|
||||
"CONFIG_FILE": "${workspaceFolder}/config.yaml"
|
||||
},
|
||||
"justMyCode": false
|
||||
},
|
||||
{
|
||||
"name": "Run Streaming Test",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/scripts/test_real_streaming.py",
|
||||
"console": "integratedTerminal",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"env": {
|
||||
"PYTHONPATH": "${workspaceFolder}",
|
||||
"CONFIG_FILE": "${workspaceFolder}/config.yaml"
|
||||
},
|
||||
"justMyCode": false
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user