# Instant SWOT Agent - Environment Configuration # Copy this file to .env and fill in your API keys # ======================================== # LLM Providers (at least one required) # ======================================== # Primary - Groq (fast, recommended for demos) GROQ_API_KEY= GROQ_MODEL=llama-3.1-8b-instant # Fallback 1 - Google Gemini GEMINI_API_KEY= GEMINI_MODEL=gemini-2.0-flash-exp # Fallback 2 - OpenRouter (aggregator, many models) OPENROUTER_API_KEY= OPENROUTER_MODEL=google/gemini-2.0-flash-exp:free # ======================================== # Search API (required for live company data) # ======================================== TAVILY_API_KEY= # ======================================== # Volatility MCP Server (optional) # ======================================== # FRED - Federal Reserve Economic Data (for authoritative VIX) # Get free key: https://fred.stlouisfed.org/docs/api/api_key.html FRED_API_KEY= # Alpha Vantage (for implied volatility from options) # Get free key: https://www.alphavantage.co/support/#api-key ALPHA_VANTAGE_API_KEY= # ======================================== # Sentiment MCP Server (optional) # ======================================== # Finnhub - News sentiment data # Get free key: https://finnhub.io/register FINNHUB_API_KEY= # ======================================== # A2A Protocol Configuration (optional) # ======================================== # Enable A2A mode (set to true to use Researcher A2A Server) USE_A2A_RESEARCHER=false # Researcher A2A Server URL A2A_RESEARCHER_URL=https://vn6295337-researcher-a2a-agent.hf.space # A2A timeout in seconds A2A_TIMEOUT=60 # ======================================== # Tracing (optional, for debugging) # ======================================== LANGCHAIN_API_KEY= LANGCHAIN_TRACING_V2=false LANGCHAIN_PROJECT=ai-strategy-copilot