18 lines
633 B
Plaintext
18 lines
633 B
Plaintext
# TradingAgents Environment Configuration
|
|
# Copy this file to .env and fill in your actual values
|
|
# NEVER commit .env to version control!
|
|
|
|
# Required API Keys
|
|
OPENAI_API_KEY=openai_api_key_placeholder
|
|
ALPHA_VANTAGE_API_KEY=alpha_vantage_api_key_placeholder
|
|
|
|
# Optional: Custom data and results directories
|
|
# If not set, defaults to ./data and ./results
|
|
# TRADINGAGENTS_DATA_DIR=/path/to/your/data
|
|
# TRADINGAGENTS_RESULTS_DIR=/path/to/your/results
|
|
|
|
# Optional: Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
|
|
# LOG_LEVEL=INFO
|
|
|
|
# Optional: Custom backend URL for OpenAI-compatible APIs
|
|
# OPENAI_BASE_URL=https://api.openai.com/v1 |