Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|