From bb6038fd1bb3584a62c789f31020be3b3c3869cf Mon Sep 17 00:00:00 2001 From: Cypress-Yang Date: Mon, 30 Jun 2025 17:39:21 +0800 Subject: [PATCH 1/3] Add SongBloom as a library --- packages/tasks/src/model-libraries.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/tasks/src/model-libraries.ts b/packages/tasks/src/model-libraries.ts index 9641ed689c..a483195690 100644 --- a/packages/tasks/src/model-libraries.ts +++ b/packages/tasks/src/model-libraries.ts @@ -1147,6 +1147,13 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = { countDownloads: `path:"model_vae_fp16.pt"`, snippets: snippets.threedtopia_xl, }, + songbloom: { + prettyLabel: "SongBloom", + repoName: "SongBloom", + repoUrl: "https://github.com/Cypress-Yang/SongBloom", + filter: false, + countDownloads: `path_extension:"ckpt" OR path_extension:"pt"`, + }, } satisfies Record; export type ModelLibraryKey = keyof typeof MODEL_LIBRARIES_UI_ELEMENTS; From 0bcfb0eab58540b733700a34f933f86b5283e755 Mon Sep 17 00:00:00 2001 From: Cypress-Yang Date: Mon, 28 Jul 2025 16:03:10 +0800 Subject: [PATCH 2/3] Update model-libraries.ts --- packages/tasks/src/model-libraries.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tasks/src/model-libraries.ts b/packages/tasks/src/model-libraries.ts index a483195690..7ae79fcd48 100644 --- a/packages/tasks/src/model-libraries.ts +++ b/packages/tasks/src/model-libraries.ts @@ -1152,7 +1152,7 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = { repoName: "SongBloom", repoUrl: "https://github.com/Cypress-Yang/SongBloom", filter: false, - countDownloads: `path_extension:"ckpt" OR path_extension:"pt"`, + countDownloads: `path_extension:"pt"`, }, } satisfies Record; From 2d8a6908c0a497cd6a9cf2c2c05c9ee5a3ef0ece Mon Sep 17 00:00:00 2001 From: Lucain Date: Mon, 28 Jul 2025 16:06:34 +0200 Subject: [PATCH 3/3] Update model-libraries.ts --- packages/tasks/src/model-libraries.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/tasks/src/model-libraries.ts b/packages/tasks/src/model-libraries.ts index 7ae79fcd48..23dc83b4a6 100644 --- a/packages/tasks/src/model-libraries.ts +++ b/packages/tasks/src/model-libraries.ts @@ -922,6 +922,13 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = { filter: false, countDownloads: `path:"soloaudio_v2.pt"`, }, + songbloom: { + prettyLabel: "SongBloom", + repoName: "SongBloom", + repoUrl: "https://github.com/Cypress-Yang/SongBloom", + filter: false, + countDownloads: `path_extension:"pt"`, + }, "stable-baselines3": { prettyLabel: "stable-baselines3", repoName: "stable-baselines3", @@ -1147,13 +1154,6 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = { countDownloads: `path:"model_vae_fp16.pt"`, snippets: snippets.threedtopia_xl, }, - songbloom: { - prettyLabel: "SongBloom", - repoName: "SongBloom", - repoUrl: "https://github.com/Cypress-Yang/SongBloom", - filter: false, - countDownloads: `path_extension:"pt"`, - }, } satisfies Record; export type ModelLibraryKey = keyof typeof MODEL_LIBRARIES_UI_ELEMENTS;