Models
Models are the LLM options available in Aegis. Each has a URL-safe slug (what you pass in model_slug on runs and evaluations), a display name, and supplier metadata. Use the tables below to pick a valid slug when creating runs or evaluations.
There is no GET /models (or related) route on the API server—the catalog is documented here. Numeric database ids are assigned at deploy time and are not part of the public contract; always send the slug.
OpenAI
slug | name | thinking | latest |
|---|---|---|---|
gpt-4o | GPT-4o | no | no |
gpt-4.1 | GPT-4.1 | no | no |
o3-mini | o3-mini | yes | no |
o4-mini | o4-mini | yes | no |
gpt-5 | GPT-5 | yes | no |
gpt-5.1 | GPT-5.1 | yes | no |
gpt-5.2 | GPT-5.2 | yes | no |
gpt-5.4 | GPT-5.4 | yes | no |
gpt-5.5 | GPT-5.5 | yes | yes |
Anthropic
slug | name | thinking | latest |
|---|---|---|---|
claude-haiku-4-5 | Claude Haiku 4.5 | no | yes |
claude-sonnet-4-6 | Claude Sonnet 4.6 | yes | yes |
claude-opus-4-5 | Claude Opus 4.5 | yes | no |
claude-opus-4-6 | Claude Opus 4.6 | yes | no |
claude-opus-4-7 | Claude Opus 4.7 | yes | yes |
thinking—yesmeans the model is treated as a “thinking” / reasoning-style model in the product;nomeans it is not.latest—yesmarks the current recommended variant within that supplier’s line where applicable; other rows showno. A supplier may have more than onelatestmodel (for example a fast and a flagship option).
In API payloads, always use the slug (for example gpt-4o, gpt-5.5, or claude-sonnet-4-6).