{ // 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": [ { "python": "${workspaceFolder}/venv/bin/python", "name": "chatbot-ui", "type": "debugpy", "request": "launch", "program": "run_stream.py", "console": "integratedTerminal", "env": { "LLM": "1", "CHAT_COMPLETION_ENDPOINT": "http://localhost:10000/v1", "STREAMING": "True", "ARCH_CONFIG": "../../samples_python/weather_forecast/arch_config.yaml" } }, { "python": "${workspaceFolder}/venv/bin/python", "name": "chatbot-ui llm", "type": "debugpy", "request": "launch", "program": "run_stream.py", "console": "integratedTerminal", "env": { "LLM": "1", "CHAT_COMPLETION_ENDPOINT": "http://localhost:12000/v1", "STREAMING": "True", "ARCH_CONFIG": "../../samples_python/weather_forecast/arch_config.yaml" } }, ] }