whspr / app.py
Hanz Pillerva
remove gradio, run uvicorn directly on port 7860
6be828e
raw
history blame contribute delete
126 Bytes
import uvicorn
from main import app # noqa: F401
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=7860)