Update app.py
Browse files
app.py
CHANGED
@@ -154,7 +154,7 @@ class ChatbotAPP:
|
|
154 |
self.isFirstRun = False
|
155 |
firstmsg = prompt
|
156 |
|
157 |
-
if (current_time - self.start_time) > timedelta (minutes =
|
158 |
|
159 |
temp_history = []
|
160 |
temp_history.append(("""
|
@@ -164,7 +164,7 @@ class ChatbotAPP:
|
|
164 |
.
|
165 |
.
|
166 |
|
167 |
-
""","
|
168 |
return temp_history
|
169 |
|
170 |
self.context += """
|
|
|
154 |
self.isFirstRun = False
|
155 |
firstmsg = prompt
|
156 |
|
157 |
+
if (current_time - self.start_time) > timedelta (minutes = 5):
|
158 |
|
159 |
temp_history = []
|
160 |
temp_history.append(("""
|
|
|
164 |
.
|
165 |
.
|
166 |
|
167 |
+
""","5 minutes have been elapsed. Please fill out the survey at LINK . Remember to copy your unique session ID above"))
|
168 |
return temp_history
|
169 |
|
170 |
self.context += """
|