File size: 313 Bytes
9e76be1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# SEC Configuration
SEC_EMAIL[email protected]
# API Keys
NEWS_API_KEY=your_newsapi_key_here
ALPHA_VANTAGE_KEY=your_alphavantage_key_here # Optional, for future use
# Model Configuration
DEVICE=cuda # or cpu
BATCH_SIZE=16
# API Server
API_HOST=0.0.0.0
API_PORT=8000
GRADIO_SHARE=true
# Logging
LOG_LEVEL=INFO
|