stock-ai-agent/.env.example
2026-02-03 10:08:15 +08:00

21 lines
410 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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