bupa1018 commited on
Commit
bd0da8f
·
verified ·
1 Parent(s): 29f27ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -100,9 +100,9 @@ def main():
100
  submit_btn.click(add_text_to_chat_history, [chat_history, user_txt], [chat_history, user_txt]).then(show_history, [chat_history], [chatbot])\
101
  .then(kadi_bot.handle_chat, [chat_history], [chatbot])
102
  clear_btn.click(
103
- lambda: ([], gr.update(value=[])), # Clear chat_history and reset chatbot display
104
  [],
105
- [chat_history, chatbot] # Update both chat_history and chatbot UI
106
  )
107
 
108
  demo.launch()
 
100
  submit_btn.click(add_text_to_chat_history, [chat_history, user_txt], [chat_history, user_txt]).then(show_history, [chat_history], [chatbot])\
101
  .then(kadi_bot.handle_chat, [chat_history], [chatbot])
102
  clear_btn.click(
103
+ lambda: ([], gr.update(value=[])),
104
  [],
105
+ [chat_history, chatbot]
106
  )
107
 
108
  demo.launch()