Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions docs/getting-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,16 @@ export function Chat() {

## Environment Variables

To connect to the OpenAI API, you'll need to set your `OPENAI_API_KEY` in your environment variables. Create a `.env.local` file (or `.env` depending on your setup):

To connect to AI providers, set your API keys in your environment variables. Create a `.env.local` file (or `.env` depending on your setup):
```bash
OPENAI_API_KEY=your-api-key-here
# OpenAI
OPENAI_API_KEY=your-openai-api-key

# Anthropic
ANTHROPIC_API_KEY=your-anthropic-api-key

# Google Gemini
GEMINI_API_KEY=your-gemini-api-key
```

## That's It!
Expand Down