docs / api / models

GET /v1/models

Lijst modellen beschikbaar voor Soriku, met provider en routing-eligibility.

GET/api/v1/models

Lijst alle geregistreerde modellen (lokale Ollama + externe providers als keys aanwezig).

Voorbeeld

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 }
]
}