EXP: enrich artist info data via Last.fm and produce better embeddings

This commit is contained in:
Claudio Ortolina
2026-03-01 08:22:15 +00:00
parent 5d8bf68b64
commit b35f4aed1d
8 changed files with 309 additions and 16 deletions
@@ -0,0 +1,9 @@
defmodule MusicLibrary.Repo.Migrations.AddLastfmDataToArtistInfos do
use Ecto.Migration
def change do
alter table(:artist_infos) do
add :lastfm_data, :map, default: %{}
end
end
end