Add whisper docker dependency status to gateway dashboard
This commit is contained in:
@@ -382,6 +382,39 @@ Return status for user-level local LLM backend daemons (for example `ollama.serv
|
||||
}
|
||||
```
|
||||
|
||||
#### `system.dockerDependencies`
|
||||
|
||||
Return status for docker-compose managed dependencies (currently includes local Whisper service status for voice transcription workflows).
|
||||
|
||||
**Request:**
|
||||
```json
|
||||
{
|
||||
"id": 12,
|
||||
"method": "system.dockerDependencies"
|
||||
}
|
||||
```
|
||||
|
||||
**Response:**
|
||||
```json
|
||||
{
|
||||
"id": 12,
|
||||
"result": {
|
||||
"dependencies": [
|
||||
{
|
||||
"id": "whisper",
|
||||
"name": "Whisper (whisper.cpp)",
|
||||
"service": "whisper-server",
|
||||
"configured": true,
|
||||
"state": "running",
|
||||
"health": "healthy",
|
||||
"statusText": "Up 4 minutes (healthy)",
|
||||
"containerName": "flynn-whisper-server-1"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### `system.localBackendControl`
|
||||
|
||||
Control a local backend daemon (`start`, `restart`, `stop`, `update`).
|
||||
|
||||
Reference in New Issue
Block a user