Use a :latest alias to always route to the most recent version of a model family without updating your code.
Not yet available.
Model families — like Claude, Gemini, and Llama — release new versions regularly. The Latest Model Resolution feature lets you pin to a moving :latest alias instead of a fixed version slug. When a new version is added to the catalog, your requests automatically route to it with no code change.
Append :latest to a model family prefix:
The model field in the response always reflects the resolved concrete slug (e.g., anthropic/claude-opus-4.8), so you always know what ran.
| Alias | Resolves to |
|---|---|
anthropic/claude:latest | Latest Claude model in the catalog |
openai/gpt:latest | Latest GPT model |
google/gemini:latest | Latest Gemini model |
meta-llama/llama:latest | Latest Llama model |
Aliases always resolve to the latest stable release. Release candidates and beta models are excluded unless you explicitly opt in (opt-in not yet available).
"Latest" is determined by the catalog's publish date for each model slug. OpenDunes resolves the alias at request time using the current catalog snapshot:
anthropic/claude-*).Resolution adds negligible overhead — the result is cached in the routing layer.
The :latest alias tracks the stable catalog. If you want to test a newly added model before it becomes :latest, reference it by its full slug directly. There is no separate :beta or :preview alias in this release.
Using :latest trades predictability for currency:
anthropic/claude-sonnet-5).model field in the response if you need to detect when a new model was picked.For production workloads where consistency matters, use a pinned slug. Use :latest for applications where you always want the newest capability (chatbots, assistants, exploratory tools).
To see what :latest resolves to right now without making an inference request:
The response is the full model object for the currently resolved slug, including its exact name, context length, and DA pricing.