Omnibus commited on
Commit
53fe7f9
·
verified ·
1 Parent(s): 9a62211

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -73,7 +73,7 @@ def generate(prompt, history,max_new_tokens,temperature=temperature,top_p=top_p,
73
  output += response.token.text
74
  if history:
75
  print (history)
76
- yield "",history.append(prompt,output)
77
  else:
78
  yield "",[(prompt,output)]
79
 
@@ -92,7 +92,7 @@ def generate(prompt, history,max_new_tokens,temperature=temperature,top_p=top_p,
92
  print(line)
93
 
94
  if history:
95
- return "",[history,(prompt,output)]
96
  else:
97
  return "",[(prompt,output)]
98
 
 
73
  output += response.token.text
74
  if history:
75
  print (history)
76
+ yield "",[(prompt,output)]
77
  else:
78
  yield "",[(prompt,output)]
79
 
 
92
  print(line)
93
 
94
  if history:
95
+ return "",history.append([(prompt,output)])
96
  else:
97
  return "",[(prompt,output)]
98