hbui commited on
Commit
7c26564
1 Parent(s): 92a6b2a

Update pages/langchain_demo.py

Browse files

Moved gpt-4o to be the default option

Files changed (1) hide show
  1. pages/langchain_demo.py +1 -1
pages/langchain_demo.py CHANGED
@@ -17,7 +17,7 @@ if "openai_api_key" not in st.session_state:
17
  st.info("Enter your openai key to access the chatbot.")
18
  else:
19
  option = st.selectbox(
20
- label="Select your model:", options=("gpt-3.5-turbo", "gpt-4", "gpt-4o")
21
  )
22
 
23
  with st.spinner(f"Initializing {option} ..."):
 
17
  st.info("Enter your openai key to access the chatbot.")
18
  else:
19
  option = st.selectbox(
20
+ label="Select your model:", options=("gpt-4o", "gpt-4", "gpt-3.5-turbo")
21
  )
22
 
23
  with st.spinner(f"Initializing {option} ..."):