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
3 changes: 2 additions & 1 deletion docs/src/content/docs/reference/model-alias-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -539,14 +539,15 @@ AWF ships the following builtin aliases. Workflow frontmatter definitions (and i
| `gpt-5-codex` | `copilot/gpt-5*codex*`, `openai/gpt-5*codex*` |
| `reasoning` | `copilot/o1*`, `copilot/o3*`, `copilot/o4*`, `openai/o1*`, `openai/o3*`, `openai/o4*` |
| `gemini-flash` | `copilot/gemini-*flash*`, `google/gemini-*flash*` |
| `gemini-flash-lite` | `copilot/gemini-*flash*lite*`, `google/gemini-*flash*lite*`, `gemini/gemini-*flash*lite*` |
| `gemini-pro` | `copilot/gemini-*pro*`, `google/gemini-*pro*` |

### 9.2 Meta-Aliases

| Alias | Resolves to (in order) |
|-------|------------------------|
| `small` | `mini` |
| `mini` | `haiku`, `gpt-5-mini`, `gpt-5-nano`, `gemini-flash` |
| `mini` | `haiku`, `gpt-5-mini`, `gpt-5-nano`, `gemini-flash-lite` |
| `large` | `sonnet`, `gpt-5`, `gemini-pro` |
| `auto` | `large` |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/reference/tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ See **[GitHub Tools Reference](/gh-aw/reference/github-tools/)** for complete co

### Bash Tool (`bash:`)

Enables shell command execution in the workspace. Defaults to safe commands (`echo`, `ls`, `pwd`, `cat`, `head`, `tail`, `grep`, `wc`, `sort`, `uniq`, `date`).
Enables shell command execution in the workspace. Defaults to safe commands (`echo`, `printf`, `ls`, `pwd`, `cat`, `head`, `tail`, `grep`, `wc`, `sort`, `uniq`, `date`, `yq`).

```yaml wrap
tools:
Expand Down