You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- search_library is for finding specific tracks by artist name, album, or title keyword.
43
+
- search_library is ONLY for: exact artist names, exact album names, or specific song titles. NEVER for mood keywords.
39
44
- Use get_track_tags to understand a track's mood/genre before expanding with get_top_artists_by_tag.
40
45
46
+
CRITICAL: Avoid these common mistakes:
47
+
- NEVER call search_library with mood words like "chill", "relax", "calm", "soft", "dream", "slow" — this matches titles containing those words, not actual chill music
48
+
- NEVER call search_library with genre words like "ambient", "electronic", "indie" — use get_top_artists_by_tag instead
49
+
- If get_top_artists_by_tag returns 0 matches, try related tags (e.g., "ambient" -> "chillout", "electronic" -> "electronica") rather than falling back to search_library
50
+
41
51
RESPONSE FORMAT (final answer only):
42
52
Playlist: [descriptive name]
43
53
Tracks: [comma-separated track IDs]
44
54
45
-
Only include track IDs you received from tool results. Never invent IDs."
55
+
Only include track IDs you received from tool results. Never invent IDs."#
0 commit comments