Omnibus commited on
Commit
bc14646
1 Parent(s): b966427

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -109,7 +109,7 @@ def generate(prompt, history,max_new_tokens,health,temperature=temperature,top_p
109
  option_drop=[]
110
  new_stat="*******************\n"
111
  for i,line in enumerate(lines):
112
- if ":" in line:
113
  for z in range(1,5):
114
  try:
115
  if f'{z}' in lines[i+z]:
@@ -139,9 +139,9 @@ def generate(prompt, history,max_new_tokens,health,temperature=temperature,top_p
139
 
140
  if history:
141
  history.append((prompt,output))
142
- yield history,stats,skills,opts
143
  else:
144
- yield [(prompt,output)],stats,skills,opts
145
 
146
  def clear_fn():
147
  return None,None
 
109
  option_drop=[]
110
  new_stat="*******************\n"
111
  for i,line in enumerate(lines):
112
+ if "Choices:" in line:
113
  for z in range(1,5):
114
  try:
115
  if f'{z}' in lines[i+z]:
 
139
 
140
  if history:
141
  history.append((prompt,output))
142
+ yield history,stats,skills,option_drop
143
  else:
144
+ yield [(prompt,output)],stats,skills,option_drop
145
 
146
  def clear_fn():
147
  return None,None