.env.example 454 B

123456789101112131415
  1. # Vercel AI Gateway
  2. # Automatically authenticated when deployed on Vercel
  3. # For local development, get your key from https://vercel.com/ai-gateway
  4. AI_GATEWAY_API_KEY=
  5. # AI Model Configuration
  6. # Default: anthropic/claude-haiku-4.5
  7. AI_GATEWAY_MODEL=anthropic/claude-haiku-4.5
  8. # Rate Limiting (Upstash Redis)
  9. # Optional - rate limiting is disabled when these are not set
  10. KV_REST_API_URL=
  11. KV_REST_API_TOKEN=
  12. RATE_LIMIT_PER_MINUTE=10
  13. RATE_LIMIT_PER_DAY=100