From c1c04441e917db637dfe71b1575e4b21721fadd3 Mon Sep 17 00:00:00 2001 From: ruv Date: Sat, 30 May 2026 17:10:17 -0400 Subject: [PATCH] fix(aether-arena): Space launch on 0.0.0.0:7860 --- aether-arena/space/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aether-arena/space/app.py b/aether-arena/space/app.py index bab8c9f8..91324582 100644 --- a/aether-arena/space/app.py +++ b/aether-arena/space/app.py @@ -126,4 +126,4 @@ with gr.Blocks(title="AetherArena — Spatial-Intelligence Benchmark") as demo: gr.Markdown(ABOUT) if __name__ == "__main__": - demo.launch() + demo.launch(server_name="0.0.0.0", server_port=7860)