Spaces:
Running
Running
| # ============================================ | |
| # Sentinel AI — API Keys Configuration | |
| # ============================================ | |
| # Fill in your API keys below and rename this file to .env. | |
| # Google Gemini API Key (required) | |
| # Get yours at: https://aistudio.google.com/apikey | |
| GOOGLE_API_KEY=your_gemini_api_key_here | |
| # Optional: Groq API Key (Model Fallback) | |
| # Provides Llama-3 backup if Gemini hits rate limits | |
| # Get yours at: https://console.groq.com/keys | |
| GROQ_API_KEY=your_groq_api_key_here | |
| # Alpha Vantage API Key (required for live market data) | |
| # Get yours at: https://www.alphavantage.co/support/#api-key | |
| ALPHA_VANTAGE_API_KEY=your_alpha_vantage_api_key_here | |
| # Tavily API Key (required for web/news search) | |
| # Get yours at: https://tavily.com/ | |
| TAVILY_API_KEY=your_tavily_api_key_here | |
| # ============================================ | |
| # Optional: Email Delivery (Weekly Digest) | |
| # ============================================ | |
| SMTP_USER=your_email@gmail.com | |
| SMTP_PASSWORD=your_app_specific_password | |
| SMTP_HOST=smtp.gmail.com | |
| SMTP_PORT=587 | |
| # ============================================ | |
| # Optional: FRED API (Macro Impact Analyzer) | |
| # ============================================ | |
| # Get yours at: https://fred.stlouisfed.org/docs/api/api_key.html | |
| # FRED_API_KEY=your_fred_api_key_here | |