KGSAGAR commited on
Commit
14e4a65
·
verified ·
1 Parent(s): cc107c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -66,8 +66,9 @@ def respond(message, history, system_message, max_tokens, temperature, top_p):
66
  else:
67
  # If 'output' is not found, return an empty string
68
  return "Retry to get output, the model failed to generated required output(This occurs rarely🤷‍♂️)"
69
-
70
  lines = extract_user_content(generated_text)
 
71
 
72
  return lines
73
 
 
66
  else:
67
  # If 'output' is not found, return an empty string
68
  return "Retry to get output, the model failed to generated required output(This occurs rarely🤷‍♂️)"
69
+ print(generated_text)
70
  lines = extract_user_content(generated_text)
71
+ print(lines)
72
 
73
  return lines
74