@huggingface/tasks 0.19.35 → 0.19.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/dist/commonjs/local-apps.d.ts +7 -0
  2. package/dist/commonjs/local-apps.d.ts.map +1 -1
  3. package/dist/commonjs/local-apps.js +31 -0
  4. package/dist/commonjs/model-libraries-snippets.d.ts +1 -0
  5. package/dist/commonjs/model-libraries-snippets.d.ts.map +1 -1
  6. package/dist/commonjs/model-libraries-snippets.js +12 -2
  7. package/dist/commonjs/model-libraries.d.ts +15 -1
  8. package/dist/commonjs/model-libraries.d.ts.map +1 -1
  9. package/dist/commonjs/model-libraries.js +14 -0
  10. package/dist/commonjs/tasks/any-to-any/data.js +3 -3
  11. package/dist/commonjs/tasks/image-segmentation/data.js +2 -2
  12. package/dist/commonjs/tasks/image-text-to-text/data.d.ts.map +1 -1
  13. package/dist/commonjs/tasks/image-text-to-text/data.js +10 -38
  14. package/dist/commonjs/tasks/image-to-3d/data.js +2 -2
  15. package/dist/commonjs/tasks/image-to-image/data.d.ts.map +1 -1
  16. package/dist/commonjs/tasks/image-to-image/data.js +13 -25
  17. package/dist/commonjs/tasks/image-to-text/data.d.ts.map +1 -1
  18. package/dist/commonjs/tasks/image-to-text/data.js +10 -30
  19. package/dist/commonjs/tasks/keypoint-detection/data.js +5 -5
  20. package/dist/commonjs/tasks/object-detection/data.js +2 -2
  21. package/dist/commonjs/tasks/text-generation/data.d.ts.map +1 -1
  22. package/dist/commonjs/tasks/text-generation/data.js +14 -10
  23. package/dist/commonjs/tasks/text-to-image/data.js +6 -6
  24. package/dist/commonjs/tasks/text-to-speech/data.d.ts.map +1 -1
  25. package/dist/commonjs/tasks/text-to-speech/data.js +10 -14
  26. package/dist/commonjs/tasks/text-to-video/data.js +3 -3
  27. package/dist/commonjs/tasks/visual-document-retrieval/data.d.ts.map +1 -1
  28. package/dist/commonjs/tasks/visual-document-retrieval/data.js +6 -2
  29. package/dist/commonjs/tasks/zero-shot-object-detection/data.js +4 -4
  30. package/dist/esm/local-apps.d.ts +7 -0
  31. package/dist/esm/local-apps.d.ts.map +1 -1
  32. package/dist/esm/local-apps.js +31 -0
  33. package/dist/esm/model-libraries-snippets.d.ts +1 -0
  34. package/dist/esm/model-libraries-snippets.d.ts.map +1 -1
  35. package/dist/esm/model-libraries-snippets.js +10 -1
  36. package/dist/esm/model-libraries.d.ts +15 -1
  37. package/dist/esm/model-libraries.d.ts.map +1 -1
  38. package/dist/esm/model-libraries.js +14 -0
  39. package/dist/esm/tasks/any-to-any/data.js +3 -3
  40. package/dist/esm/tasks/image-segmentation/data.js +2 -2
  41. package/dist/esm/tasks/image-text-to-text/data.d.ts.map +1 -1
  42. package/dist/esm/tasks/image-text-to-text/data.js +10 -38
  43. package/dist/esm/tasks/image-to-3d/data.js +2 -2
  44. package/dist/esm/tasks/image-to-image/data.d.ts.map +1 -1
  45. package/dist/esm/tasks/image-to-image/data.js +13 -25
  46. package/dist/esm/tasks/image-to-text/data.d.ts.map +1 -1
  47. package/dist/esm/tasks/image-to-text/data.js +10 -30
  48. package/dist/esm/tasks/keypoint-detection/data.js +5 -5
  49. package/dist/esm/tasks/object-detection/data.js +2 -2
  50. package/dist/esm/tasks/text-generation/data.d.ts.map +1 -1
  51. package/dist/esm/tasks/text-generation/data.js +14 -10
  52. package/dist/esm/tasks/text-to-image/data.js +6 -6
  53. package/dist/esm/tasks/text-to-speech/data.d.ts.map +1 -1
  54. package/dist/esm/tasks/text-to-speech/data.js +10 -14
  55. package/dist/esm/tasks/text-to-video/data.js +3 -3
  56. package/dist/esm/tasks/visual-document-retrieval/data.d.ts.map +1 -1
  57. package/dist/esm/tasks/visual-document-retrieval/data.js +6 -2
  58. package/dist/esm/tasks/zero-shot-object-detection/data.js +4 -4
  59. package/package.json +1 -1
  60. package/src/local-apps.ts +32 -0
  61. package/src/model-libraries-snippets.ts +11 -1
  62. package/src/model-libraries.ts +14 -0
  63. package/src/tasks/any-to-any/data.ts +3 -3
  64. package/src/tasks/image-segmentation/data.ts +2 -2
  65. package/src/tasks/image-text-to-text/data.ts +10 -38
  66. package/src/tasks/image-to-3d/data.ts +2 -2
  67. package/src/tasks/image-to-image/data.ts +13 -25
  68. package/src/tasks/image-to-text/data.ts +10 -30
  69. package/src/tasks/keypoint-detection/data.ts +5 -5
  70. package/src/tasks/object-detection/data.ts +2 -2
  71. package/src/tasks/text-generation/data.ts +14 -10
  72. package/src/tasks/text-to-image/data.ts +6 -6
  73. package/src/tasks/text-to-speech/data.ts +10 -14
  74. package/src/tasks/text-to-video/data.ts +3 -3
  75. package/src/tasks/visual-document-retrieval/data.ts +7 -2
  76. package/src/tasks/zero-shot-object-detection/data.ts +4 -4
@@ -63,20 +63,20 @@ const taskData: TaskDataCustom = {
63
63
  models: [
64
64
  { description: "A text-generation model trained to follow instructions.", id: "google/gemma-2-2b-it" },
65
65
  {
66
- description: "Smaller variant of one of the most powerful models.",
67
- id: "deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B",
66
+ description: "Powerful text generation model for coding.",
67
+ id: "Qwen/Qwen3-Coder-480B-A35B-Instruct",
68
68
  },
69
69
  {
70
- description: "Very powerful text generation model trained to follow instructions.",
71
- id: "meta-llama/Meta-Llama-3.1-8B-Instruct",
70
+ description: "Great text generation model with top-notch tool calling capabilities.",
71
+ id: "openai/gpt-oss-120b",
72
72
  },
73
73
  {
74
- description: "Powerful text generation model by Microsoft.",
75
- id: "microsoft/phi-4",
74
+ description: "Powerful text generation model.",
75
+ id: "zai-org/GLM-4.5",
76
76
  },
77
77
  {
78
- description: "A very powerful model with reasoning capabilities.",
79
- id: "simplescaling/s1.1-32B",
78
+ description: "A powerful small model with reasoning capabilities.",
79
+ id: "Qwen/Qwen3-4B-Thinking-2507",
80
80
  },
81
81
  {
82
82
  description: "Strong conversational model that supports very long instructions.",
@@ -93,8 +93,12 @@ const taskData: TaskDataCustom = {
93
93
  ],
94
94
  spaces: [
95
95
  {
96
- description: "A leaderboard to compare different open-source text generation models based on various benchmarks.",
97
- id: "open-llm-leaderboard/open_llm_leaderboard",
96
+ description: "An application that writes and executes code from text instructions and supports many models.",
97
+ id: "akhaliq/anycoder",
98
+ },
99
+ {
100
+ description: "An application that builds websites from natural language prompts.",
101
+ id: "enzostvs/deepsite",
98
102
  },
99
103
  {
100
104
  description: "A leaderboard for comparing chain-of-thought performance of models.",
@@ -50,19 +50,19 @@ const taskData: TaskDataCustom = {
50
50
  models: [
51
51
  {
52
52
  description: "One of the most powerful image generation models that can generate realistic outputs.",
53
- id: "black-forest-labs/FLUX.1-dev",
53
+ id: "black-forest-labs/FLUX.1-Krea-dev",
54
54
  },
55
55
  {
56
- description: "A powerful yet fast image generation model.",
57
- id: "latent-consistency/lcm-lora-sdxl",
56
+ description: "A powerful image generation model.",
57
+ id: "Qwen/Qwen-Image",
58
58
  },
59
59
  {
60
- description: "Text-to-image model for photorealistic generation.",
61
- id: "Kwai-Kolors/Kolors",
60
+ description: "Powerful and fast image generation model.",
61
+ id: "ByteDance/SDXL-Lightning",
62
62
  },
63
63
  {
64
64
  description: "A powerful text-to-image model.",
65
- id: "stabilityai/stable-diffusion-3-medium-diffusers",
65
+ id: "ByteDance/Hyper-SD",
66
66
  },
67
67
  ],
68
68
  spaces: [
@@ -39,24 +39,20 @@ const taskData: TaskDataCustom = {
39
39
  ],
40
40
  models: [
41
41
  {
42
- description: "A prompt based, powerful TTS model.",
43
- id: "parler-tts/parler-tts-large-v1",
42
+ description: "Small yet powerful TTS model.",
43
+ id: "KittenML/kitten-tts-nano-0.1",
44
44
  },
45
45
  {
46
- description: "A powerful TTS model that supports English and Chinese.",
47
- id: "SWivid/F5-TTS",
46
+ description: "Bleeding edge TTS model.",
47
+ id: "ResembleAI/chatterbox",
48
48
  },
49
49
  {
50
50
  description: "A massively multi-lingual TTS model.",
51
51
  id: "fishaudio/fish-speech-1.5",
52
52
  },
53
53
  {
54
- description: "A powerful TTS model.",
55
- id: "OuteAI/OuteTTS-0.1-350M",
56
- },
57
- {
58
- description: "Small yet powerful TTS model.",
59
- id: "hexgrad/Kokoro-82M",
54
+ description: "A text-to-dialogue model.",
55
+ id: "nari-labs/Dia-1.6B-0626",
60
56
  },
61
57
  ],
62
58
  spaces: [
@@ -69,12 +65,12 @@ const taskData: TaskDataCustom = {
69
65
  id: "fishaudio/fish-speech-1",
70
66
  },
71
67
  {
72
- description: "An application that generates speech in different styles in English and Chinese.",
73
- id: "mrfakename/E2-F5-TTS",
68
+ description: "Performant TTS application.",
69
+ id: "ResembleAI/Chatterbox",
74
70
  },
75
71
  {
76
- description: "An application that synthesizes emotional speech for diverse speaker prompts.",
77
- id: "parler-tts/parler-tts-expresso",
72
+ description: "An application to compare different TTS models.",
73
+ id: "TTS-AGI/TTS-Arena-V2",
78
74
  },
79
75
  {
80
76
  description: "An application that generates podcast episodes.",
@@ -79,8 +79,8 @@ const taskData: TaskDataCustom = {
79
79
  id: "nvidia/Cosmos-1.0-Diffusion-7B-Text2World",
80
80
  },
81
81
  {
82
- description: "A robust model for video generation.",
83
- id: "Wan-AI/Wan2.1-T2V-1.3B",
82
+ description: "Very fast model for video generation.",
83
+ id: "Lightricks/LTX-Video-0.9.8-13B-distilled",
84
84
  },
85
85
  ],
86
86
  spaces: [
@@ -99,7 +99,7 @@ const taskData: TaskDataCustom = {
99
99
  ],
100
100
  summary:
101
101
  "Text-to-video models can be used in any application that requires generating consistent sequence of images from text. ",
102
- widgetModels: ["Wan-AI/Wan2.1-T2V-14B"],
102
+ widgetModels: ["Wan-AI/Wan2.2-TI2V-5B"],
103
103
  youtubeId: undefined,
104
104
  };
105
105
 
@@ -52,8 +52,9 @@ const taskData: TaskDataCustom = {
52
52
  id: "vidore/colqwen2-v1.0",
53
53
  },
54
54
  {
55
- description: "Very fast and efficient visual document retrieval model that works on five languages.",
56
- id: "marco/mcdse-2b-v1",
55
+ description:
56
+ "Very fast and efficient visual document retrieval model that can also take in other modalities like audio.",
57
+ id: "Tevatron/OmniEmbed-v0.1",
57
58
  },
58
59
  ],
59
60
  spaces: [
@@ -61,6 +62,10 @@ const taskData: TaskDataCustom = {
61
62
  description: "A leaderboard of visual document retrieval models.",
62
63
  id: "vidore/vidore-leaderboard",
63
64
  },
65
+ {
66
+ description: "Visual retrieval augmented generation demo based on ColQwen2 model.",
67
+ id: "vidore/visual-rag-tool",
68
+ },
64
69
  ],
65
70
  summary:
66
71
  "Visual document retrieval is the task of searching for relevant image-based documents, such as PDFs. These models take a text query and multiple documents as input and return the top-most relevant documents and relevancy scores as output.",
@@ -40,17 +40,17 @@ const taskData: TaskDataCustom = {
40
40
  models: [
41
41
  {
42
42
  description: "Solid zero-shot object detection model.",
43
- id: "IDEA-Research/grounding-dino-base",
43
+ id: "openmmlab-community/mm_grounding_dino_large_all",
44
44
  },
45
45
  {
46
46
  description: "Cutting-edge zero-shot object detection model.",
47
- id: "google/owlv2-base-patch16-ensemble",
47
+ id: "fushh7/LLMDet",
48
48
  },
49
49
  ],
50
50
  spaces: [
51
51
  {
52
- description: "A demo to try the state-of-the-art zero-shot object detection model, OWLv2.",
53
- id: "merve/owlv2",
52
+ description: "A demo to compare different zero-shot object detection models per output and latency.",
53
+ id: "ariG23498/zero-shot-od",
54
54
  },
55
55
  {
56
56
  description: