Wire Bandcamp into AI recommendations - prioritize indie artists, attach Bandcamp links to results

This commit is contained in:
root
2026-03-30 23:42:03 -05:00
parent dd4df6a070
commit 37fccc6eef
9 changed files with 62 additions and 20 deletions

View File

@@ -20,6 +20,7 @@ class Recommendation(Base):
spotify_id: Mapped[str | None] = mapped_column(String(255), nullable=True)
preview_url: Mapped[str | None] = mapped_column(String(500), nullable=True)
image_url: Mapped[str | None] = mapped_column(String(500), nullable=True)
bandcamp_url: Mapped[str | None] = mapped_column(String(500), nullable=True)
# AI explanation
reason: Mapped[str] = mapped_column(Text)