MINARA

Get background task models

GET /v1/llm/background-models — Return whether background task models are supported and effective, the configuration source, assigned slots, and the mod

GET /v1/llm/background-models

Return whether background task models are supported and effective, the configuration source, assigned slots, and the model used for chat, titles, compression, unattended work, and vision. Chat stays on the selected model. Empty or unavailable slots fall back to that same model.

MethodGET
Path/v1/llm/background-models
AuthAuthorization: Bearer <token> required when GATEWAY_AUTH_TOKEN is set
Categoryllm

Response body

{ "supported": true, "enabled": true, "effective": true, "enabledSource": "default", "slots": { "utility": "deepseek-v4-flash" }, "routes": [{ "workload": "interactive_agent", "model": "anthropic/claude-sonnet-5", "alternatives": [], "source": "chat", "available": true }, { "workload": "utility", "model": "deepseek-v4-flash", "alternatives": ["anthropic/claude-sonnet-5"], "source": "slot", "available": true }] }

On this page