| # Example environment variables for the Visual Verification Service | |
| # Copy this file to `.env` locally and fill in real values. Do NOT commit your real `.env` to the repository. | |
| # API keys | |
| SERP_API_KEY= | |
| GOOGLE_API_KEY= | |
| GOOGLE_FACT_CHECK_CX= | |
| GEMINI_API_KEY= | |
| GEMINI_MODEL=gemini-1.5-flash | |
| GEMINI_TEMPERATURE=0.1 | |
| GEMINI_TOP_P=0.8 | |
| GEMINI_MAX_TOKENS=1000000 | |
| # MongoDB (example): mongodb://user:pass@host:port/db | |
| MONGODB_URI= | |
| # Upstash Redis (for caching) | |
| UPSTASH_REDIS_URL=https://your-redis-endpoint.upstash.io | |
| UPSTASH_REDIS_TOKEN=your-upstash-token | |
| # Cloudinary (if you use it for uploads) | |
| CLOUDINARY_CLOUD_NAME= | |
| CLOUDINARY_API_KEY= | |
| CLOUDINARY_API_SECRET= | |
| CLOUDINARY_UPLOAD_PRESET= | |
| # Service config | |
| SERVICE_HOST=0.0.0.0 | |
| SERVICE_PORT=7860 | |
| DEBUG=false | |
| # Optional: point to yt-dlp binary if you have a system-specific path | |
| YTDLP_BIN=yt-dlp | |