GET /v1/models
List models available to Soriku, with provider and routing eligibility.
GET
/api/v1/modelsList all registered models (local Ollama + remote providers if keys present).
Example
curl -s http://localhost:8765/api/v1/models | jq
Response
{
"object": "list",
"data": [
{ "id": "qwen2.5-coder:7b", "provider": "ollama", "context_length": 32768 },
{ "id": "anthropic:claude-sonnet-4-6", "provider": "anthropic", "context_length": 200000 }
]
}