Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/configuration/models/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
14 changes: 7 additions & 7 deletions docs/configuration/overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
```
Expand All @@ -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."
}
Expand All @@ -106,7 +106,7 @@ Models can be referenced inline or defined in the `models` section:
<div class="card" style="cursor:default;">
<h3>Inline</h3>
<p>Quick and simple. Use <code>provider/model</code> syntax directly.</p>
<pre style="margin-top:12px"><code class="language-yaml">model: openai/gpt-5-mini</code></pre>
<pre style="margin-top:12px"><code class="language-yaml">model: openai/gpt-5</code></pre>
</div>
<div class="card" style="cursor:default;">
<h3>Named</h3>
Expand Down Expand Up @@ -311,7 +311,7 @@ version: 8

agents:
root:
model: openai/gpt-5-mini
model: openai/gpt-5
# ...
```

Expand Down Expand Up @@ -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
Expand All @@ -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
```

Expand Down
Loading