Spaces:
Sleeping
Sleeping
File size: 313 Bytes
4f48a4e | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # Database Paths
DB_FILE=evidence.db
FAISS_FILE=faiss.index
# API Keys - Replace with your own keys
NEWS_API_KEY=your_newsapi_key_here
# Flask - Generate with: python -c "import secrets; print(secrets.token_hex(32))"
FLASK_SECRET_KEY=your_long_random_secret_key_here
# Bot Identity
USER_AGENT=FactCheckBot/1.0
|