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
Copy file name to clipboardExpand all lines: src/server.ts
+28-4Lines changed: 28 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -90,10 +90,10 @@ If the user asks "what are my top tracks", "show my top songs", "my top Spotify
90
90
If the user asks "what did I recently play", "my recent tracks", "recently played", or similar questions about their recent listening history, use the loginToSpotify tool first to provide the login link.
91
91
If the user asks about Spotify login, authentication, or wants to access their Spotify data, use the loginToSpotify tool first.
92
92
If the user asks "am I logged in?", "am I login?", "check my login status", or similar questions about their Spotify login status, use the checkSpotifyLogin tool.
93
-
If the user provides an authorization code from Spotify callback and wants to see their top artists, use the getUserTopArtists tool with the authorization code.
94
-
If the user provides an authorization code from Spotify callback and wants to see their top tracks, use the getUserTopTracks tool with the authorization code.
95
-
If the user provides an authorization code from Spotify callback and wants to see their recently played tracks, use the getUserRecentlyPlayed tool with the authorization code.
96
-
If the user provides an authorization code from Spotify callback and wants to see their profile data, use the getUserSpotifyProfile tool with the authorization code.
93
+
If the user asks for their top artists, use the getUserTopArtists tool (authCode is optional if already logged in).
94
+
If the user asks for their top tracks, use the getUserTopTracks tool (authCode is optional if already logged in).
95
+
If the user asks for their recently played tracks, use the getUserRecentlyPlayed tool (authCode is optional if already logged in).
96
+
If the user asks for their profile data, use the getUserSpotifyProfile tool (authCode is optional if already logged in).
0 commit comments