af65c6d 2ce88b8 af65c6d 2ce88b8 af65c6d
1
2
3
4
5
6
7
8
9
10
11
""" HuggingFace Spaces Entry Point Imports and runs the FastAPI app from server.main """ from server.main import app if __name__ == "__main__": import uvicorn uvicorn.run(app, host="0.0.0.0", port=7860)