Nagendravarma
Enhance dev console and frontend UI with missing nodes and styling improvements
1b0bde0 | # 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) | |