jccp_a/vuepress/node_modules/@ai-sdk/gateway
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08:00
..
dist 1 2025-11-12 17:57:30 +08:00
CHANGELOG.md 1 2025-11-12 17:57:30 +08:00
LICENSE 1 2025-11-12 17:57:30 +08:00
package.json 1 2025-11-12 17:57:30 +08:00
README.md 1 2025-11-12 17:57:30 +08:00

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

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.