This commit is contained in:
Adil Hafeez 2024-10-28 23:22:48 -07:00
parent 676617b41b
commit 13429e4465
5 changed files with 181 additions and 7 deletions

View file

@ -7,16 +7,15 @@
{
"python": "${workspaceFolder}/venv/bin/python",
"name": "chatbot-ui",
"cwd": "${workspaceFolder}/app",
"type": "debugpy",
"request": "launch",
"program": "run.py",
"program": "run_stream.py",
"console": "integratedTerminal",
"env": {
"LLM": "1",
"CHAT_COMPLETION_ENDPOINT": "http://localhost:10000/v1",
"STREAMING": "True",
"ARCH_CONFIG": "../../demos/function_calling/arch_config.yaml"
"ARCH_CONFIG": "../demos/function_calling/arch_config.yaml"
}
},
{