> ## 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

[Vercel AI Gateway](https://vercel.com/ai-gateway)는 단일 엔드포인트를 통해 수백 개의 모델에 접근할 수 있는 통합 API 를 제공합니다.

* 제공자: `vercel-ai-gateway`
* 인증: `AI_GATEWAY_API_KEY`
* API: Anthropic Messages 호환

## 빠른 시작

1. API 키를 설정합니다 (권장: Gateway 에 저장):

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

2. 기본 모델을 설정합니다:

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

## 비대화형 예제

```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"
```

## 환경 참고 사항

Gateway 가 데몬 (launchd/systemd) 으로 실행되는 경우, `AI_GATEWAY_API_KEY` 가
해당 프로세스에서 사용 가능해야 합니다 (예: `~/.openclaw/.env` 에서 또는
`env.shellEnv` 를 통해).
