Spaces:
Sleeping
Sleeping
File size: 474 Bytes
68e8f6c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# requirements.txt # FastAPI 和 Web 服务 fastapi==0.104.1 uvicorn[standard]==0.24.0 pydantic==2.5.0 python-multipart==0.0.6 # AI 模型和机器学习 torch==2.1.0 transformers==4.54.1 accelerate==0.25.0 safetensors==0.4.1 # 图像处理 Pillow==10.1.0 requests==2.31.0 # 音频处理(为将来扩展准备) # librosa==0.10.1 # soundfile==0.12.1 # 工具库 numpy==1.24.3 typing-extensions==4.8.0 # 测试框架 pytest==7.4.3 pytest-asyncio==0.21.1 httpx==0.25.2 |