npm.io
4.0.4 • Published yesterday

@ai-sdk/gateway

Licence
Apache-2.0
Version
4.0.4
Deps
3
Size
559 kB
Vulns
0
Weekly
14.5M
Stars
25.2K

AI SDK - Gateway Provider

The Gateway provider for the AI SDK allows the use of a wide variety of AI models and providers.

Setup

The Gateway provider is available in the @ai-sdk/gateway module. You can install it with

npm i @ai-sdk/gateway

Skill for Coding Agents

If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:

npx skills add vercel/ai

Provider Instance

You can import the default provider instance gateway from @ai-sdk/gateway:

import { gateway } from '@ai-sdk/gateway';

Example

import { gateway } from '@ai-sdk/gateway';
import { generateText } from 'ai';

const { text } = await generateText({
  model: gateway('xai/grok-3-beta'),
  prompt:
    'Tell me about the history of the San Francisco Mission-style burrito.',
});

Documentation

Please check out the AI SDK documentation for more information.

Keywords