KillerKing93/Transformers-InferenceServer-OpenAPI
0
1# Core server2fastapi>=0.115.03uvicorn[standard]>=0.30.04python-multipart>=0.0.65 6# Database (Marketplace)7sqlalchemy>=2.0.08alembic>=1.12.09 10# Authentication11python-jose[cryptography]>=3.3.012passlib[bcrypt]>=1.7.413 14# HF ecosystem15transformers>=4.44.016accelerate>=0.33.017bitsandbytes>=0.43.018 19# Multimedia + utils20pillow>=10.0.021numpy>=1.24.022requests>=2.31.023imageio[ffmpeg]>=2.34.024 25# OCR26rapidocr-onnxruntime>=1.3.027 28# Config29python-dotenv>=1.0.130 31# FastAPI runtime model layer32pydantic>=2.0.033 34# IMPORTANT:35# - Install PyTorch separately to match your platform/CUDA:36# CPU (Windows/Linux/macOS):37# pip install torch --index-url https://download.pytorch.org/whl/cpu38# NVIDIA CUDA (example for cu124, adjust as needed):39# pip install torch --index-url https://download.pytorch.org/whl/cu12440# Testing and tooling41pytest>=8.0.042pytest-cov>=4.1.043pyyaml>=6.0.0