vonshed commited on
Commit
a2106c4
1 Parent(s): cd1afd3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -116,7 +116,8 @@ def reset_conversation():
116
  models =[key for key in model_links.keys()]
117
 
118
  # Create the sidebar with the dropdown for model selection
119
- selected_model = model_links[0] #st.sidebar.selectbox("Select Model", models)
 
120
 
121
  #Create a temperature slider
122
  #temp_values = st.sidebar.slider('Select a temperature value', 0.0, 1.0, (0.1))
 
116
  models =[key for key in model_links.keys()]
117
 
118
  # Create the sidebar with the dropdown for model selection
119
+ selected_model = next(iter(model_links.values()))
120
+ #st.sidebar.selectbox("Select Model", models)
121
 
122
  #Create a temperature slider
123
  #temp_values = st.sidebar.slider('Select a temperature value', 0.0, 1.0, (0.1))