awacke1 commited on
Commit
248a1d0
1 Parent(s): 3d0c023

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -265,7 +265,8 @@ def main():
265
  if next_action=='search':
266
  file_content_area = st.text_area("File Contents:", file_contents, height=500)
267
  st.write('Reasoning with your inputs...')
268
- response = chat_with_file_contents(user_prompt, file_contents)
 
269
  st.write('Response:')
270
  st.write(response)
271
  filename = generate_filename(file_content_area, choice)
 
265
  if next_action=='search':
266
  file_content_area = st.text_area("File Contents:", file_contents, height=500)
267
  st.write('Reasoning with your inputs...')
268
+ #response = chat_with_file_contents(user_prompt, file_contents)
269
+ response = chat_with_model(user_prompt, file_contents, model_choice)
270
  st.write('Response:')
271
  st.write(response)
272
  filename = generate_filename(file_content_area, choice)