Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -65,6 +65,7 @@ def generate_response(user_input):
|
|
65 |
try:
|
66 |
search = Search(activity)
|
67 |
search_results = search.results[:3] # limit results to 3 videos
|
|
|
68 |
|
69 |
if not search_results:
|
70 |
st.write(f"No results found for '{activity}'. Please try again.")
|
|
|
65 |
try:
|
66 |
search = Search(activity)
|
67 |
search_results = search.results[:3] # limit results to 3 videos
|
68 |
+
st.write(f"Searching for videos related to {activity}...") # Debugging line
|
69 |
|
70 |
if not search_results:
|
71 |
st.write(f"No results found for '{activity}'. Please try again.")
|