burak commited on
Commit
9435276
·
verified ·
1 Parent(s): b892044

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -56,10 +56,10 @@ def reset_conversation():
56
 
57
 
58
  # Define the available models
59
- #models =[key for key in model_links.keys()]
60
 
61
  # Create the sidebar with the dropdown for model selection
62
- #selected_model = st.sidebar.selectbox("Select Model", models)
63
 
64
  #Create a temperature slider
65
  temp_values = st.sidebar.slider('Select a temperature value', 0.0, 1.0, (0.5))
 
56
 
57
 
58
  # Define the available models
59
+ models =[key for key in model_links.keys()]
60
 
61
  # Create the sidebar with the dropdown for model selection
62
+ selected_model = st.sidebar.selectbox("Select Model", models)
63
 
64
  #Create a temperature slider
65
  temp_values = st.sidebar.slider('Select a temperature value', 0.0, 1.0, (0.5))