Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
update sambanova
Browse files- app.py +1 -1
- app_sambanova.py +2 -1
app.py
CHANGED
@@ -31,7 +31,7 @@ with gr.Blocks(fill_height=True) as demo:
|
|
31 |
with gr.Tab("Gemini"):
|
32 |
demo_gemini.render()
|
33 |
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>.")
|
34 |
-
with gr.Tab("SambaNova (New
|
35 |
demo_sambanova.render()
|
36 |
gr.Markdown(
|
37 |
"""
|
|
|
31 |
with gr.Tab("Gemini"):
|
32 |
demo_gemini.render()
|
33 |
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>.")
|
34 |
+
with gr.Tab("SambaNova (New Meta-Llama-3.3-70B-Instruct)"):
|
35 |
demo_sambanova.render()
|
36 |
gr.Markdown(
|
37 |
"""
|
app_sambanova.py
CHANGED
@@ -15,8 +15,9 @@ demo = get_app(
|
|
15 |
"Meta-Llama-3.1-405B-Instruct",
|
16 |
"Qwen2.5-72B-Instruct",
|
17 |
"Qwen2.5-Coder-32B-Instruct",
|
|
|
18 |
],
|
19 |
-
default_model="
|
20 |
src=sambanova_gradio.registry,
|
21 |
accept_token=not os.getenv("SAMBANOVA_API_KEY"),
|
22 |
multimodal=True,
|
|
|
15 |
"Meta-Llama-3.1-405B-Instruct",
|
16 |
"Qwen2.5-72B-Instruct",
|
17 |
"Qwen2.5-Coder-32B-Instruct",
|
18 |
+
"Meta-Llama-3.3-70B-Instruct",
|
19 |
],
|
20 |
+
default_model="Meta-Llama-3.3-70B-Instruct",
|
21 |
src=sambanova_gradio.registry,
|
22 |
accept_token=not os.getenv("SAMBANOVA_API_KEY"),
|
23 |
multimodal=True,
|