Skip to content

Commit a5b7897

Browse files
authored
feat(models): added claude opus 4.5 (#2111)
* feat(models): added claude opus 4.5 * add to copilot dropdown
1 parent c6482f2 commit a5b7897

File tree

2 files changed

+14
-0
lines changed
  • apps/sim
    • app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/user-input
    • providers

2 files changed

+14
-0
lines changed

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/user-input/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export const MODEL_OPTIONS = [
2323
// { value: 'claude-4-sonnet', label: 'Claude 4 Sonnet' },
2424
{ value: 'claude-4.5-sonnet', label: 'Claude 4.5 Sonnet' },
2525
{ value: 'claude-4.5-haiku', label: 'Claude 4.5 Haiku' },
26+
{ value: 'claude-4.5-opus', label: 'Claude 4.5 Opus' },
2627
{ value: 'claude-4.1-opus', label: 'Claude 4.1 Opus' },
2728
// { value: 'gpt-5-fast', label: 'GPT 5 Fast' },
2829
// { value: 'gpt-5', label: 'GPT 5' },

apps/sim/providers/models.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,19 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
588588
},
589589
contextWindow: 200000,
590590
},
591+
{
592+
id: 'claude-opus-4-5',
593+
pricing: {
594+
input: 5.0,
595+
cachedInput: 0.5,
596+
output: 25.0,
597+
updatedAt: '2025-11-24',
598+
},
599+
capabilities: {
600+
temperature: { min: 0, max: 1 },
601+
},
602+
contextWindow: 200000,
603+
},
591604
{
592605
id: 'claude-opus-4-1',
593606
pricing: {

0 commit comments

Comments
 (0)