Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -194,13 +194,14 @@ with st.sidebar:
|
|
| 194 |
|
| 195 |
# Main Model Temperature
|
| 196 |
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
|
|
|
| 204 |
|
| 205 |
# Layer agent configuration
|
| 206 |
tooltip = "Agents in the layer agent configuration run in parallel _per cycle_. Each layer agent supports all initialization parameters of [Langchain's ChatGroq](https://api.python.langchain.com/en/latest/chat_models/langchain_groq.chat_models.ChatGroq.html) class as valid dictionary fields."
|
|
|
|
| 194 |
|
| 195 |
# Main Model Temperature
|
| 196 |
|
| 197 |
+
main_temperature = (
|
| 198 |
+
"Main Model Temperature",
|
| 199 |
+
min_value=0.0,
|
| 200 |
+
max_value=1.0,
|
| 201 |
+
value=st.session_state.main_temp,
|
| 202 |
+
step=0.05
|
| 203 |
+
)
|
| 204 |
+
|
| 205 |
|
| 206 |
# Layer agent configuration
|
| 207 |
tooltip = "Agents in the layer agent configuration run in parallel _per cycle_. Each layer agent supports all initialization parameters of [Langchain's ChatGroq](https://api.python.langchain.com/en/latest/chat_models/langchain_groq.chat_models.ChatGroq.html) class as valid dictionary fields."
|