Zenne commited on
Commit
310ca3f
·
1 Parent(s): 411afa6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -168,7 +168,9 @@ def main(pinecone_index_name, chroma_collection_name, persist_directory, docsear
168
  r_pinecone = st.radio('Use Pinecone?', ('Yes', 'No'))
169
  r_ingest = st.radio(
170
  'Ingest file(s)?', ('Yes', 'No'))
171
- r_llm = st.multiselect('LLM:',['gpt-3.5-turbo','gpt-4'],'gpt-3.5-turbo')
 
 
172
  with col2:
173
  OPENAI_API_KEY = st.text_input(
174
  "OpenAI API key:", type="password")
 
168
  r_pinecone = st.radio('Use Pinecone?', ('Yes', 'No'))
169
  r_ingest = st.radio(
170
  'Ingest file(s)?', ('Yes', 'No'))
171
+ r_llm = st.multiselect(
172
+ 'LLM:', ['gpt-3.5-turbo', 'gpt-4'], 'gpt-3.5-turbo')
173
+ r_llm = r_llm[0]
174
  with col2:
175
  OPENAI_API_KEY = st.text_input(
176
  "OpenAI API key:", type="password")