Spaces:
Runtime error
Runtime error
added gpt-4-1106-preview option
Browse files- 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")
|
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-3.5-turbo", "gpt-4", "gpt-4-1106-preview")
|
21 |
)
|
22 |
|
23 |
with st.spinner(f"Initializing {option} ..."):
|