docs(faq): align model ids with shorthands

This commit is contained in:
Peter Steinberger
2026-01-05 01:06:16 +01:00
parent c37b4c18e0
commit 16ce76307e

View File

@@ -562,16 +562,16 @@ Clawdbot ships a few default model shorthands (you can override them in config):
```json ```json
{ {
"agent": { "agent": {
"model": "anthropic/claude-opus-4-5-20251022", "model": "anthropic/claude-opus-4-5",
"allowedModels": [ "allowedModels": [
"anthropic/claude-opus-4-5-20251022", "anthropic/claude-opus-4-5",
"anthropic/claude-sonnet-4-5-20251022", "anthropic/claude-sonnet-4-5",
"anthropic/claude-haiku-4-5-20251001" "anthropic/claude-haiku-4-5"
], ],
"modelAliases": { "modelAliases": {
"opus": "anthropic/claude-opus-4-5-20251022", "opus": "anthropic/claude-opus-4-5",
"sonnet": "anthropic/claude-sonnet-4-5-20251022", "sonnet": "anthropic/claude-sonnet-4-5",
"haiku": "anthropic/claude-haiku-4-5-20251001" "haiku": "anthropic/claude-haiku-4-5"
} }
} }
} }