What problem does it solve? Managing separate API keys, accounts, and billing for multiple LLM providers (OpenAI, Anthropic, Google, Meta) adds friction to building AI features. This Skill configures the Neon AI Gateway so one Neon credential reaches the entire model catalog, with requests scoped to your database branch. ## Core Features & Use Cases - Unified Model Access: Call frontier and open-source models (Claude, GPT, Gemini, and more) through a single OpenAI-compatible endpoint by changing only the model field. - SDK Compatibility: Works with the OpenAI SDK, Anthropic SDK, google-genai, Vercel AI SDK, and Mastra by changing only the base URL. - Branch-Scoped AI: Each Neon branch gets its own gateway host, so preview and CI environments have isolated AI requests matching their data isolation. - Use Case: You are adding a chat feature to your Next.js app backed by Neon. Enable aiGateway in neon.ts, run neon deploy, and stream responses from claude-sonnet-4-6 or gpt-5-mini using the Vercel AI SDK with zero extra provider accounts. ## Quick Start Enable the Neon AI Gateway in my neon.ts config and show me how to call Claude through it using the Vercel AI SDK.