Spaces:
Sleeping
Sleeping
File size: 1,851 Bytes
0c591a7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | # 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
|