Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -247,7 +247,7 @@ def main():
|
|
247 |
if next_action=='search':
|
248 |
file_content_area = st.text_area("File Contents:", file_contents, height=500)
|
249 |
st.write('Reasoning with your inputs...')
|
250 |
-
response = chat_with_file_contents(file_contents)
|
251 |
st.write('Response:')
|
252 |
st.write(response)
|
253 |
filename = generate_filename(file_content_area, choice)
|
|
|
247 |
if next_action=='search':
|
248 |
file_content_area = st.text_area("File Contents:", file_contents, height=500)
|
249 |
st.write('Reasoning with your inputs...')
|
250 |
+
response = chat_with_file_contents(user_prompt, file_contents)
|
251 |
st.write('Response:')
|
252 |
st.write(response)
|
253 |
filename = generate_filename(file_content_area, choice)
|