Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
move hyperbolic first
Browse files
app.py
CHANGED
@@ -27,9 +27,6 @@ from app_xai import demo as demo_grok
|
|
27 |
from app_showui import demo as demo_showui
|
28 |
|
29 |
with gr.Blocks(fill_height=True) as demo:
|
30 |
-
with gr.Tab("Groq (New Meta Llama 3.3 70B)"):
|
31 |
-
demo_groq.render()
|
32 |
-
gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
|
33 |
with gr.Tab("Hyperbolic (New Meta Llama 3.3 70B)"):
|
34 |
demo_hyperbolic.render()
|
35 |
gr.Markdown(
|
@@ -43,6 +40,9 @@ with gr.Blocks(fill_height=True) as demo:
|
|
43 |
This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.
|
44 |
"""
|
45 |
)
|
|
|
|
|
|
|
46 |
with gr.Tab("Hugging Face (New Meta Llama 3.3 70B)"):
|
47 |
demo_meta.render()
|
48 |
gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
|
|
|
27 |
from app_showui import demo as demo_showui
|
28 |
|
29 |
with gr.Blocks(fill_height=True) as demo:
|
|
|
|
|
|
|
30 |
with gr.Tab("Hyperbolic (New Meta Llama 3.3 70B)"):
|
31 |
demo_hyperbolic.render()
|
32 |
gr.Markdown(
|
|
|
40 |
This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.
|
41 |
"""
|
42 |
)
|
43 |
+
with gr.Tab("Groq (New Meta Llama 3.3 70B)"):
|
44 |
+
demo_groq.render()
|
45 |
+
gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
|
46 |
with gr.Tab("Hugging Face (New Meta Llama 3.3 70B)"):
|
47 |
demo_meta.render()
|
48 |
gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
|