From 527711bc80b81d7619087f79c9fceeecbe08ed4b Mon Sep 17 00:00:00 2001 From: Kyle Gion <124624415+kyle-gion@users.noreply.github.com> Date: Mon, 8 Dec 2025 17:34:14 -0500 Subject: [PATCH 1/3] Update model-libraries.ts Add Clara library (ckpt file) tracking to enable download count --- 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 f929f2071b..e16335ffdd 100644 --- a/packages/tasks/src/model-libraries.ts +++ b/packages/tasks/src/model-libraries.ts @@ -346,6 +346,13 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = { repoUrl: "https://github.com/cartesia-ai/cartesia_mlx", snippets: snippets.cartesia_mlx, }, + clara: { + prettyLabel: "Clara", + repoName: "Clara", + filter: false, + repoUrl: "https://github.com/nvidia/clara", + countDownloads: `path_extension:"ckpt"`, + }, clipscope: { prettyLabel: "clipscope", repoName: "clipscope", From e10b3e458048363d47c0e4eeab394ce659ed5ec5 Mon Sep 17 00:00:00 2001 From: Lucain Date: Tue, 9 Dec 2025 10:38:39 +0100 Subject: [PATCH 2/3] Update model-libraries.ts to modify library entries Removed Cartesia Pytorch and Cartesia MLX entries, along with their associated properties. Added Clara entry with relevant details. --- packages/tasks/src/model-libraries.ts | 47 ++++----------------------- 1 file changed, 7 insertions(+), 40 deletions(-) diff --git a/packages/tasks/src/model-libraries.ts b/packages/tasks/src/model-libraries.ts index 30e95098ff..1595d45508 100644 --- a/packages/tasks/src/model-libraries.ts +++ b/packages/tasks/src/model-libraries.ts @@ -241,6 +241,13 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = { repoUrl: "https://github.com/amazon-science/chronos-forecasting", snippets: snippets.chronos_forecasting, }, + clara: { + prettyLabel: "Clara", + repoName: "Clara", + filter: false, + repoUrl: "https://github.com/nvidia/clara", + countDownloads: `path_extension:"ckpt"`, + }, clipscope: { prettyLabel: "clipscope", repoName: "clipscope", @@ -388,46 +395,6 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = { repoName: "doctr", repoUrl: "https://github.com/mindee/doctr", }, - cartesia_pytorch: { - prettyLabel: "Cartesia Pytorch", - repoName: "Cartesia Pytorch", - repoUrl: "https://github.com/cartesia-ai/cartesia_pytorch", - snippets: snippets.cartesia_pytorch, - }, - cartesia_mlx: { - prettyLabel: "Cartesia MLX", - repoName: "Cartesia MLX", - repoUrl: "https://github.com/cartesia-ai/cartesia_mlx", - snippets: snippets.cartesia_mlx, - }, - clara: { - prettyLabel: "Clara", - repoName: "Clara", - filter: false, - repoUrl: "https://github.com/nvidia/clara", - countDownloads: `path_extension:"ckpt"`, - }, - clipscope: { - prettyLabel: "clipscope", - repoName: "clipscope", - repoUrl: "https://github.com/Lewington-pitsos/clipscope", - filter: false, - countDownloads: `path_extension:"pt"`, - }, - cosyvoice: { - prettyLabel: "CosyVoice", - repoName: "CosyVoice", - repoUrl: "https://github.com/FunAudioLLM/CosyVoice", - filter: false, - countDownloads: `path_extension:"onnx" OR path_extension:"pt"`, - }, - cotracker: { - prettyLabel: "CoTracker", - repoName: "CoTracker", - repoUrl: "https://github.com/facebookresearch/co-tracker", - filter: false, - countDownloads: `path_extension:"pth"`, - }, edsnlp: { prettyLabel: "EDS-NLP", repoName: "edsnlp", From 0adb2abd73d302c2729b3b923230f9009eb253c5 Mon Sep 17 00:00:00 2001 From: Kyle Gion <124624415+kyle-gion@users.noreply.github.com> Date: Tue, 9 Dec 2025 11:03:59 -0500 Subject: [PATCH 3/3] Update packages/tasks/src/model-libraries.ts Include `config.json` as file option to enable download metrics Co-authored-by: Lucain --- 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 1595d45508..c9c0ca4dc2 100644 --- a/packages/tasks/src/model-libraries.ts +++ b/packages/tasks/src/model-libraries.ts @@ -246,7 +246,7 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = { repoName: "Clara", filter: false, repoUrl: "https://github.com/nvidia/clara", - countDownloads: `path_extension:"ckpt"`, + countDownloads: `path_extension:"ckpt" OR path:"config.json"`, }, clipscope: { prettyLabel: "clipscope",