From 5dbd717c25249b8caecdc782e707caf4fea993a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnaud=20H=C3=A9ritier?= Date: Sun, 7 Jun 2026 04:04:46 +0000 Subject: [PATCH 1/2] docs: update gpt-5-mini examples to gpt-5 in config overview Reflects default model change from PR #2997 where openai default was bumped from gpt-5-mini to gpt-5. PR #3003 updated the env var table but left code examples unchanged. Source: https://github.com/docker/docker-agent/pull/2997 --- docs/configuration/overview/index.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 ``` From 79b0a736879c2c8e14025a4d773890c85356a122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnaud=20H=C3=A9ritier?= Date: Sun, 7 Jun 2026 04:04:55 +0000 Subject: [PATCH 2/2] docs: update first_available example to current default models Update the first_available example in models config to use the current default model versions (claude-sonnet-4-6, gemini-3.5-flash) matching PR #2997. Source: https://github.com/docker/docker-agent/pull/2997 --- docs/configuration/models/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: