From 396630787d5ceddac49568380ff32418b1479d7c Mon Sep 17 00:00:00 2001
From: HuggingFaceInfra <148469759+HuggingFaceInfra@users.noreply.github.com>
Date: Thu, 25 Sep 2025 11:03:06 +0200
Subject: [PATCH 01/19] Update Inference Providers documentation (automated)
(#1953)
Co-authored-by: Wauplin <11801849+Wauplin@users.noreply.github.com>
---
docs/inference-providers/providers/cerebras.md | 7 +++++--
docs/inference-providers/providers/cohere.md | 7 +++++--
docs/inference-providers/providers/fal-ai.md | 7 +++++--
docs/inference-providers/providers/featherless-ai.md | 7 +++++--
docs/inference-providers/providers/fireworks-ai.md | 7 +++++--
docs/inference-providers/providers/groq.md | 7 +++++--
docs/inference-providers/providers/hf-inference.md | 11 +++++++----
docs/inference-providers/providers/hyperbolic.md | 7 +++++--
docs/inference-providers/providers/nebius.md | 7 +++++--
docs/inference-providers/providers/novita.md | 9 ++++++---
docs/inference-providers/providers/nscale.md | 7 +++++--
docs/inference-providers/providers/publicai.md | 7 +++++--
docs/inference-providers/providers/replicate.md | 7 +++++--
docs/inference-providers/providers/sambanova.md | 7 +++++--
docs/inference-providers/providers/scaleway.md | 7 +++++--
docs/inference-providers/providers/together.md | 7 +++++--
.../inference-providers/tasks/audio-classification.md | 7 +++++--
.../tasks/automatic-speech-recognition.md | 7 +++++--
docs/inference-providers/tasks/chat-completion.md | 2 +-
docs/inference-providers/tasks/feature-extraction.md | 9 ++++++---
docs/inference-providers/tasks/fill-mask.md | 9 ++++++---
.../inference-providers/tasks/image-classification.md | 7 +++++--
docs/inference-providers/tasks/image-segmentation.md | 7 +++++--
docs/inference-providers/tasks/image-text-to-text.md | 9 ++++++---
docs/inference-providers/tasks/image-to-image.md | 7 +++++--
docs/inference-providers/tasks/object-detection.md | 7 +++++--
docs/inference-providers/tasks/question-answering.md | 7 +++++--
docs/inference-providers/tasks/summarization.md | 7 +++++--
.../tasks/table-question-answering.md | 7 +++++--
docs/inference-providers/tasks/text-classification.md | 10 ++++++++--
docs/inference-providers/tasks/text-generation.md | 7 +++++--
docs/inference-providers/tasks/text-to-image.md | 7 +++++--
docs/inference-providers/tasks/text-to-video.md | 7 +++++--
.../inference-providers/tasks/token-classification.md | 7 +++++--
docs/inference-providers/tasks/translation.md | 8 +++++---
.../tasks/zero-shot-classification.md | 7 +++++--
36 files changed, 185 insertions(+), 78 deletions(-)
diff --git a/docs/inference-providers/providers/cerebras.md b/docs/inference-providers/providers/cerebras.md
index 4235ba8f0e..10a030964b 100644
--- a/docs/inference-providers/providers/cerebras.md
+++ b/docs/inference-providers/providers/cerebras.md
@@ -19,8 +19,11 @@ For more details, check out the `generate.ts` script: https://github.com/hugging
# Cerebras
-> [!TIP]
-> All supported Cerebras models can be found [here](https://huggingface.co/models?inference_provider=cerebras&sort=trending)
+
+
+
+
-
-
-
-
+
+
+
+
diff --git a/docs/hub/xet/deduplication.md b/docs/hub/xet/deduplication.md
new file mode 100644
index 0000000000..0d2855e5e5
--- /dev/null
+++ b/docs/hub/xet/deduplication.md
@@ -0,0 +1,10 @@
+## Deduplication
+
+Xet-enabled repositories utilize [content-defined chunking (CDC)](https://huggingface.co/blog/from-files-to-chunks) to deduplicate on the level of bytes (~64KB of data, also referred to as a "chunk"). Each chunk is identified by a rolling hash that determines chunk boundaries based on the actual file contents, making it resilient to insertions or deletions anywhere in the file. When a file is uploaded to a Xet-backed repository using a Xet-aware client, its contents are broken down into these variable-sized chunks. Only new chunks not already present in Xet storage are kept after chunking, everything else is discarded.
+
+To avoid the overhead of communicating and managing at the level of chunks, new chunks are grouped together in [64MB blocks](https://huggingface.co/blog/from-chunks-to-blocks#scaling-deduplication-with-aggregation) and uploaded. Each block is stored once in a content-addressed store (CAS), keyed by its hash.
+
+The Hub's [current recommendation](https://huggingface.co/docs/hub/storage-limits#recommendations) is to limit files to 20GB. At a 64KB chunk size, a 20GB file has 312,500 chunks, many of which go unchanged from version to version. Git LFS is designed to notice only that a file has changed and store the entirety of that revision. By deduplicating at the level of chunks, the Xet backend enables storing only the modified content in a file (which might only be a few KB or MB) and securely deduplicates shared blocks across repositories. For the large binary files found in Model and Dataset repositories, this provides significant improvements to file transfer times.
+
+For more details, refer to the [From Files to Chunks](https://huggingface.co/blog/from-files-to-chunks) and [From Chunks to Blocks](https://huggingface.co/blog/from-chunks-to-blocks) blog posts, or the [Git is for Data](https://www.cidrdb.org/cidr2023/papers/p43-low.pdf) paper by Low et al. that served as the launch point for XetHub prior to being acquired by Hugging Face.
+
From 51eab755ae8bbd0680d5b33c4101a527b8ac9fd1 Mon Sep 17 00:00:00 2001
From: Rajat Arya