awacke1 commited on
Commit
704fe64
·
1 Parent(s): 441e4e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -195,8 +195,7 @@ def main():
195
 
196
  if st.button('💬 Chat'):
197
  st.write('Reasoning with your inputs...')
198
- response =
199
- (user_prompt, ''.join(list(document_sections))) # *************************************
200
  st.write('Response:')
201
  st.write(response)
202
 
 
195
 
196
  if st.button('💬 Chat'):
197
  st.write('Reasoning with your inputs...')
198
+ response = chat_with_model(user_prompt, ''.join(list(document_sections))) # *************************************
 
199
  st.write('Response:')
200
  st.write(response)
201