Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -86,7 +86,11 @@ with gr.Blocks(css=css) as demo:
|
|
86 |
step=8,
|
87 |
interactive=True
|
88 |
)
|
89 |
-
model = gr.Dropdown(choices=[
|
|
|
|
|
|
|
|
|
90 |
|
91 |
generate_btn.click(
|
92 |
fn=execute_jupyter_agent,
|
|
|
86 |
step=8,
|
87 |
interactive=True
|
88 |
)
|
89 |
+
model = gr.Dropdown(choices=[
|
90 |
+
"meta-llama/Llama-3.2-3B-Instruct",
|
91 |
+
"meta-llama/Llama-3.1-8B-Instruct",
|
92 |
+
"meta-llama/Llama-3.1-70B-Instruct"]
|
93 |
+
)
|
94 |
|
95 |
generate_btn.click(
|
96 |
fn=execute_jupyter_agent,
|