d179ac1 f30c298 d179ac1 f30c298 d179ac1
1
2
3
4
5
6
7
8
9
10
""" Simple entry point for Hugging Face Spaces. This file redirects to the FastAPI app in the app directory. """ from app.main import app if __name__ == "__main__": import uvicorn uvicorn.run("app:app", host="0.0.0.0", port=7860)