Spaces:
Runtime error
Runtime error
Commit
·
0ca126a
1
Parent(s):
93f8824
Update app.py
Browse files
app.py
CHANGED
@@ -332,7 +332,7 @@ def upload_file(chatbot_history,file_uploaded):
|
|
332 |
return chatbot_history + [(None, f'Kindly attempt again at a subsequent time.')]
|
333 |
|
334 |
|
335 |
-
return chatbot_history + [(None, f'You have uploaded {os.path.split(file_uploaded.name)[-1]} successfully. You can start asking questions about the document.')]
|
336 |
|
337 |
|
338 |
def clear_chat_history(history:list)->list:
|
|
|
332 |
return chatbot_history + [(None, f'Kindly attempt again at a subsequent time.')]
|
333 |
|
334 |
|
335 |
+
return chatbot_history + [(None, f'You have uploaded {os.path.split(file_uploaded.name)[-1]} successfully. You can start asking questions about the document.If you want to stop asking questions about the uploaded document click on "clear chat history".')]
|
336 |
|
337 |
|
338 |
def clear_chat_history(history:list)->list:
|