Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
update fireworks
Browse files- app.py +3 -0
- app_fireworks.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("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>.")
|
|
|
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("Fireworks (New Meta Llama 3.3 70B)"):
|
44 |
+
demo_fireworks.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("Together (New Meta Llama 3.3 70B)"):
|
47 |
demo_together.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>.")
|
app_fireworks.py
CHANGED
@@ -8,8 +8,9 @@ demo = get_app(
|
|
8 |
models=[
|
9 |
"f1-preview",
|
10 |
"f1-mini-preview",
|
|
|
11 |
],
|
12 |
-
default_model="
|
13 |
src=fireworks_gradio.registry,
|
14 |
accept_token=not os.getenv("FIREWORKS_API_KEY"),
|
15 |
)
|
|
|
8 |
models=[
|
9 |
"f1-preview",
|
10 |
"f1-mini-preview",
|
11 |
+
"llama-v3p3-70b-instruct",
|
12 |
],
|
13 |
+
default_model="llama-v3p3-70b-instruct",
|
14 |
src=fireworks_gradio.registry,
|
15 |
accept_token=not os.getenv("FIREWORKS_API_KEY"),
|
16 |
)
|