File size: 477 Bytes
4e9b744 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # ========================
# LLM API KEYS
# ========================
OPENAI_API_KEY=your_openai_api_key
LANGTRACE_API_KEY=your_langtrace_api_key
# ========================
# REDIS
# ========================
REDIS_URL=redis://default:password@redis-host:port/0
# ========================
# BACKEND API
# ========================
# Development
BACKEND_API_URL=http://localhost:8000
# Production (uncomment for deployment)
# BACKEND_API_URL=https://api.yoursite.com
|