Skip to content

Commit 5dd7e55

Browse files
committed
added max thinking level
1 parent 350b063 commit 5dd7e55

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

apps/sim/blocks/blocks/agent.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ Return ONLY the JSON array.`,
274274
{ label: 'low', id: 'low' },
275275
{ label: 'medium', id: 'medium' },
276276
{ label: 'high', id: 'high' },
277+
{ label: 'max', id: 'max' },
277278
],
278279
dependsOn: ['model'],
279280
fetchOptions: async (blockId: string) => {

apps/sim/providers/models.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -790,6 +790,25 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
790790
toolUsageControl: true,
791791
},
792792
models: [
793+
{
794+
id: 'azure-anthropic/claude-opus-4-6',
795+
pricing: {
796+
input: 5.0,
797+
cachedInput: 0.5,
798+
output: 25.0,
799+
updatedAt: '2026-02-05',
800+
},
801+
capabilities: {
802+
temperature: { min: 0, max: 1 },
803+
nativeStructuredOutputs: true,
804+
maxOutputTokens: { max: 128000, default: 8192 },
805+
thinking: {
806+
levels: ['low', 'medium', 'high', 'max'],
807+
default: 'high',
808+
},
809+
},
810+
contextWindow: 200000,
811+
},
793812
{
794813
id: 'azure-anthropic/claude-opus-4-5',
795814
pricing: {

0 commit comments

Comments
 (0)