diff --git a/src/content/docs/docs/integrations/google-genai.mdx b/src/content/docs/docs/integrations/google-genai.mdx index 86e044ee..e0e0e6e2 100644 --- a/src/content/docs/docs/integrations/google-genai.mdx +++ b/src/content/docs/docs/integrations/google-genai.mdx @@ -162,11 +162,11 @@ Gemini 2.5 and newer models use an internal thinking process that improves reaso ```typescript const response = await ai.generate({ - model: googleAI.model('gemini-3-pro-preview'), + model: googleAI.model('gemini-3-flash-preview'), prompt: 'what is heavier, one kilo of steel or one kilo of feathers', config: { thinkingConfig: { - thinkingLevel: 'HIGH', // Or 'LOW' or 'MEDIUM' + thinkingLevel: 'HIGH', // Or 'MINIMAL' or 'LOW' or 'MEDIUM' }, }, });