You can now access DeepSeek's latest models, DeepSeek V3.2 and DeepSeek V3.2 Speciale, via Vercel's AI Gateway with no other provider accounts required. DeepSeek V3.2 supports combined thinking and tool use, handling agent-style operations (tool calls) in both reasoning and non-reasoning modes. DeepSeek V3.2 Speciale is optimized for maximal reasoning performance, and is suited for complex task use cases but requires higher token usage and does not support tool use. To use the DeepSeek V3.2 models, set model to the following in the AI SDK : Non-thinking: deepseek/deepseek-v3.2 Thinking: deepseek/deepseek-v3.2-thinking Speciale: deepseek/deepseek-v3.2-speciale import { streamText } from 'ai' ; const result = streamText ( { model : 'deepseek/deepseek-v3.2-speciale' , prompt : ` Design a self-contained, step-by-step solution to a novel math–algorithm hybrid problem: prove correctness, derive complexity, and construct an optimal implementation for the general case.…