We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e318bf2 commit c52f78cCopy full SHA for c52f78c
5 files changed
apps/sim/app/api/tools/stagehand/agent/route.ts
@@ -165,7 +165,7 @@ export async function POST(request: NextRequest) {
165
}
166
167
const modelName =
168
- provider === 'anthropic' ? 'anthropic/claude-3-7-sonnet-latest' : 'openai/gpt-4.1'
+ provider === 'anthropic' ? 'anthropic/claude-sonnet-4-5-20250929' : 'openai/gpt-5'
169
170
try {
171
logger.info('Initializing Stagehand with Browserbase (v3)', { provider, modelName })
apps/sim/app/api/tools/stagehand/extract/route.ts
@@ -101,7 +101,7 @@ export async function POST(request: NextRequest) {
101
102
103
104
105
106
107
apps/sim/blocks/blocks/browser_use.ts
@@ -33,6 +33,7 @@ export const BrowserUseBlock: BlockConfig<BrowserUseResponse> = {
33
type: 'dropdown',
34
options: [
35
{ label: 'Browser Use LLM', id: 'browser-use-llm' },
36
+ { label: 'Browser Use 2.0', id: 'browser-use-2.0' },
37
{ label: 'GPT-4o', id: 'gpt-4o' },
38
{ label: 'GPT-4o Mini', id: 'gpt-4o-mini' },
39
{ label: 'GPT-4.1', id: 'gpt-4.1' },
@@ -42,6 +43,7 @@ export const BrowserUseBlock: BlockConfig<BrowserUseResponse> = {
42
43
{ label: 'Gemini 2.5 Flash', id: 'gemini-2.5-flash' },
44
{ label: 'Gemini 2.5 Pro', id: 'gemini-2.5-pro' },
45
{ label: 'Gemini 3 Pro Preview', id: 'gemini-3-pro-preview' },
46
+ { label: 'Gemini 3 Flash Preview', id: 'gemini-3-flash-preview' },
47
{ label: 'Gemini Flash Latest', id: 'gemini-flash-latest' },
48
{ label: 'Gemini Flash Lite Latest', id: 'gemini-flash-lite-latest' },
49
{ label: 'Claude 3.7 Sonnet', id: 'claude-3-7-sonnet-20250219' },
apps/sim/providers/models.ts
@@ -467,25 +467,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
467
},
468
contextWindow: 200000,
469
470
- {
471
- id: 'claude-3-7-sonnet-latest',
472
- pricing: {
473
- input: 3.0,
474
- cachedInput: 0.3,
475
- output: 15.0,
476
- updatedAt: '2026-02-05',
477
- },
478
- capabilities: {
479
- temperature: { min: 0, max: 1 },
480
- computerUse: true,
481
- maxOutputTokens: 64000,
482
- thinking: {
483
- levels: ['low', 'medium', 'high'],
484
- default: 'high',
485
486
487
- contextWindow: 200000,
488
489
],
490
491
'azure-openai': {
apps/sim/providers/utils.test.ts
@@ -183,7 +183,6 @@ describe('Model Capabilities', () => {
183
'gemini-2.5-flash',
184
'claude-sonnet-4-0',
185
'claude-opus-4-0',
186
- 'claude-3-7-sonnet-latest',
187
'grok-3-latest',
188
'grok-3-fast-latest',
189
'deepseek-v3',
@@ -260,7 +259,6 @@ describe('Model Capabilities', () => {
260
259
const modelsRange01 = [
261
262
263
264
265
266
]
0 commit comments