import uvicorn from .api import app def run(host: str = "0.0.0.0", port: int = 8000): uvicorn.run(app, host=host, port=port)