.env.example 503 B

1234567891011121314151617
  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-sonnet-4-6
  7. AI_GATEWAY_MODEL=anthropic/claude-sonnet-4-6
  8. # ElevenLabs Text-to-Speech (optional, for NPC dialogue)
  9. ELEVENLABS_API_KEY=
  10. # Upstash Redis for rate limiting (optional, no-op if not set)
  11. KV_REST_API_URL=
  12. KV_REST_API_TOKEN=
  13. RATE_LIMIT_PER_MINUTE=10
  14. RATE_LIMIT_PER_DAY=100