mirror of
https://github.com/katanemo/plano.git
synced 2026-04-26 17:26:26 +02:00
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
// 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"
|
|
}
|
|
}
|
|
]
|
|
}
|