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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -19,11 +19,11 @@ import streamlit as st
19
 
20
  st.set_page_config(page_title="Chat Toolkit",layout="wide")
21
 
22
- menu = ["htm", "txt", "xlsx", "csv", "md", "py"] #619
23
- choice = st.sidebar.selectbox("Output File Type:", menu)
24
- model_choice = st.sidebar.radio("Select Model:", ('gpt-3.5-turbo', 'gpt-3.5-turbo-0301', 'gpt-4'))
25
- # default
26
- model_choice = 'gpt-3.5-turbo'
27
 
28
  def generate_filename(prompt, file_type):
29
  central = pytz.timezone('US/Central')
 
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'))
26
+
27
 
28
  def generate_filename(prompt, file_type):
29
  central = pytz.timezone('US/Central')