mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-26 01:12:21 +00:00
Add VSCode launch configuration for LiteLLM proxy debugging
This commit is contained in:
parent
675e49ed94
commit
cbab96553c
1 changed files with 24 additions and 0 deletions
24
.vscode/launch.json
vendored
Normal file
24
.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "LiteLLM proxy (debug)",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/litellm/proxy/proxy_cli.py",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"args": [
|
||||
"--host",
|
||||
"0.0.0.0",
|
||||
"--config",
|
||||
"test-config/dev_config.yaml",
|
||||
"--port",
|
||||
"4000",
|
||||
"--num_workers",
|
||||
"1"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue