omkarkudalkar23/citationEdge
2
1# LLM2GROQ_API_KEY=gsk_...3LLM_MODEL=llama-3.3-70b-versatile4LLM_MAX_TOKENS=40965LLM_TEMPERATURE=0.36 7# Neo4j (Knowledge Graph)8# NOTE: the variable is NEO4J_USER (not NEO4J_USERNAME) - the app reads9# NEO4J_USER from backend/config.py. NEO4J_USERNAME is silently ignored.10NEO4J_URI=bolt://localhost:768711NEO4J_USER=neo4j12NEO4J_PASSWORD=changeme13NEO4J_DATABASE=citationedge14 15# MongoDB (Job State)16MONGODB_URI=mongodb://localhost:2701717MONGODB_DB_NAME=citationedge_agentic18 19# Semantic Scholar20SEMANTIC_SCHOLAR_API_KEY=21 22# App23MAX_FILE_SIZE_MB=5024MAX_CONCURRENT_JOBS=525AGENT_TIMEOUT_SECONDS=12026LOG_LEVEL=INFO27 28# SMTP Email (report delivery after pipeline completes)29# Use Gmail + App Password: https://myaccount.google.com/apppasswords30SMTP_HOST=smtp.gmail.com31SMTP_PORT=58732SMTP_USER=your-sender@gmail.com33SMTP_PASSWORD=xxxx-xxxx-xxxx-xxxx34SMTP_FROM_NAME=CitationEdge35 