From b0503c6270a6094d0ad63be047f70444f7035575 Mon Sep 17 00:00:00 2001 From: dal Date: Wed, 8 Oct 2025 13:41:14 -0600 Subject: [PATCH] gateway model fix --- packages/ai/src/llm/providers/gateway.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/ai/src/llm/providers/gateway.ts b/packages/ai/src/llm/providers/gateway.ts index 4be7855f5..02fab57eb 100644 --- a/packages/ai/src/llm/providers/gateway.ts +++ b/packages/ai/src/llm/providers/gateway.ts @@ -55,19 +55,11 @@ export const DEFAULT_ANTHROPIC_OPTIONS: AnthropicProviderOptions = { }, anthropic: { cacheControl: { type: 'ephemeral' }, - thinking: { - type: 'enabled', - budgetTokens: 10000, // Set desired tokens for reasoning - }, }, bedrock: { cachePoint: { type: 'default' }, additionalModelRequestFields: { anthropic_beta: ['fine-grained-tool-streaming-2025-05-14'], - reasoning_config: { - type: 'enabled', - budget_tokens: 10000, // Adjust as needed - }, }, }, };