21 lines
410 B
Plaintext
21 lines
410 B
Plaintext
# Tushare API
|
||
TUSHARE_TOKEN=your_tushare_token_here
|
||
|
||
# 智谱AI GLM-4 API
|
||
ZHIPUAI_API_KEY=your_zhipuai_key_here
|
||
|
||
# Database (使用SQLite,无需额外配置)
|
||
DATABASE_URL=sqlite:///./stock_agent.db
|
||
|
||
# API Settings
|
||
API_HOST=0.0.0.0
|
||
API_PORT=8000
|
||
DEBUG=True
|
||
|
||
# Security
|
||
SECRET_KEY=your_secret_key_here_change_in_production
|
||
RATE_LIMIT=100/minute
|
||
|
||
# CORS
|
||
CORS_ORIGINS=http://localhost:8000,http://127.0.0.1:8000
|