-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (19 loc) · 977 Bytes
/
Copy path.env.example
File metadata and controls
24 lines (19 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copy this file to ".env" and fill in your real values.
# The .env file is gitignored and will never be committed.
# --- Required -------------------------------------------------------------
# OpenAI API key. A Vocareum-issued key (starts with "voc-") also works and is
# routed through the Vocareum endpoint automatically.
OPENAI_API_KEY=your_openai_api_key_here
# --- Optional: alternative AI provider ------------------------------------
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# --- Optional: extra market / news data providers -------------------------
ALPHA_VANTAGE_API_KEY=your_alpha_vantage_key_here
QUANDL_API_KEY=your_quandl_key_here
TAVILY_API_KEY=your_tavily_key_here
# --- Optional: database (app falls back to CSV storage if unset) ----------
DATABASE_URL=postgresql://localhost/trading_db
# --- Optional: application settings ---------------------------------------
DEFAULT_SYMBOL=AAPL
CACHE_TIMEOUT_HOURS=12
DEFAULT_AI_MODEL=gpt-4o
USE_OPENAI=True