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:

Inline

Quick and simple. Use provider/model syntax directly.

-
model: openai/gpt-5-mini
+
model: openai/gpt-5

Named

@@ -311,7 +311,7 @@ version: 8 agents: root: - model: openai/gpt-5-mini + model: openai/gpt-5 # ... ``` @@ -357,7 +357,7 @@ mcps: agents: root: - model: openai/gpt-5-mini + model: openai/gpt-5 toolsets: - type: mcp ref: github # reuse the definition above @@ -383,13 +383,13 @@ skills: agents: root: - model: openai/gpt-5-mini + model: openai/gpt-5 use_commands: [ci] # reuse the "ci" command group use_skills: [base] # reuse the "base" skill group commands: lint: "Run the linter" # inline command, merged in (wins on conflict) reviewer: - model: openai/gpt-5-mini + model: openai/gpt-5 use_commands: [ci] # same group, reused without duplication ```