eaglelandsonce commited on
Commit
9716b4f
·
1 Parent(s): 01901e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ import streamlit as st
19
 
20
  st.set_page_config(page_title="Chat Toolkit",layout="wide")
21
 
22
- with sidebar:
23
  menu = ["htm", "txt", "xlsx", "csv", "md", "py"] #619
24
  choice = st.selectbox("Output File Type:", menu)
25
  model_choice = st.radio("Select Model:", ('gpt-3.5-turbo', 'gpt-3.5-turbo-0301', 'gpt-4'))
 
19
 
20
  st.set_page_config(page_title="Chat Toolkit",layout="wide")
21
 
22
+ with st.sidebar.expander("Model Options", expanded=True):
23
  menu = ["htm", "txt", "xlsx", "csv", "md", "py"] #619
24
  choice = st.selectbox("Output File Type:", menu)
25
  model_choice = st.radio("Select Model:", ('gpt-3.5-turbo', 'gpt-3.5-turbo-0301', 'gpt-4'))