File size: 292 Bytes
1a8457e
 
 
9261449
 
 
 
1a8457e
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
    )