Spaces:
Sleeping
Sleeping
| import uvicorn | |
| from api.web_server import app | |
| def run(): | |
| """ | |
| Start the FastAPI web server using Uvicorn. | |
| """ | |
| uvicorn.run(app, host="0.0.0.0", port=7860) | |