Gurnoor Singh
Initial deploy
2ddc24f
raw
history blame contribute delete
266 Bytes
# Hugging Face Spaces entry point
# This file is required for HF Spaces deployment
import sys
sys.path.insert(0, '.')
from app.main import app
# For Hugging Face Spaces
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)