Omnibus commited on
Commit
0b4bdb1
·
verified ·
1 Parent(s): 97fbc4a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -91,7 +91,7 @@ def generate(prompt, history,max_new_tokens,temperature=temperature,top_p=top_p,
91
  print(line)
92
 
93
  if history:
94
- return "",[[history],(prompt,output)]]
95
  else:
96
  return "",[(prompt,output)]
97
 
 
91
  print(line)
92
 
93
  if history:
94
+ return "",[[history],[(prompt,output)]]
95
  else:
96
  return "",[(prompt,output)]
97