dependabot[bot] opened a new pull request, #2550: URL: https://github.com/apache/iceberg-rust/pull/2550
Bumps [huggingface-hub](https://github.com/huggingface/huggingface_hub) from 1.15.0 to 1.16.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/huggingface/huggingface_hub/releases">huggingface-hub's releases</a>.</em></p> <blockquote> <h2>[v1.16.1] [Hot-fix] [Inference] Remove Together ASR task to drop urllib3 dependency</h2> <ul> <li>[Hot-fix] [Inference] Remove Together ASR task to drop urllib3 dependency by <a href="https://github.com/Wauplin"><code>@Wauplin</code></a> in <a href="https://redirect.github.com/huggingface/huggingface_hub/issues/4248">#4248</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/huggingface/huggingface_hub/compare/v1.16.0...v1.16.1">https://github.com/huggingface/huggingface_hub/compare/v1.16.0...v1.16.1</a></p> <h2>[v1.16.0] Together goes multimodal on Inference Providers, CLI improvements, and token security</h2> <h2>:zap: Together goes multimodal on Inference Providers</h2> <p>Together now supports five additional task types beyond chat and text-to-image on Inference Providers:</p> <ul> <li><code>feature_extraction</code></li> <li><code>text_to_speech</code></li> <li><del><code>automatic_speech_recognition</code></del> <strong>EDIT:</strong> hot-fix <strong>v1.16.1</strong> removed this task (see <a href="https://redirect.github.com/huggingface/huggingface_hub/pull/4248">huggingface/huggingface_hub#4248</a>) to fix a dependency issue. We will add it back in a future release.</li> <li><code>image_to_image</code></li> <li><code>text_to_video</code></li> </ul> <pre lang="python"><code>from huggingface_hub import InferenceClient <p>client = InferenceClient(provider="together")</p> <h1>Embeddings</h1> <p>embeddings = client.feature_extraction("Hello world", model="intfloat/multilingual-e5-large-instruct")</p> <h1>Text-to-speech</h1> <p>audio = client.text_to_speech("Hello world", model="hexgrad/Kokoro-82M", extra_body={'voice': 'af_heart'})</p> <h1>Text-to-video</h1> <p>video = client.text_to_video("A cat on the moon", model="Wan-AI/Wan2.2-T2V-A14B") </code></pre></p> <ul> <li>[Inference] Add embeddings, TTS, ASR, image-to-image and video tasks for Together by <a href="https://github.com/nbroad1881"><code>@nbroad1881</code></a> in <a href="https://redirect.github.com/huggingface/huggingface_hub/issues/4164">#4164</a></li> </ul> <p>📚 <strong>Documentation:</strong> <a href="https://huggingface.co/docs/huggingface_hub/main/en/guides/inference">Inference guide</a></p> <h2>🔗 Centralized <code>hf://</code> URI parsing</h2> <p>All scattered ad-hoc <code>hf://</code> URI parsers throughout the codebase have been consolidated onto the new <code>parse_hf_uri</code>/<code>parse_hf_mount</code> helpers. This brings consistent parsing behavior, a new <code>is_hf_uri</code> public helper for validating URIs, and proper handling of <code>@</code> in filenames (now treated as literal). The CLI error handler now catches <code>HfUriError</code> and displays a clean message instead of a raw traceback.</p> <h3>🚨 Breaking Changes</h3> <p>This migration includes several breaking changes: <code>BucketUrl.handle</code> has been renamed to <code>BucketUrl.uri</code> (type changed from <code>str</code> to <code>HfUri</code>, use <code>.to_uri()</code> for the string form), <code>Volume.to_hf_handle()</code> has been renamed to <code>Volume.to_uri()</code>, single-segment repo IDs (e.g. <code>gpt2</code>) are no longer supported in <code>HfFileSystem</code> paths or CLI <code>-v</code> flags — you must use the <code>namespace/name</code> format instead.</p> <ul> <li>[Core] Migrate hf:// URI parsing to centralized parse_hf_uri by <a href="https://github.com/Wauplin"><code>@Wauplin</code></a> in <a href="https://redirect.github.com/huggingface/huggingface_hub/issues/4189">#4189</a></li> </ul> <p>📚 <strong>Documentation:</strong> <a href="https://huggingface.co/docs/huggingface_hub/main/en/guides/cli">CLI guide</a> | <a href="https://huggingface.co/docs/huggingface_hub/main/en/guides/buckets">Buckets guide</a></p> <h2>🖥️ CLI</h2> <h3>Global <code>--no-truncate</code> flag for CLI tables</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/huggingface/huggingface_hub/commit/ff0cc602c3fa77edaee06a58b9922dd79e49c94c"><code>ff0cc60</code></a> Release: v1.16.1</li> <li><a href="https://github.com/huggingface/huggingface_hub/commit/a77e961e5fcadd2f2dfe3b13d4532678239a4e2d"><code>a77e961</code></a> [Inference] Remove Together ASR task to drop urllib3 dependency (<a href="https://redirect.github.com/huggingface/huggingface_hub/issues/4248">#4248</a>)</li> <li><a href="https://github.com/huggingface/huggingface_hub/commit/c68a383f68f2ad24393a46424a3a77bc12e9bab6"><code>c68a383</code></a> Release: v1.16.0</li> <li><a href="https://github.com/huggingface/huggingface_hub/commit/fa7fc45f9dcbc3af9ce65ea0d591419ab5dbb1b4"><code>fa7fc45</code></a> Release: v1.16.0.rc0</li> <li><a href="https://github.com/huggingface/huggingface_hub/commit/06d6990ab8231b53bb4ad708b637a677b7aa404b"><code>06d6990</code></a> [Jobs] Add <code>ephemeral_storage</code> field to <code>JobHardware</code> (<a href="https://redirect.github.com/huggingface/huggingface_hub/issues/4233">#4233</a>)</li> <li><a href="https://github.com/huggingface/huggingface_hub/commit/2618a543b72279936e30da77190f9bf227b70127"><code>2618a54</code></a> [CLI] Surface job runtime fields in ps + inspect (<a href="https://redirect.github.com/huggingface/huggingface_hub/issues/4211">#4211</a>)</li> <li><a href="https://github.com/huggingface/huggingface_hub/commit/356b712d59bc855da03508919039f9409c5053d1"><code>356b712</code></a> [CI] make test_model_info_with_security for robust (<a href="https://redirect.github.com/huggingface/huggingface_hub/issues/4246">#4246</a>)</li> <li><a href="https://github.com/huggingface/huggingface_hub/commit/609e64ae341cd882f0846cfbd6f352e62d376fde"><code>609e64a</code></a> [CLI] Raise error when both --local-dir and --cache-dir are provided (<a href="https://redirect.github.com/huggingface/huggingface_hub/issues/4245">#4245</a>)</li> <li><a href="https://github.com/huggingface/huggingface_hub/commit/b4fd28d838273a1a2839666900e50020de2bed85"><code>b4fd28d</code></a> [Download] Fix snapshot bar inflation on http_get retry (<a href="https://redirect.github.com/huggingface/huggingface_hub/issues/4209">#4209</a>)</li> <li><a href="https://github.com/huggingface/huggingface_hub/commit/a117e68b1e655a48ad3bbbf216f69d375b151338"><code>a117e68</code></a> [CLI] Expose linked repos in PaperInfo (<a href="https://redirect.github.com/huggingface/huggingface_hub/issues/4240">#4240</a>)</li> <li>Additional commits viewable in <a href="https://github.com/huggingface/huggingface_hub/compare/v1.15.0...v1.16.1">compare view</a></li> </ul> </details> <br /> [](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 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> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
