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 @@ -39,6 +39,7 @@ API: `google-generative-ai` · coordinates: normalized 0–999
Exact IDs:

- `gemini-3-flash-preview`
- `gemini-3-pro-preview`
- `gemini-2.5-computer-use-preview-10-2025`

Source: [Gemini computer use docs](https://ai.google.dev/gemini-api/docs/computer-use).
Expand Down
1 change: 1 addition & 0 deletions packages/ai/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export const CUA_MODEL_ANNOTATIONS: Record<CuaProvider, readonly CuaModelAnnotat
],
google: [
{ match: { kind: "exact", id: "gemini-3-flash-preview" }, source: "https://ai.google.dev/gemini-api/docs/computer-use" },
{ match: { kind: "exact", id: "gemini-3-pro-preview" }, source: "https://ai.google.dev/gemini-api/docs/computer-use" },
{ match: { kind: "exact", id: "gemini-2.5-computer-use-preview-10-2025" }, source: "https://ai.google.dev/gemini-api/docs/computer-use" },
],
tzafon: [
Expand Down
1 change: 1 addition & 0 deletions packages/ai/test/models.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ describe("CUA support annotations", () => {

it("matches exact-id annotations", () => {
expect(findCuaAnnotation("google", "gemini-3-flash-preview")).toBeDefined();
expect(findCuaAnnotation("google", "gemini-3-pro-preview")).toBeDefined();
expect(findCuaAnnotation("yutori", "n1.5-latest")).toBeDefined();
expect(findCuaAnnotation("tzafon", "tzafon.northstar-cua-fast")).toBeDefined();
});
Expand Down
Loading