Files
clawdbot/docs/providers/vercel-ai-gateway.md
2026-01-25 20:22:10 -06:00

1.1 KiB

title, summary, read_when
title summary read_when
Vercel AI Gateway Vercel AI Gateway setup (auth + model selection)
You want to use Vercel AI Gateway with Clawdbot
You need the API key env var or CLI auth choice

Vercel AI Gateway

The Vercel AI Gateway provides a unified API to access hundreds of models through a single endpoint.

  • Provider: vercel-ai-gateway
  • Auth: AI_GATEWAY_API_KEY
  • API: Anthropic Messages compatible

Quick start

  1. Set the API key (recommended: store it for the Gateway):
clawdbot onboard --auth-choice ai-gateway-api-key
  1. Set a default model:
{
  agents: {
    defaults: {
      model: { primary: "vercel-ai-gateway/anthropic/claude-opus-4.5" }
    }
  }
}

Non-interactive example

clawdbot onboard --non-interactive \
  --mode local \
  --auth-choice ai-gateway-api-key \
  --ai-gateway-api-key "$AI_GATEWAY_API_KEY"

Environment note

If the Gateway runs as a daemon (launchd/systemd), make sure AI_GATEWAY_API_KEY is available to that process (for example, in ~/.clawdbot/.env or via env.shellEnv).