Update app.py
Browse files
app.py
CHANGED
@@ -111,7 +111,7 @@ def chatbot_response(query, chat_history):
|
|
111 |
matched_a = answers[best_idx]
|
112 |
|
113 |
if best_score < 0.4:
|
114 |
-
response = "Sorry,
|
115 |
chat_history.append((query, response))
|
116 |
return "", chat_history, gr.update(visible=True)
|
117 |
|
|
|
111 |
matched_a = answers[best_idx]
|
112 |
|
113 |
if best_score < 0.4:
|
114 |
+
response = "Sorry, but the PUP handbook does not contain such information."
|
115 |
chat_history.append((query, response))
|
116 |
return "", chat_history, gr.update(visible=True)
|
117 |
|