Resources
Changelog
Notable changes to the Ablatic API and its documentation
Notable changes to the Ablatic API and these docs. Newest first.
2026-07-16
reasoning_effortnow shapes the reasoning.lowkeeps the reasoning brief;medium(the default) is normal depth;high,xhigh, andmaxraise the reasoning-token budget so the model can reason longer. There are two reasoning modes — fast and thinking — and effort abovemediumlifts the budget rather than switching to a separate mode.max_tokensstill bounds the reasoning, so a smallmax_tokensat high effort keeps the reasoning short.reasoning_tokensin theusageobject is always reported as a subset ofcompletion_tokens, matching the OpenAI contract.
2026-07-02
- One model.
GET /v1/modelsnow returns a single model,talos-preview. You pick the reasoning mode per request withreasoning_effortinstead of switching model ids. reasoning_effortaccepts the full OpenAI value set:none/minimalmap to fast,low/mediumto thinking,high/xhigh/maxto extended. Unknown values fall back to thinking rather than returning a 422.- Prompt caching is billed. Cached input tokens are charged at a large discount and cache writes at the normal input rate — no write premium, like OpenAI's automatic caching. See Usage and billing.
- The documented context window is 200000 tokens, the real served ceiling.
2026-06-27
The public API documentation went live at docs.ablatic.ai.
- Two compatible surfaces are documented: OpenAI style at
POST /v1/chat/completionsand Anthropic style atPOST /v1/messages. - The four models are listed:
talos,talos-fast,talos-thinking, andtalos-extended. Default istalos. - Base URL, authentication, models, capabilities, errors, and rate limits are covered.
This is the first changelog entry. We will add a dated entry here when the API surface or these docs change in a way you need to know about.