Spaces:
Runtime error
Runtime error
move groq to top
Browse files- app.py +4 -4
- app_groq.py +3 -1
app.py
CHANGED
|
@@ -27,7 +27,10 @@ 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("Meta Llama 3.3 70B"):
|
|
|
|
|
|
|
|
|
|
| 31 |
demo_meta.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("LumaAI"):
|
|
@@ -103,9 +106,6 @@ with gr.Blocks(fill_height=True) as demo:
|
|
| 103 |
with gr.Tab("Marco-o1"):
|
| 104 |
demo_marco_o1.render()
|
| 105 |
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>.")
|
| 106 |
-
with gr.Tab("Groq"):
|
| 107 |
-
demo_groq.render()
|
| 108 |
-
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>.")
|
| 109 |
with gr.Tab("Mistral"):
|
| 110 |
demo_mistral.render()
|
| 111 |
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("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("Hugging Face (New Meta Llama 3.3 70B)"):
|
| 34 |
demo_meta.render()
|
| 35 |
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>.")
|
| 36 |
with gr.Tab("LumaAI"):
|
|
|
|
| 106 |
with gr.Tab("Marco-o1"):
|
| 107 |
demo_marco_o1.render()
|
| 108 |
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>.")
|
|
|
|
|
|
|
|
|
|
| 109 |
with gr.Tab("Mistral"):
|
| 110 |
demo_mistral.render()
|
| 111 |
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>.")
|
app_groq.py
CHANGED
|
@@ -15,8 +15,10 @@ demo = get_app(
|
|
| 15 |
"mixtral-8x7b-32768",
|
| 16 |
"gemma2-9b-it",
|
| 17 |
"gemma-7b-it",
|
|
|
|
|
|
|
| 18 |
],
|
| 19 |
-
default_model="
|
| 20 |
src=groq_gradio.registry,
|
| 21 |
accept_token=not os.getenv("GROQ_API_KEY"),
|
| 22 |
)
|
|
|
|
| 15 |
"mixtral-8x7b-32768",
|
| 16 |
"gemma2-9b-it",
|
| 17 |
"gemma-7b-it",
|
| 18 |
+
"llama-3.3-70b-versatile",
|
| 19 |
+
"llama-3.3-70b-specdec",
|
| 20 |
],
|
| 21 |
+
default_model="llama-3.3-70b-specdec",
|
| 22 |
src=groq_gradio.registry,
|
| 23 |
accept_token=not os.getenv("GROQ_API_KEY"),
|
| 24 |
)
|