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: 3 additions & 0 deletions packages/core/lib/v3/agent/AgentProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,16 @@ import { MicrosoftCUAClient } from "./MicrosoftCUAClient.js";
// Map model names to their provider types
export const modelToAgentProviderMap: Record<string, AgentProviderType> = {
"gpt-5.4": "openai",
"gpt-5.4-mini": "openai",
"gpt-5.5": "openai",
Comment thread
miguelg719 marked this conversation as resolved.
"computer-use-preview": "openai",
"computer-use-preview-2025-03-11": "openai",
"claude-sonnet-4-20250514": "anthropic",
"claude-sonnet-4-5-20250929": "anthropic",
"claude-opus-4-5-20251101": "anthropic",
"claude-opus-4-6": "anthropic",
"claude-sonnet-4-6": "anthropic",
"claude-haiku-4-5": "anthropic",
"claude-haiku-4-5-20251001": "anthropic",
"gemini-2.5-computer-use-preview-10-2025": "google",
"gemini-3-flash-preview": "google",
Expand Down
3 changes: 3 additions & 0 deletions packages/core/lib/v3/types/public/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,11 +450,14 @@ export type AgentType =

export const AVAILABLE_CUA_MODELS = [
"openai/gpt-5.4",
"openai/gpt-5.4-mini",
"openai/gpt-5.5",
"openai/computer-use-preview",
"openai/computer-use-preview-2025-03-11",
"anthropic/claude-opus-4-5-20251101",
"anthropic/claude-opus-4-6",
"anthropic/claude-sonnet-4-6",
"anthropic/claude-haiku-4-5",
"anthropic/claude-haiku-4-5-20251001",
"anthropic/claude-sonnet-4-20250514",
"anthropic/claude-sonnet-4-5-20250929",
Expand Down
3 changes: 3 additions & 0 deletions packages/core/tests/unit/public-api/llm-and-agents.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,12 @@ describe("LLM and Agents public API types", () => {
"openai/computer-use-preview",
"openai/computer-use-preview-2025-03-11",
"openai/gpt-5.4",
"openai/gpt-5.4-mini",
"openai/gpt-5.5",
"anthropic/claude-opus-4-5-20251101",
"anthropic/claude-opus-4-6",
"anthropic/claude-sonnet-4-6",
"anthropic/claude-haiku-4-5",
"anthropic/claude-haiku-4-5-20251001",
"anthropic/claude-sonnet-4-20250514",
"anthropic/claude-sonnet-4-5-20250929",
Expand Down
Loading