Spaces:
Running
Running
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Chatbot", | |
"type": "python", | |
"request": "launch", | |
"module": "uvicorn", | |
"args": [ | |
"src.main:app", | |
"--reload" | |
], | |
"jinja": true, | |
"justMyCode": true, | |
"env": { | |
"PYTHONPATH": "${workspaceFolder}" | |
} | |
}, | |
{ | |
"name": "Chatbot: Tests", | |
"type": "python", | |
"request": "launch", | |
"module": "pytest", | |
"args": [ | |
"tests" | |
], | |
"console": "integratedTerminal" | |
} | |
] | |
} |