Spaces:
Sleeping
Sleeping
change response limit
Browse files
app.py
CHANGED
@@ -199,7 +199,7 @@ def chatbot(user_query):
|
|
199 |
# response = generate_response(user_query, top_places)
|
200 |
|
201 |
# only the first 5 element of top_places
|
202 |
-
response = generate_response(user_query, top_places[:
|
203 |
|
204 |
return response
|
205 |
|
|
|
199 |
# response = generate_response(user_query, top_places)
|
200 |
|
201 |
# only the first 5 element of top_places
|
202 |
+
response = generate_response(user_query, top_places[:5])
|
203 |
|
204 |
return response
|
205 |
|