Documentation Index
Fetch the complete documentation index at: https://docs.clearmaas.com/llms.txt
Use this file to discover all available pages before exploring further.
What’s available
ClearMaas routes to nine upstream providers. Models are addressed by provider-prefixed ID:| Prefix | Provider | Examples (call /v1/models for the live catalog) |
|---|---|---|
openai/ | OpenAI | openai/gpt-4o-mini, openai/gpt-5, openai/o3-mini, openai/gpt-image-1, openai/tts-1 |
anthropic/ | Anthropic | anthropic/claude-sonnet-4.6, anthropic/claude-opus-4.7 |
google/ | Google Gemini | google/gemini-2.5-flash, google/gemini-3-pro-preview, google/imagen-4.0-generate-001 |
deepseek/ | DeepSeek | deepseek/deepseek-chat, deepseek/deepseek-reasoner |
grok/ | xAI Grok | grok/grok-4-fast-reasoning, grok/grok-imagine-image |
qwen/ | Alibaba Qwen | qwen/qwen3.6-plus, qwen/qwen3-vl-235b-a22b-thinking, qwen/qwen3-max |
kimi/ | Moonshot Kimi | kimi/kimi-k2.5, kimi/kimi-k2.6 |
minimax/ | MiniMax | minimax/minimax-m2.7, minimax/minimax-m2.5-highspeed |
kling/ | Kling (video) | kling/kling-v3-omni, kling/kling-v2-6 — see Kling Video |
List all models programmatically
Response shape
Get one model
Naming conventions
Model IDs in ClearMaas are provider-prefixed by default. The prefix tells you (and your client-side logs) exactly which provider will serve the call before the request even leaves your machine. The bare upstream name (e.g.gpt-4o-mini) may also work if your
administrator has configured it as an alias on a channel, but the
default listing in /v1/models always uses the prefixed form — code
written against the prefixed names is portable across deployments.
Picking by capability
| You need… | Try |
|---|---|
| Cheapest chat | openai/gpt-4o-mini, google/gemini-2.5-flash-lite |
| Strongest reasoning | openai/o3-mini-high, openai/gpt-5-pro, anthropic/claude-opus-4.7 |
| Long context + cheap | google/gemini-2.5-flash |
| Web search built-in | openai/gpt-4o-search-preview (chat completions), or any Grok model on /v1/responses with the web_search tool — see Web search |
| Vision input | openai/gpt-4o-mini, google/gemini-2.5-flash, grok/grok-4-fast-reasoning |
| Image generation | openai/gpt-image-1-mini, google/imagen-4.0-fast-generate-001, grok/grok-imagine-image |
| Auto-pick cheapest | clearmaas/auto — see Auto Router |
| Video generation | kling/kling-v3-omni, kling/kling-v3 — see Kling Video |