> ## Documentation Index
> Fetch the complete documentation index at: https://openclaw.veiseule.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Vercel AI Gateway

# Vercel AI Gateway

De [Vercel AI Gateway](https://vercel.com/ai-gateway) biedt een uniforme API om toegang te krijgen tot honderden modellen via één enkel eindpunt.

* Aanbieder: `vercel-ai-gateway`
* Authenticatie: `AI_GATEWAY_API_KEY`
* API: Anthropic Messages-compatibel

## Snelle start

1. Stel de API-sleutel in (aanbevolen: sla deze op voor de Gateway):

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw onboard --auth-choice ai-gateway-api-key
```

2. Stel een standaardmodel in:

```json5 theme={"theme":{"light":"min-light","dark":"min-dark"}}
{
  agents: {
    defaults: {
      model: { primary: "vercel-ai-gateway/anthropic/claude-opus-4.6" },
    },
  },
}
```

## Niet-interactief voorbeeld

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw onboard --non-interactive \
  --mode local \
  --auth-choice ai-gateway-api-key \
  --ai-gateway-api-key "$AI_GATEWAY_API_KEY"
```

## Omgevingsnotitie

Als de Gateway als daemon draait (launchd/systemd), zorg er dan voor dat `AI_GATEWAY_API_KEY`
beschikbaar is voor dat proces (bijvoorbeeld in `~/.openclaw/.env` of via
`env.shellEnv`).
