RAG_BACKEND / start_server.py
AhmedCodesAtNight's picture
Initial Commit
ee56f8e
raw
history blame contribute delete
261 Bytes
#!/usr/bin/env python3
"""
Start script for Hugging Face Spaces
"""
import os
import uvicorn
from api import app
if __name__ == "__main__":
uvicorn.run(
app,
host=os.getenv("HOST", "0.0.0.0"),
port=int(os.getenv("PORT", 7860))
)