gcli2api / app.py
bibibi12345's picture
hf test
74effde
raw
history blame
368 Bytes
"""
Hugging Face Spaces entry point.
This file is required for Hugging Face Spaces deployment.
"""
from src.main import app
# Hugging Face Spaces will automatically run this app
if __name__ == "__main__":
import uvicorn
import os
host = os.getenv("HOST", "0.0.0.0")
port = int(os.getenv("PORT", "7860"))
uvicorn.run(app, host=host, port=port)