yet another removal of unnecessary environment variables

This commit is contained in:
cocktailpeanut 2024-05-09 01:33:20 -04:00
parent 425b9d6166
commit 3c11157a49
1 changed files with 1 additions and 3 deletions

View File

@ -72,9 +72,7 @@ def create_web_demo() -> gr.Blocks:
def run_web_ui() -> None:
server_name = os.environ.get("GRADIO_SERVER_NAME", "0.0.0.0")
server_port = int(os.environ.get("GRADIO_SERVER_PORT", "7860"))
gradio_share = bool(int(os.environ.get("GRADIO_SHARE", "0")))
create_ui().queue().launch(share=gradio_share, server_name=server_name, server_port=server_port)
create_ui().queue().launch(server_name=server_name)
def run_web_demo() -> None: