annikwag commited on
Commit
9410c95
·
verified ·
1 Parent(s): d6b309d

Update app.py

Browse files

remove 'Llama3.2-3B',' and 'Gemma2-2B' from model options

Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -20,7 +20,9 @@ with st.sidebar:
20
 
21
  # Create a list of options for the dropdown
22
  #model_options = ['Llama3.1-8B','Llama3.1-70B','Llama3.1-405B','Zephyr 7B β','Mistral-7B','Mixtral-8x7B']
23
- model_options = ['Llama3.2-3B','Llama3.2-1B','Gemma2-2B']
 
 
24
 
25
  # Dropdown selectbox: model
26
  model_sel = st.selectbox('Select a model:', model_options)
 
20
 
21
  # Create a list of options for the dropdown
22
  #model_options = ['Llama3.1-8B','Llama3.1-70B','Llama3.1-405B','Zephyr 7B β','Mistral-7B','Mixtral-8x7B']
23
+ #model_options = ['Llama3.2-3B','Llama3.2-1B','Gemma2-2B']
24
+ model_options = ['Llama3.2-1B']
25
+
26
 
27
  # Dropdown selectbox: model
28
  model_sel = st.selectbox('Select a model:', model_options)