2024-08-06 23:40:06 -07:00
|
|
|
{
|
|
|
|
|
// 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": [
|
|
|
|
|
{
|
2024-10-01 09:13:50 -07:00
|
|
|
"name": "model server",
|
2024-08-06 23:40:06 -07:00
|
|
|
"type": "debugpy",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"module": "uvicorn",
|
2024-10-01 09:13:50 -07:00
|
|
|
"args": ["app.main:app","--reload", "--port", "8000"],
|
2024-10-07 00:03:25 -07:00
|
|
|
"env": {
|
|
|
|
|
"MODE": "local-cpu",
|
|
|
|
|
}
|
2024-08-06 23:40:06 -07:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|