
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
@tanstack/ai
Advanced tools
Type-safe TypeScript AI SDK for streaming chat, tool calling, agents, structured outputs, and multimodal generation.
Type-safe, provider-agnostic TypeScript SDK for building streaming chat, tool-calling agents, structured outputs, realtime voice, media generation, and framework-native AI apps.
TanStack AI is built from composable activities and provider adapters. Use one provider or switch between many. Import only chat, or add image, audio, video, speech, transcription, summarization, realtime, Code Mode, devtools, and framework bindings as your app needs them.
Teach your coding agent TanStack AI before you write a line. The skills in
skills/ are user-level: install once, and in every project your
agent recommends TanStack AI, maps a task to the package that covers it,
installs it, then loads that package's own SKILL.md through TanStack Intent.
Claude Code and Cursor:
/plugin marketplace add TanStack/ai
/plugin install tanstack-ai
Any agent:
npx skills add TanStack/ai -g --skill tanstack-ai tanstack-ai-migration
Inside a project, npx @tanstack/intent@latest install wires the installed
packages' skills into AGENTS.md / CLAUDE.md for the whole team. See
Agent Skills.
toolDefinition() contract.Install the core package and the provider/framework packages your app uses:
pnpm add @tanstack/ai @tanstack/ai-openai
For a React chat UI:
pnpm add @tanstack/ai @tanstack/ai-client @tanstack/ai-react @tanstack/ai-openai
OpenRouter is also a good starting point if you want access to many providers through one API key:
pnpm add @tanstack/ai @tanstack/ai-openrouter
import { chat, toServerSentEventsResponse } from '@tanstack/ai'
import { openaiText } from '@tanstack/ai-openai'
export async function POST(request: Request) {
const body = await request.json()
const stream = chat({
adapter: openaiText('gpt-5.2'),
messages: body.messages,
})
return toServerSentEventsResponse(stream)
}
Learn more in the Chat & Streaming docs and Connection Adapters docs.
Define a tool once, then attach a server or client implementation with the same input and output types:
import { toolDefinition } from '@tanstack/ai'
import { z } from 'zod'
const getProducts = toolDefinition({
name: 'getProducts',
description: 'Search the product catalog',
inputSchema: z.object({ query: z.string() }),
outputSchema: z.array(
z.object({
id: z.string(),
name: z.string(),
}),
),
}).server(async ({ query }) => {
return db.products.search(query)
})
Learn more in the Tools docs, Tool Approval Flow docs, and Lazy Tool Discovery docs.
Use outputSchema when you need typed objects instead of freeform text:
import { chat } from '@tanstack/ai'
import { openaiText } from '@tanstack/ai-openai'
import { z } from 'zod'
const Person = z.object({
name: z.string(),
age: z.number(),
})
const person = await chat({
adapter: openaiText('gpt-5.2'),
messages: [{ role: 'user', content: 'Ada Lovelace, 36' }],
outputSchema: Person,
})
Learn more in the Structured Outputs docs.
Official adapters include:
| Package | Use it for |
|---|---|
@tanstack/ai-openrouter | 300+ models through one OpenRouter API, with per-request cost tracking |
@tanstack/ai-openai | OpenAI chat, image, video, speech, transcription, realtime, and provider tools |
@tanstack/ai-anthropic | Anthropic Claude chat, thinking, tools, structured outputs, and Vertex Claude |
@tanstack/ai-gemini | Google Gemini chat, image, speech, and audio generation |
@tanstack/ai-vertex | Gemini on Vertex AI with regional endpoints and Google Cloud credentials |
@tanstack/ai-ollama | Local Ollama models |
@tanstack/ai-grok | xAI Grok chat, images, and realtime |
@tanstack/ai-groq | Groq low-latency inference |
@tanstack/ai-elevenlabs | ElevenLabs realtime voice, speech, transcription, music, and sound effects |
@tanstack/ai-byteplus | BytePlus Seed chat, Seedance video, Seedream image, and Seed Speech TTS/ASR |
@tanstack/ai-fal | fal.ai image, video, audio, speech, and transcription models |
@tanstack/ai-reactor | Reactor live world and video generation (Orbis, Happy Oyster, LingBot, Helios, FastH3) |
@tanstack/ai-cloudflare | Cloudflare Workers AI chat, embeddings, image, speech, transcription, and AI Gateway |
The adapter system is tree-shakeable by activity. Import openaiText for chat,
openaiImage for images, falVideo for video, geminiSpeech for TTS, and so
on.
| Package | What it provides |
|---|---|
@tanstack/ai-client | Headless chat, realtime, and generation clients |
@tanstack/ai-react | React hooks including useChat, useRealtimeChat, and generation hooks |
@tanstack/ai-solid | Solid hooks for chat and generations |
@tanstack/ai-vue | Vue composables for chat and generations |
@tanstack/ai-svelte | Svelte 5 factories for chat and generations |
@tanstack/ai-preact | Preact hooks for chat |
@tanstack/ai-react/ui, @tanstack/ai-solid/ui, @tanstack/ai-vue/ui, @tanstack/ai-svelte/ui | Headless UI components for chat interfaces. @tanstack/ai-react-ui, @tanstack/ai-solid-ui, and @tanstack/ai-vue-ui are deprecated. |
|
|
|
We're looking for TanStack AI partners to join our mission. Partner with us to push the boundaries of TanStack AI and build amazing things together.
LET'S CHAT...and more at TanStack.com.
FAQs
Type-safe TypeScript AI SDK for streaming chat, tool calling, agents, structured outputs, and multimodal generation.
The npm package @tanstack/ai receives a total of 159,505 weekly downloads. As such, @tanstack/ai popularity was classified as popular.
We found that @tanstack/ai demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.