chatbot-backend / .vscode /launch.json
TalatMasood's picture
Update knowledge upload api and linked chromadb to mongodb
d161383
raw
history blame contribute delete
704 Bytes
{
"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"
}
]
}