ai
Version:
AI SDK by Vercel - The AI Toolkit for TypeScript and JavaScript
111 lines (83 loc) • 3.76 kB
text/mdx
---
title: Choosing a Provider
description: Learn how to configure and authenticate with AI providers in the AI SDK.
---
The AI SDK supports dozens of model providers through [first-party](/providers/ai-sdk-providers), [OpenAI-compatible](/providers/openai-compatible-providers), and [community](/providers/community-providers) packages.
```ts
import { generateText } from 'ai';
__PROVIDER_IMPORT__;
const { text } = await generateText({
model: __MODEL__,
prompt: 'What is love?',
});
```
The [Vercel AI Gateway](/providers/ai-sdk-providers/ai-gateway) is the fastest way to get started with the AI SDK. Access models from OpenAI, Anthropic, Google, and other providers. Authenticate with [OIDC](https://ai-sdk.dev/providers/ai-sdk-providers/ai-gateway#oidc-authentication-vercel-deployments) or an AI Gateway API key
<div className="max-w-[40%] mx-auto">
<ButtonLink
href="https://vercel.com/d?to=%2F%5Bteam%5D%2F%7E%2Fai%2Fapi-keys%3Futm_source%3Dgateway-models-page%26showCreateKeyModal%3Dtrue&title=Get+Started+with+Vercel+AI+Gateway"
shape="rounded"
size="large"
type="default"
prefix={<VercelIcon />}
>
Get an API Key
</ButtonLink>
</div>
Add your API key to your environment:
```env filename=".env.local"
AI_GATEWAY_API_KEY=your_api_key_here
```
The AI Gateway is the default [global provider](/docs/ai-sdk-core/provider-management
```ts
import { generateText } from 'ai';
const { text } = await generateText({
model: 'anthropic/claude-sonnet-4.5',
prompt: 'What is love?',
});
```
You can also explicitly import and use the gateway provider:
```ts
// Option 1: Import from 'ai' package (included by default)
import { gateway } from 'ai';
model: gateway('anthropic/claude-sonnet-4.5');
// Option 2: Install and import from '@ai-sdk/gateway' package
import { gateway } from '@ai-sdk/gateway';
model: gateway('anthropic/claude-sonnet-4.5');
```
You can also use [first-party](/providers/ai-sdk-providers), [OpenAI-compatible](/providers/openai-compatible-providers), and [community](/providers/community-providers) provider packages directly. Install the package and create a provider instance. For example, to use Anthropic:
<div className="my-4">
<Tabs items={['pnpm', 'npm', 'yarn', 'bun']}>
<Tab>
<Snippet text="pnpm add @ai-sdk/anthropic" dark />
</Tab>
<Tab>
<Snippet text="npm install @ai-sdk/anthropic" dark />
</Tab>
<Tab>
<Snippet text="yarn add @ai-sdk/anthropic" dark />
</Tab>
<Tab>
<Snippet text="bun add @ai-sdk/anthropic" dark />
</Tab>
</Tabs>
</div>
```ts
import { anthropic } from '@ai-sdk/anthropic';
model: anthropic('claude-sonnet-4-5');
```
You can change the default global provider so string model references use your preferred provider everywhere in your application. Learn more about [provider management](/docs/ai-sdk-core/provider-management
See [available providers](/providers/ai-sdk-providers) for setup instructions for each provider.
You can build your own provider to integrate any service with the AI SDK. The AI SDK provides a [Language Model Specification](https://github.com/vercel/ai/tree/main/packages/provider/src/language-model/v3) that ensures compatibility across providers.
```ts
import { generateText } from 'ai';
import { yourProvider } from 'your-custom-provider';
const { text } = await generateText({
model: yourProvider('your-model-id'),
prompt: 'What is love?',
});
```
See [Writing a Custom Provider](/providers/community-providers/custom-providers) for a complete guide.