lvwerra HF staff commited on
Commit
78e194b
·
verified ·
1 Parent(s): b7ce47c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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=["meta-llama/Llama-3.1-8B-Instruct", "meta-llama/Llama-3.1-70B-Instruct"])
 
 
 
 
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,