awacke1 commited on
Commit
73351f8
·
1 Parent(s): c98f701

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ from audio_recorder_streamlit import audio_recorder
19
  openai.api_key = os.getenv('OPENAI_KEY')
20
  st.set_page_config(page_title="GPT Streamlit Document Reasoner",layout="wide")
21
 
22
- menu = ["txt", "htm", "md", "py"]
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'))
25
 
 
19
  openai.api_key = os.getenv('OPENAI_KEY')
20
  st.set_page_config(page_title="GPT Streamlit Document Reasoner",layout="wide")
21
 
22
+ menu = ["txt", "htm", "md", "py", "csv", "xlsx"]
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'))
25