Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
update together
Browse files- app.py +3 -3
- app_together.py +2 -1
app.py
CHANGED
@@ -40,6 +40,9 @@ with gr.Blocks(fill_height=True) as demo:
|
|
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>.")
|
@@ -112,9 +115,6 @@ with gr.Blocks(fill_height=True) as demo:
|
|
112 |
with gr.Tab("Fireworks"):
|
113 |
demo_fireworks.render()
|
114 |
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>.")
|
115 |
-
with gr.Tab("Together"):
|
116 |
-
demo_together.render()
|
117 |
-
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>.")
|
118 |
with gr.Tab("NVIDIA"):
|
119 |
demo_nvidia.render()
|
120 |
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>.")
|
|
|
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("Together (New Meta Llama 3.3 70B)"):
|
44 |
+
demo_together.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("Groq (New Meta Llama 3.3 70B)"):
|
47 |
demo_groq.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>.")
|
|
|
115 |
with gr.Tab("Fireworks"):
|
116 |
demo_fireworks.render()
|
117 |
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>.")
|
|
|
|
|
|
|
118 |
with gr.Tab("NVIDIA"):
|
119 |
demo_nvidia.render()
|
120 |
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_together.py
CHANGED
@@ -40,8 +40,9 @@ demo = get_app(
|
|
40 |
"NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
|
41 |
"togethercomputer/StripedHyena-Nous-7B",
|
42 |
"upstage/SOLAR-10.7B-Instruct-v1.0",
|
|
|
43 |
],
|
44 |
-
default_model="meta-llama/Llama-3.
|
45 |
src=together_gradio.registry,
|
46 |
accept_token=not os.getenv("TOGETHER_API_KEY"),
|
47 |
multimodal=True,
|
|
|
40 |
"NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
|
41 |
"togethercomputer/StripedHyena-Nous-7B",
|
42 |
"upstage/SOLAR-10.7B-Instruct-v1.0",
|
43 |
+
"meta-llama/Llama-3.3-70B-Instruct-Turbo",
|
44 |
],
|
45 |
+
default_model="meta-llama/Llama-3.3-70B-Instruct-Turbo",
|
46 |
src=together_gradio.registry,
|
47 |
accept_token=not os.getenv("TOGETHER_API_KEY"),
|
48 |
multimodal=True,
|