Mithridatium / app.py
Will Phoenix
Make Gradio app upload-only
1a8457e
raw
history blame contribute delete
292 Bytes
import os
from mithridatium.gradio_app import build_app
demo = build_app()
if __name__ == "__main__":
demo.launch(
server_name=os.environ.get("GRADIO_SERVER_NAME", "0.0.0.0"),
server_port=int(os.environ.get("GRADIO_SERVER_PORT", "7860")),
ssr_mode=False,
)