Files
voicebox/backend/requirements.txt
T
Jamie Pine 89f3127c37 Implement avatar upload and management for voice profiles
- Added functionality to upload, delete, and retrieve avatar images for voice profiles.
- Introduced new API endpoints for avatar management, including upload and delete operations.
- Enhanced profile forms and components to support avatar image handling, including previews and error handling.
- Updated database schema to include avatar_path for profiles and added necessary migrations.
- Implemented image validation and processing utilities to ensure proper avatar uploads.
2026-01-29 19:28:42 -08:00

25 lines
352 B
Plaintext

# FastAPI and server
fastapi>=0.109.0
uvicorn[standard]>=0.27.0
pydantic>=2.5.0
# Database
sqlalchemy>=2.0.0
alembic>=1.13.0
# ML models
torch>=2.1.0
transformers>=4.36.0
accelerate>=0.26.0
huggingface_hub>=0.20.0
qwen-tts>=0.0.5
# Audio processing
librosa>=0.10.0
soundfile>=0.12.0
numpy>=1.24.0
# Utilities
python-multipart>=0.0.6
Pillow>=10.0.0