ten / .vscode /tasks.json
3v324v23's picture
Зафиксирована рабочая версия TEN-Agent для HuggingFace Space
87337b1
raw
history blame contribute delete
400 Bytes
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "build",
"command": "make build",
"args": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "start app",
"type": "shell",
"command": "export TEN_ENABLE_PYTHON_DEBUG=true; export TEN_PYTHON_DEBUG_PORT=5678; ./agents/bin/start",
"group": "none",
"isBackground": true
},
]
}