Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -56,10 +56,10 @@ def reset_conversation():
|
|
| 56 |
|
| 57 |
|
| 58 |
# Define the available models
|
| 59 |
-
|
| 60 |
|
| 61 |
# Create the sidebar with the dropdown for model selection
|
| 62 |
-
|
| 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))
|