Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions packages/tasks/src/model-libraries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -806,6 +806,34 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = {
filter: false,
countDownloads: `path_extension:"pt2" OR path_extension:"pth" OR path_extension:"onnx"`,
},
"seedvr-3b": {
prettyLabel: "SeedVR-3B",
repoName: "SeedVR-3B",
repoUrl: "https://github.com/ByteDance-Seed/SeedVR/",
filter: false,
countDownloads: `path_extension:"pth"`,
},
"seedvr-7b": {
prettyLabel: "SeedVR-7B",
repoName: "SeedVR-7B",
repoUrl: "https://github.com/ByteDance-Seed/SeedVR/",
filter: false,
countDownloads: `path_extension:"pth"`,
},
"seedvr2-3b": {
prettyLabel: "SeedVR2-3B",
repoName: "SeedVR2-3B",
repoUrl: "https://github.com/ByteDance-Seed/SeedVR/",
filter: false,
countDownloads: `path_extension:"pth"`,
},
"seedvr2-7b": {
prettyLabel: "SeedVR2-7B",
repoName: "SeedVR2-7B",
repoUrl: "https://github.com/ByteDance-Seed/SeedVR/",
filter: false,
countDownloads: `path_extension:"pth"`,
},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"seedvr-3b": {
prettyLabel: "SeedVR-3B",
repoName: "SeedVR-3B",
repoUrl: "https://github.com/ByteDance-Seed/SeedVR/",
filter: false,
countDownloads: `path_extension:"pth"`,
},
"seedvr-7b": {
prettyLabel: "SeedVR-7B",
repoName: "SeedVR-7B",
repoUrl: "https://github.com/ByteDance-Seed/SeedVR/",
filter: false,
countDownloads: `path_extension:"pth"`,
},
"seedvr2-3b": {
prettyLabel: "SeedVR2-3B",
repoName: "SeedVR2-3B",
repoUrl: "https://github.com/ByteDance-Seed/SeedVR/",
filter: false,
countDownloads: `path_extension:"pth"`,
},
"seedvr2-7b": {
prettyLabel: "SeedVR2-7B",
repoName: "SeedVR2-7B",
repoUrl: "https://github.com/ByteDance-Seed/SeedVR/",
filter: false,
countDownloads: `path_extension:"pth"`,
},
"seedvr": {
prettyLabel: "SeedVR",
repoName: "SeedVR",
repoUrl: "https://github.com/ByteDance-Seed/SeedVR",
filter: false,
countDownloads: `path_extension:"pth"`,
},

Small clarification: in this PR we are adding metadata for a library (SeedVR) that can be used with several models (the 4 from https://huggingface.co/models?other=seedvr). So there's no need to register 1 library per repo, simply 1 for seedvr tag and that's it.

Apart from that, looks like we are ready to merge!

Copy link
Contributor Author

@IceClear IceClear Jun 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot for your clarification @Wauplin ! Done

"sentence-transformers": {
prettyLabel: "sentence-transformers",
repoName: "sentence-transformers",
Expand Down