# AI SDK 7

DevFeed: [AI SDK 7](<https://devfeed.tech/articles/ai-sdk-7-726.md>)

Original publisher: [Read original article](<https://vercel.com/blog/ai-sdk-7>)

Author: Josh Singh

Published: 2026-06-25T13:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [AI Bots](<https://devfeed.tech/topics/ai-bots.md>)

Tags: [agents](<https://devfeed.tech/tags/agents.md>), [ai](<https://devfeed.tech/tags/ai.md>), [codex](<https://devfeed.tech/tags/codex.md>), [mcp](<https://devfeed.tech/tags/mcp.md>), [node-js](<https://devfeed.tech/tags/node-js.md>), [sandbox](<https://devfeed.tech/tags/sandbox.md>), [telemetry](<https://devfeed.tech/tags/telemetry.md>), [tools](<https://devfeed.tech/tags/tools.md>), [typescript](<https://devfeed.tech/tags/typescript.md>), [video](<https://devfeed.tech/tags/video.md>)

## AI overview

AI SDK 7 is a release focused on production capabilities for building, running, integrating, and observing AI agents. It adds reasoning controls, typed tool and runtime context, approvals, durability, sandboxing, telemetry, real-time voice, and video generation support.

## Source excerpt

AI SDK, with over 16 million weekly downloads, is the TypeScript SDK for building AI applications, features, frameworks, and agents across any model provider. It's the same layer eve, Vercel's open-source agent framework, is built on. AI SDK 7 adds production depth for agent work across five areas: Develop agents with reasoning control, tool and runtime context, provider files and skills support, MCP Apps, and a terminal UI. Run agents with tool approvals, durability (WorkflowAgent), timeouts, and sandbox support. Integrate any agent harness, such as Codex, Claude Code, Deep Agents, OpenCode, or Pi. Observe agents with telemetry, Node.js tracing channel, lifecycle events, and performance statistics. Go beyond text agents with provider-agnostic real-time voice support and video generation. Develop agents Building well-behaved agents requires fine-grained control over model reasoning, tool context, and file handling. Reasoning control Most frontier models support configurable reasoning, but every provider API exposes it differently. AI SDK 7 standardizes this with a reasoning option for generateText and streamText. It maps to provider-native reasoning settings, letting you control reasoning effort in a single line. You can also still fall back to provider options when you need more detailed provider-specific reasoning configuration. Learn more in the reasoning documentation. Tool context Tools are increasingly developed independently of specific agents or applications. For example, third-party companies offer tools that enable agents to use their APIs. Therefore, tools require additional inputs that are not generated by LLMs, such as API keys or configuration settings. AI SDK 7 adds a fully typed tool context that can be specified for each tool via a schema. The context is limited to the tool to prevent 3rd-party tools from accessing context they do not need. Learn more about Tool Context Runtime context For more complex agentic loops, you often need variables that yo