neuralleap commited on
Commit
7fec67a
·
verified ·
1 Parent(s): ea6b3f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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 = "gpt-4o" # Default to gpt-4o
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: