Spaces:
Paused
Paused
File size: 659 Bytes
c167eb9 0ac3a1d c167eb9 0ac3a1d c167eb9 83bb059 c167eb9 |
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 |
# FastAPI and ASGI server fastapi==0.95.2 uvicorn==0.22.0 # PyTorch for model inference (CPU or GPU) torch==2.0.1 # Hugging Face Transformers for model loading and inference transformers sentencepiece # Pydantic for data validation and schema definitions pydantic==1.10.7 numpy<2 # Logging and utilities loguru==0.7.0 # Optional: For enhanced logging # File system utilities (if using cloud storage in the future) fsspec==2023.6.0 # Optional: For GCS or other cloud storage gcsfs==2023.6.0 # Optional: For Google Cloud Storage # Environment variable management python-dotenv==1.0.0 # Optional: For loading environment variables from a .env file |