Shashank1406's picture
Update utills.py
d133141 verified
raw
history blame contribute delete
No virus
205 Bytes
import streamlit as st
def on_click_toggle():
st.session_state.update({
"selected_model": "gpt-4o" if st.session_state["selected_model"] == "gpt-3.5-turbo-16k" else "gpt-3.5-turbo-16k"
})