Omnibus commited on
Commit
59059c7
·
1 Parent(s): e670f0e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -184,7 +184,8 @@ def summarize(inp,history,data=None,file=None):
184
  #print (f'out:: {out}')
185
  #history += "observation: the search results are:\n {}\n".format(out)
186
  #task = "complete?"
187
- history.append(("",rawp))
 
188
  yield "", history
189
  #################################
190
 
 
184
  #print (f'out:: {out}')
185
  #history += "observation: the search results are:\n {}\n".format(out)
186
  #task = "complete?"
187
+ history.clear()
188
+ history.append((inp,rawp))
189
  yield "", history
190
  #################################
191