Pinned
- Next.js AI Chatbot now supports artifacts: • Dynamic code execution • Image generation • Spreadsheets • ... and more! Open-source and free to get started.
00:00 - AI SDK 5 Introducing type-safe chat, agentic loop controls, data parts, speech generation and transcription, Zod 4 support, global provider, and raw request access.
- Introducing Chat SDK: a production-ready chatbot template, developed from everything we've learned building @v0. Ships with: • Custom artifacts • In-browser code execution • Authentication, persistence, multi-modal • Documentation to extend & make it your own
- AI Elements are new beautifully designed React components for the AI SDK. Open source and built on shadcn/ui, they're easy to integrate and fully customizable.
- Introducing the Cookbook 📕 An open-source collection of recipes and guides for building with the AI SDK. (link is in the reply)
- Use Claude Skills with the AI SDK.
01:09Claude can now use Skills. Skills are packaged instructions that teach Claude your way of working.









![// @ai-sdk/google@2.0.11 - Gemini 2.5 Flash Image Support import { google } from "@ai-sdk/google"; import { generateText } from "ai"; const { files } = await generateText({ model: google("gemini-2.5-flash-image-preview"), providerOptions: { google: { responseModalities: ["TEXT", "IMAGE"] }, }, prompt: "Generate an image of a nano banana.", }); console.log(files);](https://pbs.twimg.com/media/GzTM--Ua4AAuC8t.jpg)





![// AI SDK Mistral Provider @ai-sdk/mistral v.1.1.15 - OCR Support import { generateText } from "ai"; import { mistral } from "@ai-sdk/mistral"; const result = await generateText({ model: mistral("mistral-small-latest"), messages: [ { role: "user", content: [ { type: "text", text: "What is an embedding model according to this document?", }, { type: "file", data: new URL("https://link.com/ai.pdf"), mimeType: "application/pdf", }, ], }, ], });](https://pbs.twimg.com/media/Glb8awsaoAABpZf.jpg)
