Update app.py
Browse files
app.py
CHANGED
@@ -29,8 +29,9 @@ if "current_conversation_id" not in st.session_state:
|
|
29 |
"messages": []
|
30 |
}
|
31 |
|
|
|
32 |
if "selected_model" not in st.session_state:
|
33 |
-
st.session_state.selected_model = "
|
34 |
|
35 |
# Initialize System Prompt
|
36 |
if "system_prompt" not in st.session_state:
|
|
|
29 |
"messages": []
|
30 |
}
|
31 |
|
32 |
+
# ** Default Model as o1 **
|
33 |
if "selected_model" not in st.session_state:
|
34 |
+
st.session_state.selected_model = "o1" # Default to o1
|
35 |
|
36 |
# Initialize System Prompt
|
37 |
if "system_prompt" not in st.session_state:
|