mirror of
https://github.com/vercel-labs/json-render.git
synced 2026-09-14 13:41:32 +08:00
4bb1151b6c
* add examples * live demos * og's * r3f mobile * rate limits * fix lint
17 lines
509 B
Bash
17 lines
509 B
Bash
# Vercel AI Gateway
|
|
# Automatically authenticated when deployed on Vercel
|
|
# For local development, get your key from https://vercel.com/ai-gateway
|
|
AI_GATEWAY_API_KEY=
|
|
|
|
# AI Model Configuration
|
|
# Override the default model used for email generation
|
|
# Default: anthropic/claude-haiku-4.5
|
|
AI_GATEWAY_MODEL=anthropic/claude-haiku-4.5
|
|
|
|
# Rate Limiting (Upstash Redis)
|
|
# Optional - rate limiting is disabled when these are not set
|
|
KV_REST_API_URL=
|
|
KV_REST_API_TOKEN=
|
|
RATE_LIMIT_PER_MINUTE=10
|
|
RATE_LIMIT_PER_DAY=100
|