CoolFace
Apppublic

Akshanshsensei/PDF-Constrained-Conversational-Agent

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
.env.example15 linesDownload Raw Back to root
1# .env.example — Copy this to .env and fill in your values2# NEVER commit your real .env file to git (it's already in .gitignore)3 4# ── REQUIRED ──────────────────────────────────────────────────────────────────5 6# Google Gemini API key7# Get yours at: https://aistudio.google.com/app/apikey8GEMINI_API_KEY=your-gemini-api-key-here9 10# Redis connection URL11# Local dev (after: docker run -d -p 6379:6379 redis):12REDIS_URL=redis://localhost:637913# Redis Cloud free tier example:14# REDIS_URL=redis://default:yourpassword@redis-12345.c1.us-east-1-2.ec2.cloud.redislabs.com:1234515