rag-bajaj / main.py
quantumbit's picture
Upload 41 files
5ff6b14 verified
raw
history blame contribute delete
385 Bytes
#!/usr/bin/env python3
"""
Main entry point for HuggingFace Spaces deployment.
This is the standard entry point that HuggingFace expects.
"""
import uvicorn
from api.api import app
if __name__ == "__main__":
# HuggingFace Spaces runs on port 7860 by default
uvicorn.run(
app,
host="0.0.0.0",
port=7860,
log_level="info"
)