fix(discovery): use a valid ListenBrainz similar-artists algorithm

The placeholder algorithm string (contribution_5_threshold_15_limit_50) is not a
permitted enum member of the LB Labs endpoint — every lookup 400'd, making discovery
inert. Verified against the live API 2026-07-12: the days_7500/contribution_3/
threshold_10/limit_100 variant returns rows shaped {artist_mbid,name,comment,score},
which the existing defensive parser already handles. Fixed in both the worker adapter
and the web seed-search client (kept in sync).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jonathan
2026-07-12 00:54:33 +02:00
parent b9ebd18c2c
commit d2c581d8e7
2 changed files with 8 additions and 6 deletions
+3 -2
View File
@@ -1,7 +1,8 @@
const LB_BASE = process.env.LISTENBRAINZ_URL ?? "https://labs.api.listenbrainz.org";
// Keep in sync with the worker's _listenbrainz.py default algorithm.
// Keep in sync with the worker's _listenbrainz.py default algorithm. Must be a
// permitted enum member of the LB endpoint (invalid strings 400). Verified live 2026-07-12.
const ALGORITHM =
"session_based_days_7500_session_300_contribution_5_threshold_15_limit_50_filter_True_skip_30";
"session_based_days_7500_session_300_contribution_3_threshold_10_limit_100_filter_True_skip_30";
export type SimilarArtist = { mbid: string; name: string; score: number };