Skip to content

Commit 350b063

Browse files
committed
feat(azure): added azure anthropic, added backwards compat support for chat completions API, added opus 4.6
1 parent 2d7e6c9 commit 350b063

File tree

11 files changed

+2211
-1175
lines changed

11 files changed

+2211
-1175
lines changed

apps/sim/app/llms-full.txt/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ An execution is a single run of a workflow. It includes:
5656
### LLM Orchestration
5757
Sim supports all major LLM providers:
5858
- OpenAI (GPT-5.2, GPT-5.1, GPT-5, GPT-4o, GPT-4.1)
59-
- Anthropic (Claude Opus 4.5, Claude Opus 4.1, Claude Sonnet 4.5, Claude Haiku 4.5)
59+
- Anthropic (Claude Opus 4.6, Claude Opus 4.5, Claude Sonnet 4.5, Claude Haiku 4.5)
6060
- Google (Gemini Pro 3, Gemini Pro 3 Preview, Gemini 2.5 Pro, Gemini 2.5 Flash)
6161
- Mistral (Mistral Large, Mistral Medium)
6262
- xAI (Grok)

apps/sim/blocks/blocks/agent.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,10 @@ Example 3 (Array Input):
763763
maxTokens: { type: 'number', description: 'Maximum number of tokens in the response' },
764764
reasoningEffort: { type: 'string', description: 'Reasoning effort level for GPT-5 models' },
765765
verbosity: { type: 'string', description: 'Verbosity level for GPT-5 models' },
766-
thinkingLevel: { type: 'string', description: 'Thinking level for Gemini 3 models' },
766+
thinkingLevel: {
767+
type: 'string',
768+
description: 'Thinking level for models with extended thinking (Anthropic Claude, Gemini 3)',
769+
},
767770
tools: { type: 'json', description: 'Available tools configuration' },
768771
},
769772
outputs: {

0 commit comments

Comments
 (0)