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.
| Method | GET |
| Path | /v1/llm/background-models |
| Auth | Authorization: Bearer <token> required when GATEWAY_AUTH_TOKEN is set |
| Category | llm |
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 }] }