-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
63 lines (51 loc) · 1.92 KB
/
.env.example
File metadata and controls
63 lines (51 loc) · 1.92 KB
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
# ===========================================
# LLM Configuration (choose ONE option)
# ===========================================
# Option 1: Groq (FREE - RECOMMENDED for zero-cost deployment)
# Get your free API key at: https://console.groq.com
GROQ_API_KEY=gsk_...
# Option 2: Azure OpenAI (production with budget)
# AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
# AZURE_OPENAI_API_KEY=your-azure-key
# AZURE_OPENAI_DEPLOYMENT=gpt-4o-mini
# Option 3: OpenAI Direct (paid)
# OPENAI_API_KEY=sk-...
# ===========================================
# Observability (Optional but recommended)
# ===========================================
LANGCHAIN_TRACING_V2=true
LANGCHAIN_API_KEY=ls-...
LANGCHAIN_PROJECT=equity-research-agent
# ===========================================
# Infrastructure
# ===========================================
# Qdrant Vector DB
QDRANT_URL=http://localhost:6333
QDRANT_API_KEY=
# ===========================================
# External APIs (Optional)
# ===========================================
# SEC EDGAR (required for 10-K analysis)
SEC_USER_AGENT=YourAppName your-email@example.com
# Companies House API (UK company data)
COMPANIES_HOUSE_API_KEY=
# ===========================================
# App Settings
# ===========================================
APP_ENV=development
LOG_LEVEL=INFO
API_HOST=0.0.0.0
API_PORT=8000
# ===========================================
# Telegram Bot (Optional)
# ===========================================
# Create a bot with @BotFather on Telegram
TELEGRAM_BOT_TOKEN=123456789:ABCdefGHIjklMNOpqrsTUVwxyz
# API URL for the bot to call (default: http://localhost:8000)
API_BASE_URL=http://localhost:8000
# ===========================================
# API Security (Production)
# ===========================================
# Generate with: openssl rand -hex 32
# If set, all /analyze, /quote, /compare endpoints require X-API-Key header
# API_SECRET_KEY=your-secret-key-here