Spaces:
Sleeping
Sleeping
File size: 682 Bytes
91d209c 66e744c | 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 30 31 32 33 34 35 36 37 38 39 | # FastAPI Backend Requirements # Web Framework fastapi==0.115.0 uvicorn[standard]==0.32.0 python-multipart==0.0.17 # HTTP Client httpx==0.27.2 # Image Processing Pillow==11.0.0 # Environment Variables python-dotenv==1.0.1 # Data Validation pydantic==2.10.0 # AI APIs openai==1.54.0 replicate # Video Processing (optional but recommended) # Requires ffmpeg installed # Note: Whisper has issues with Python 3.13 # Install manually after: pip install git+https://github.com/openai/whisper.git moviepy==1.0.3 # Authentication python-jose[cryptography]==3.3.0 passlib[bcrypt]==1.7.4 python-multipart==0.0.17 # Development # pytest==8.3.0 # pytest-asyncio==0.24.0 openai-whisper |