Update app.py
Browse files
app.py
CHANGED
@@ -23,6 +23,13 @@ with gr.Blocks() as demo:
|
|
23 |
src=anthropic_gradio.registry,
|
24 |
accept_token=True
|
25 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
demo.launch()
|
28 |
|
|
|
23 |
src=anthropic_gradio.registry,
|
24 |
accept_token=True
|
25 |
)
|
26 |
+
with gr.Tab("Meta Llama 405B"):
|
27 |
+
gr.load(
|
28 |
+
name='Meta-Llama-3.1-405B-Instruct',
|
29 |
+
src=sambanova_gradio.registry,
|
30 |
+
accept_token=True
|
31 |
+
)
|
32 |
+
|
33 |
|
34 |
demo.launch()
|
35 |
|