| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- # FastAPI核心
- fastapi==0.104.1
- uvicorn[standard]==0.24.0
- gunicorn==21.2.0
- python-multipart==0.0.6
- pydantic==2.5.0
- pydantic-settings==2.1.0
- # 数据库
- sqlalchemy==2.0.23
- alembic==1.13.0
- asyncpg==0.29.0
- psycopg2-binary==2.9.9
- # Redis
- redis==5.0.1
- hiredis==2.2.3
- # Celery任务队列
- celery==5.3.4
- # 认证与安全
- python-jose[cryptography]==3.3.0
- passlib[bcrypt]==1.7.4
- python-dotenv==1.0.0
- cryptography==41.0.7
- # AI平台SDK
- openai==1.3.7
- anthropic==0.7.7
- dashscope==1.14.1 # 阿里通义千问
- erniebot==0.2.1 # 百度文心一言
- # 工具库
- httpx==0.25.2
- python-dateutil==2.8.2
- pytz==2023.3
- # 推送服务
- firebase-admin==6.3.0
- # 监控日志
- loguru==0.7.2
- prometheus-client==0.19.0
- # 测试
- pytest==7.4.3
- pytest-asyncio==0.21.1
|