Models
Models are the LLM options available in Aegis. Each has a stable numeric id, a URL-safe slug (what you pass in model_slug on runs and evaluations), a display name, and supplier metadata. Use the table 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.
Available models
id | slug | name | thinking | latest | Supplier |
|---|---|---|---|---|---|
| 1 | gpt-4o | GPT-4o | no | no | OpenAI |
| 2 | gpt-4.1 | GPT-4.1 | no | no | OpenAI |
| 3 | o3-mini | o3-mini | yes | no | OpenAI |
| 4 | o4-mini | o4-mini | yes | no | OpenAI |
| 5 | gpt-5 | GPT-5 | yes | no | OpenAI |
| 6 | gpt-5.1 | GPT-5.1 | yes | no | OpenAI |
| 7 | gpt-5.2 | GPT-5.2 | yes | no | OpenAI |
| 8 | gpt-5.4 | GPT-5.4 | yes | yes | OpenAI |
thinking—yesmeans the model is treated as a “thinking” / reasoning-style model in the product;nomeans it is not.latest—yeson exactly one model marks the current recommended “latest” line variant where applicable; other rows showno.
In API payloads, always use the slug (for example gpt-4o or gpt-5.4).