Vx2-3y
Integrate Supabase: store job input, parameters, model, and result in inference_results table
fcd441c
# FastAPI web framework | |
fastapi | |
# ASGI server for running FastAPI | |
uvicorn[standard] | |
# Supabase Python client | |
supabase==2.3.5 | |
# For loading environment variables from .env | |
python-dotenv | |
# Data validation and settings management | |
pydantic | |
# For loading and running LLMs from Hugging Face | |
transformers==4.40.2 | |
# For model hub integration | |
huggingface_hub==0.23.1 | |
# For GPU inference (update if needed for CUDA compatibility) | |
torch==2.2.2 | |
# Pin numpy to <2 to avoid incompatibility with modules compiled against numpy 1.x | |
numpy<2 | |
# For Redis job queue integration | |
redis==5.0.3 |