Update app.py
Browse files
app.py
CHANGED
@@ -196,11 +196,11 @@ def generate(prompt, history):
|
|
196 |
context += response
|
197 |
|
198 |
print (context)
|
199 |
-
yield [(
|
200 |
|
201 |
else:
|
202 |
output = "Did you forget to enter your Details? Please go to the User Info Tab and Input your data. "
|
203 |
-
yield [("
|
204 |
|
205 |
|
206 |
def submit_user_info(name,occupation,yearsofexp,ethnicity,gender,age):
|
|
|
196 |
context += response
|
197 |
|
198 |
print (context)
|
199 |
+
yield [(prompt,response)]
|
200 |
|
201 |
else:
|
202 |
output = "Did you forget to enter your Details? Please go to the User Info Tab and Input your data. "
|
203 |
+
yield [("Please agree to the terms and conditions to start chatting.")]
|
204 |
|
205 |
|
206 |
def submit_user_info(name,occupation,yearsofexp,ethnicity,gender,age):
|