Update app.py
Browse files
app.py
CHANGED
@@ -192,7 +192,7 @@ def generate(prompt, history):
|
|
192 |
context += response
|
193 |
|
194 |
print (context)
|
195 |
-
|
196 |
|
197 |
else:
|
198 |
output = "Did you forget to enter your Details? Please go to the User Info Tab and Input your data. "
|
|
|
192 |
context += response
|
193 |
|
194 |
print (context)
|
195 |
+
yield [("User", prompt), ("Barry", response)]
|
196 |
|
197 |
else:
|
198 |
output = "Did you forget to enter your Details? Please go to the User Info Tab and Input your data. "
|