Spaces:
Runtime error
Runtime error
updates
Browse files- app.py +6 -6
- app_playai.py +4 -1
app.py
CHANGED
|
@@ -22,12 +22,6 @@ 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("ShowUI"):
|
| 26 |
-
demo_showui.render()
|
| 27 |
-
with gr.Tab("PlayAI"):
|
| 28 |
-
demo_playai.render()
|
| 29 |
-
with gr.Tab("Grok"):
|
| 30 |
-
demo_grok.render()
|
| 31 |
with gr.Tab("Hyperbolic"):
|
| 32 |
demo_hyperbolic.render()
|
| 33 |
gr.Markdown(
|
|
@@ -39,6 +33,12 @@ with gr.Blocks(fill_height=True) as demo:
|
|
| 39 |
**Note:** This model is supported by Hyperbolic. Build your AI apps at [Hyperbolic](https://app.hyperbolic.xyz/).
|
| 40 |
"""
|
| 41 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
with gr.Tab("Gemini"):
|
| 43 |
demo_gemini.render()
|
| 44 |
with gr.Tab("ChatGPT"):
|
|
|
|
| 22 |
from app_showui import demo as demo_showui
|
| 23 |
|
| 24 |
with gr.Blocks(fill_height=True) as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
with gr.Tab("Hyperbolic"):
|
| 26 |
demo_hyperbolic.render()
|
| 27 |
gr.Markdown(
|
|
|
|
| 33 |
**Note:** This model is supported by Hyperbolic. Build your AI apps at [Hyperbolic](https://app.hyperbolic.xyz/).
|
| 34 |
"""
|
| 35 |
)
|
| 36 |
+
with gr.Tab("ShowUI"):
|
| 37 |
+
demo_showui.render()
|
| 38 |
+
with gr.Tab("PlayAI"):
|
| 39 |
+
demo_playai.render()
|
| 40 |
+
with gr.Tab("Grok"):
|
| 41 |
+
demo_grok.render()
|
| 42 |
with gr.Tab("Gemini"):
|
| 43 |
demo_gemini.render()
|
| 44 |
with gr.Tab("ChatGPT"):
|
app_playai.py
CHANGED
|
@@ -4,4 +4,7 @@ import playai_gradio
|
|
| 4 |
demo =gr.load(
|
| 5 |
name='PlayDialog',
|
| 6 |
src=playai_gradio.registry,
|
| 7 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
demo =gr.load(
|
| 5 |
name='PlayDialog',
|
| 6 |
src=playai_gradio.registry,
|
| 7 |
+
)
|
| 8 |
+
|
| 9 |
+
for fn in demo.fns.values():
|
| 10 |
+
fn.api_name = False
|