fastapi>=0.104.1
uvicorn>=0.24.0  # FastAPI运行服务器
websockets>=12.0  # WebSocket支持
pydantic>=2.4.2  # 数据模型校验
python-dotenv>=1.0.0  # 读取.env文件
loguru>=0.7.2  # 日志工具（比原生logging更简洁）
requests>=2.31.0  # 同步HTTP请求（若ASR/LLM/TTS用HTTP接口）
aiohttp>=3.9.1  # 异步HTTP请求（推荐，契合FastAPI异步特性）
tenacity>=8.2.3  # 重试机制（服务调用失败自动重试）
