Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -58,7 +58,7 @@ rag_chain = (
58
 
59
  import gradio as gr
60
 
61
- def rag_memory_stream(text):
62
  partial_text = ""
63
  for new_text in rag_chain.stream(text):
64
  partial_text += new_text
 
58
 
59
  import gradio as gr
60
 
61
+ def rag_memory_stream(message,history):
62
  partial_text = ""
63
  for new_text in rag_chain.stream(text):
64
  partial_text += new_text