[PR #2679] [CLOSED] Bump @xenova/transformers from 2.17.1 to 2.17.2 in /collector #4073

Closed
opened 2026-02-22 18:35:05 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/2679
Author: @dependabot[bot]
Created: 11/21/2024
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/collector/xenova/transformers-2.17.2


📝 Commits (1)

  • d62c658 Bump @xenova/transformers from 2.17.1 to 2.17.2 in /collector

📊 Changes

2 files changed (+5 additions, -5 deletions)

View changed files

📝 collector/package.json (+1 -1)
📝 collector/yarn.lock (+4 -4)

📄 Description

Bumps @xenova/transformers from 2.17.1 to 2.17.2.

Release notes

Sourced from @​xenova/transformers's releases.

2.17.2

🚀 What's new?

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/2679 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/21/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/collector/xenova/transformers-2.17.2` --- ### 📝 Commits (1) - [`d62c658`](https://github.com/Mintplex-Labs/anything-llm/commit/d62c65816d23f91067952a1f10790def68cf3540) Bump @xenova/transformers from 2.17.1 to 2.17.2 in /collector ### 📊 Changes **2 files changed** (+5 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `collector/package.json` (+1 -1) 📝 `collector/yarn.lock` (+4 -4) </details> ### 📄 Description Bumps [@xenova/transformers](https://github.com/xenova/transformers.js) from 2.17.1 to 2.17.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/xenova/transformers.js/releases"><code>@​xenova/transformers</code>'s releases</a>.</em></p> <blockquote> <h2>2.17.2</h2> <h2>🚀 What's new?</h2> <ul> <li> <p>Add support for MobileViTv2 in <a href="https://redirect.github.com/xenova/transformers.js/pull/721">xenova/transformers.js#721</a></p> <pre lang="js"><code>import { pipeline } from '@xenova/transformers'; <p>// Create an image classification pipeline const classifier = await pipeline('image-classification', 'Xenova/mobilevitv2-1.0-imagenet1k-256', { quantized: false, });</p> <p>// Classify an image const url = '<a href="https://huggingface.co/datasets/Xenova/transformers.js-docs/resolve/main/tiger.jpg">https://huggingface.co/datasets/Xenova/transformers.js-docs/resolve/main/tiger.jpg</a>'; const output = await classifier(url); // [{ label: 'tiger, Panthera tigris', score: 0.6491137742996216 }] </code></pre></p> <p>See <a href="https://huggingface.co/models?pipeline_tag=image-classification&amp;library=transformers.js&amp;other=fastvit&amp;sort=trending">here</a> for the full list of supported models.</p> </li> <li> <p>Add support for FastViT in <a href="https://redirect.github.com/xenova/transformers.js/pull/749">xenova/transformers.js#749</a></p> <pre lang="js"><code>import { pipeline } from '@xenova/transformers'; <p>// Create an image classification pipeline const classifier = await pipeline('image-classification', 'Xenova/fastvit_t12.apple_in1k', { quantized: false });</p> <p>// Classify an image const url = '<a href="https://huggingface.co/datasets/Xenova/transformers.js-docs/resolve/main/tiger.jpg">https://huggingface.co/datasets/Xenova/transformers.js-docs/resolve/main/tiger.jpg</a>'; const output = await classifier(url, { topk: 5 }); // [ // { label: 'tiger, Panthera tigris', score: 0.6649345755577087 }, // { label: 'tiger cat', score: 0.12454754114151001 }, // { label: 'lynx, catamount', score: 0.0010689536575227976 }, // { label: 'dhole, Cuon alpinus', score: 0.0010422508930787444 }, // { label: 'silky terrier, Sydney silky', score: 0.0009548701345920563 } // ] </code></pre></p> <p>See <a href="https://huggingface.co/models?pipeline_tag=image-classification&amp;library=transformers.js&amp;other=fastvit&amp;sort=trending">here</a> for the full list of supported models.</p> </li> <li> <p>Optimize FFT in <a href="https://redirect.github.com/xenova/transformers.js/pull/766">xenova/transformers.js#766</a></p> </li> <li> <p>Auto rotate image by <a href="https://github.com/KTibow"><code>@​KTibow</code></a> in <a href="https://redirect.github.com/xenova/transformers.js/pull/737">xenova/transformers.js#737</a></p> </li> <li> <p>Support reading data from blob URI by <a href="https://github.com/hans00"><code>@​hans00</code></a> in <a href="https://redirect.github.com/xenova/transformers.js/pull/645">xenova/transformers.js#645</a></p> </li> <li> <p>Add sequence post processor in <a href="https://redirect.github.com/xenova/transformers.js/pull/771">xenova/transformers.js#771</a></p> </li> <li> <p>Add model file name by <a href="https://github.com/NawarA"><code>@​NawarA</code></a> in <a href="https://redirect.github.com/xenova/transformers.js/pull/594">xenova/transformers.js#594</a></p> </li> <li> <p>Update pipelines.js to allow for <code>token_embeddings</code> as well by <a href="https://github.com/NikhilVerma"><code>@​NikhilVerma</code></a> in <a href="https://redirect.github.com/xenova/transformers.js/pull/770">xenova/transformers.js#770</a></p> </li> <li> <p>Remove old import from <code>stream/web</code> for <code>ReadableStream</code> in <a href="https://redirect.github.com/xenova/transformers.js/pull/752">xenova/transformers.js#752</a></p> </li> <li> <p>Update tokenizer playground by <a href="https://github.com/xenova"><code>@​xenova</code></a> in <a href="https://redirect.github.com/xenova/transformers.js/pull/717">xenova/transformers.js#717</a></p> </li> <li> <p>Use ungated version of mistral tokenizer by <a href="https://github.com/xenova"><code>@​xenova</code></a> in <a href="https://redirect.github.com/xenova/transformers.js/pull/718">xenova/transformers.js#718</a></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/huggingface/transformers.js/commit/da2688626d7812ad1ea47fd304c2072cc685051b"><code>da26886</code></a> [version] Update to 2.17.2</li> <li><a href="https://github.com/huggingface/transformers.js/commit/f542c52c94890f07c3598f498e465486a743970d"><code>f542c52</code></a> Update Next.js demos to 14.2.3 (<a href="https://redirect.github.com/xenova/transformers.js/issues/772">#772</a>)</li> <li><a href="https://github.com/huggingface/transformers.js/commit/64b3da608bf35247d19082824e5a1119063bbed9"><code>64b3da6</code></a> Update pipelines.js to allow for <code>token_embeddings</code> as well (<a href="https://redirect.github.com/xenova/transformers.js/issues/770">#770</a>)</li> <li><a href="https://github.com/huggingface/transformers.js/commit/250fcd7ada744cf5b8baebb42b6faf86a569440b"><code>250fcd7</code></a> Add model file name (<a href="https://redirect.github.com/xenova/transformers.js/issues/594">#594</a>)</li> <li><a href="https://github.com/huggingface/transformers.js/commit/db9250b3e814dc43b1cb35d9c2cd0feff30e3932"><code>db9250b</code></a> Add sequence post processor (<a href="https://redirect.github.com/xenova/transformers.js/issues/771">#771</a>)</li> <li><a href="https://github.com/huggingface/transformers.js/commit/e50f5686a2114210fb8b8ca2f6fa037454ecb1e8"><code>e50f568</code></a> Add support for FastViT (<a href="https://redirect.github.com/xenova/transformers.js/issues/749">#749</a>)</li> <li><a href="https://github.com/huggingface/transformers.js/commit/da0e9204c49839fa59a726b8d5f9bd76bf003666"><code>da0e920</code></a> Auto rotate image (<a href="https://redirect.github.com/xenova/transformers.js/issues/737">#737</a>)</li> <li><a href="https://github.com/huggingface/transformers.js/commit/8d166ca642121101dc8a903dbe38002129242276"><code>8d166ca</code></a> Optimize FFT (<a href="https://redirect.github.com/xenova/transformers.js/issues/766">#766</a>)</li> <li><a href="https://github.com/huggingface/transformers.js/commit/8963720585cb5b6e1a5455c02f754c205f28cd04"><code>8963720</code></a> Fix CI - update tests.yml (<a href="https://redirect.github.com/xenova/transformers.js/issues/768">#768</a>)</li> <li><a href="https://github.com/huggingface/transformers.js/commit/0af1e2f3c27df2d7564e810cd34e6d5364525630"><code>0af1e2f</code></a> Remove old import from <code>stream/web</code> for <code>ReadableStream</code> (<a href="https://redirect.github.com/xenova/transformers.js/issues/752">#752</a>)</li> <li>Additional commits viewable in <a href="https://github.com/xenova/transformers.js/compare/2.17.1...2.17.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@xenova/transformers&package-manager=npm_and_yarn&previous-version=2.17.1&new-version=2.17.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:35:05 -05:00
yindo closed this issue 2026-02-22 18:35:05 -05:00
yindo changed title from [PR #2679] Bump @xenova/transformers from 2.17.1 to 2.17.2 in /collector to [PR #2679] [CLOSED] Bump @xenova/transformers from 2.17.1 to 2.17.2 in /collector 2026-06-05 15:16:40 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4073