Health-Insurance-Copilot / .env.example
Nagendravarma
Enhance dev console and frontend UI with missing nodes and styling improvements
1b0bde0
Raw
History Blame Contribute Delete
1.84 kB
# Health Insurance AI Copilot - Environment Variables
# Copy this file to .env and fill in your keys.
# NEVER commit .env to git.
# ── Required ──────────────────────────────────────────────────────────────────
# OpenAI API key (used for LLM, intent classification, and Mem0 fact extraction)
# Get yours at: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# ── Optional ──────────────────────────────────────────────────────────────────
# Google Gemini (if you switch synthesis LLM to Gemini)
# GOOGLE_API_KEY=your_google_api_key_here
# ── LangSmith Observability (Recommended) ─────────────────────────────────────
# Sign up free at https://smith.langchain.com β€” 5,000 traces/month free
# Get your API key: smith.langchain.com β†’ Settings β†’ API Keys
#
# Once set, every LangGraph node, LLM call, and retrieval step is automatically
# captured as a visual trace in the LangSmith dashboard β€” no other code changes needed.
LANGCHAIN_TRACING_V2=true
LANGCHAIN_API_KEY=your_langsmith_api_key_here
LANGCHAIN_PROJECT=health-insurance-rag
LANGCHAIN_ENDPOINT=https://api.smith.langchain.com
# Disable Mem0 in-memory agent memory (set to false to turn off)
# MEM0_ENABLED=true
# ── Hugging Face Spaces (set these as HF Secrets, not here) ───────────────────
# In your HF Space: Settings β†’ Variables and Secrets β†’ New Secret
# OPENAI_API_KEY β†’ your key
# GOOGLE_API_KEY β†’ your key (if using Gemini)