Skip to content

Commit

Permalink
[enhance](ai) use ai_standby in more cases (#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosven authored Feb 8, 2025
1 parent b0cca12 commit a36d576
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion feeluown/library/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,8 @@ async def a_list_song_standby_v2(
song_media_list.append((standby, media))
if len(song_media_list) >= limit:
return song_media_list
return song_media_list
if song_media_list:
return song_media_list
if self.enable_ai_standby_matcher and self.ai and top2_standby:
logger.info(f'Try to use AI to match standby for song {song}')
matcher = AIStandbyMatcher(
Expand Down

0 comments on commit a36d576

Please sign in to comment.