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