Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|