Spaces:
Sleeping
Sleeping
| """ | |
| Validator-facing server entrypoint. | |
| """ | |
| from __future__ import annotations | |
| import uvicorn | |
| from app import app | |
| def main(host: str = "0.0.0.0", port: int = 7860) -> None: | |
| uvicorn.run("server.app:app", host=host, port=port) | |
| if __name__ == "__main__": | |
| main() | |