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
1 change: 1 addition & 0 deletions packages/ai/docs/supported-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Family matches (root + numeric revision/dated-snapshot suffixes):
- `claude-3-7-sonnet`
- `claude-opus-4`
- `claude-sonnet-4`
- `claude-sonnet-5`
- `claude-haiku-4`
- `claude-fable-5`

Expand Down
5 changes: 4 additions & 1 deletion packages/ai/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export const CUA_MODEL_ANNOTATIONS: Record<CuaProvider, readonly CuaModelAnnotat
{ match: { kind: "family", family: "claude-3-7-sonnet" }, source: "https://docs.anthropic.com/en/docs/build-with-claude/computer-use" },
{ match: { kind: "family", family: "claude-opus-4" }, source: "https://docs.anthropic.com/en/docs/build-with-claude/computer-use" },
{ match: { kind: "family", family: "claude-sonnet-4" }, source: "https://docs.anthropic.com/en/docs/build-with-claude/computer-use" },
{ match: { kind: "family", family: "claude-sonnet-5" }, source: "https://docs.anthropic.com/en/docs/build-with-claude/computer-use" },
{ match: { kind: "family", family: "claude-haiku-4" }, source: "https://docs.anthropic.com/en/docs/build-with-claude/computer-use" },
{ match: { kind: "family", family: "claude-fable-5" }, source: "https://docs.anthropic.com/en/docs/build-with-claude/computer-use" },
],
Expand Down Expand Up @@ -104,7 +105,9 @@ const CUA_MODEL_OVERRIDES: Record<CuaProvider, readonly Model<Api>[]> = {
cuaModel("openai", "gpt-5.5", "GPT-5.5"),
cuaModel("openai", "gpt-5.5-2026-04-23", "GPT-5.5 (2026-04-23)"),
],
anthropic: [],
anthropic: [
cuaModel("anthropic", "claude-sonnet-5", "Claude Sonnet 5"),
],
google: [],
tzafon: [
cuaModel("tzafon", "tzafon.northstar-cua-fast", "Tzafon Northstar CUA Fast"),
Expand Down
Loading