{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "chatbot-ui", "cwd": "${workspaceFolder}/app", "type": "debugpy", "request": "launch", "program": "run.py", "console": "integratedTerminal", "env": { "LLM": "1", "CHAT_COMPLETION_ENDPOINT": "http://localhost:10000/v1" } }, { "name": "chatbot-ui llm", "cwd": "${workspaceFolder}/app", "type": "debugpy", "request": "launch", "program": "run.py", "console": "integratedTerminal", "env": { "LLM": "1", "CHAT_COMPLETION_ENDPOINT": "http://localhost:12000/v1" } }, { "name": "chatbot-ui streaming", "cwd": "${workspaceFolder}/app", "type": "debugpy", "request": "launch", "program": "run_stream.py", "console": "integratedTerminal", "env": { "LLM": "1", "CHAT_COMPLETION_ENDPOINT": "http://localhost:10000/v1" } } ] }