CoolFace
Apppublic

gouravnayak97/cloud_resource_allocation

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
app.py10 linesDownload Raw Back to server
1import uvicorn2from app.main import app3 4def main():5    """Entry point for the OpenEnv multi-mode deployment."""6    uvicorn.run(app, host="0.0.0.0", port=7860)7 8if __name__ == "__main__":9    main()10