feat: implement audio token generation and update streaming endpoints
All checks were successful
Build and Push Docker Image / docker (push) Successful in 21s

This commit is contained in:
2025-09-04 22:10:27 +02:00
parent 8c5ca0044f
commit 10a992c048
4 changed files with 180 additions and 48 deletions

33
.vscode/tasks.json vendored
View File

@@ -1,13 +1,22 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "start-dev",
"type": "shell",
"command": "npm run start",
"isBackground": false,
"problemMatcher": ["$eslint-stylish"],
"group": "build"
}
]
}
"version": "2.0.0",
"tasks": [
{
"label": "start-dev",
"type": "shell",
"command": "npm run start",
"isBackground": false,
"problemMatcher": [
"$eslint-stylish"
],
"group": "build"
},
{
"label": "start-dev",
"type": "shell",
"command": "npm run start",
"isBackground": false,
"group": "build"
}
]
}