Spaces:
Runtime error
Runtime error
move showUI to top
Browse files
app.py
CHANGED
@@ -22,6 +22,8 @@ from app_xai import demo as demo_grok
|
|
22 |
from app_showui import demo as demo_showui
|
23 |
|
24 |
with gr.Blocks(fill_height=True) as demo:
|
|
|
|
|
25 |
with gr.Tab("PlayAI"):
|
26 |
demo_playai.render()
|
27 |
with gr.Tab("Grok"):
|
@@ -72,8 +74,6 @@ with gr.Blocks(fill_height=True) as demo:
|
|
72 |
demo_nvidia.render()
|
73 |
with gr.Tab("Flux"):
|
74 |
demo_flux.render()
|
75 |
-
with gr.Tab("ShowUI"):
|
76 |
-
demo_showui.render()
|
77 |
|
78 |
|
79 |
if __name__ == "__main__":
|
|
|
22 |
from app_showui import demo as demo_showui
|
23 |
|
24 |
with gr.Blocks(fill_height=True) as demo:
|
25 |
+
with gr.Tab("ShowUI"):
|
26 |
+
demo_showui.render()
|
27 |
with gr.Tab("PlayAI"):
|
28 |
demo_playai.render()
|
29 |
with gr.Tab("Grok"):
|
|
|
74 |
demo_nvidia.render()
|
75 |
with gr.Tab("Flux"):
|
76 |
demo_flux.render()
|
|
|
|
|
77 |
|
78 |
|
79 |
if __name__ == "__main__":
|