omm7's picture
Upload folder using huggingface_hub
5c3e08d verified
raw
history blame contribute delete
273 Bytes
"""
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()