liveplex commited on
Commit
bdae2f4
·
verified ·
1 Parent(s): 8be1f1f

fix: gradio 5.12 + python 3.11 + server_name fix

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -240,7 +240,7 @@ CSS = """
240
  footer { display: none !important; }
241
  """
242
 
243
- with gr.Blocks(css=CSS, title="RoboGate VLA Leaderboard", theme=gr.themes.Base()) as demo:
244
  gr.Markdown(HEADER_MD)
245
 
246
  with gr.Tabs():
@@ -267,4 +267,4 @@ with gr.Blocks(css=CSS, title="RoboGate VLA Leaderboard", theme=gr.themes.Base()
267
  gr.Markdown(CITATION_MD)
268
 
269
  if __name__ == "__main__":
270
- demo.launch()
 
240
  footer { display: none !important; }
241
  """
242
 
243
+ with gr.Blocks(css=CSS, title="RoboGate VLA Leaderboard") as demo:
244
  gr.Markdown(HEADER_MD)
245
 
246
  with gr.Tabs():
 
267
  gr.Markdown(CITATION_MD)
268
 
269
  if __name__ == "__main__":
270
+ demo.launch(server_name="0.0.0.0")