diff --git a/docs/configuration/models/index.md b/docs/configuration/models/index.md index 39798bc98..041133b4f 100644 --- a/docs/configuration/models/index.md +++ b/docs/configuration/models/index.md @@ -66,9 +66,9 @@ Use `first_available` when the same agent should work with whichever provider cr models: smart: first_available: - - anthropic/claude-sonnet-4-5 + - anthropic/claude-sonnet-4-6 - openai/gpt-5 - - google/gemini-2.5-flash + - google/gemini-3.5-flash - dmr/ai/qwen3 # local fallback; no API key required agents: @@ -87,7 +87,7 @@ A `first_available` model is only a selector. It cannot be combined with `provid models: claude: provider: anthropic - model: claude-sonnet-4-5 + model: claude-sonnet-4-6 max_tokens: 64000 gpt: diff --git a/docs/configuration/overview/index.md b/docs/configuration/overview/index.md index 082510f18..4c0179229 100644 --- a/docs/configuration/overview/index.md +++ b/docs/configuration/overview/index.md @@ -83,7 +83,7 @@ The simplest possible configuration — a single agent with an inline model: ```yaml agents: root: - model: openai/gpt-5-mini + model: openai/gpt-5 description: A helpful assistant instruction: You are a helpful assistant. ``` @@ -92,7 +92,7 @@ The same config in HCL: ```hcl agent "root" { - model = "openai/gpt-5-mini" + model = "openai/gpt-5" description = "A helpful assistant" instruction = "You are a helpful assistant." } @@ -106,7 +106,7 @@ Models can be referenced inline or defined in the `models` section:
Quick and simple. Use provider/model syntax directly.
model: openai/gpt-5-mini
+ model: openai/gpt-5