112 wires and counting

$ follow Hugging Face

Keep up with Hugging Face in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-05-19
stories 54

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

TRANSFORMERS FIXES RAG PIPELINE CRASHES; LEROBOT SHIPS SEEED ROBOT SUPPORT

By RepoJournal · Filed · About Hugging Face · Composed from the cited sources · methodology

Transformers patched three critical bugs breaking RAG documentation examples and generation, while LeRobot added native Seeed Studio reBot arm integration that replaces fragile plugin packages.

The transformers team landed three urgent fixes across the RAG stack. First, documentation examples that crash on current transformers are now corrected [1], replacing deprecated checkpoints and removed API calls that broke the RAG retriever pipeline. Second, a missing AttributeError guard in RAG generate() [4] prevents crashes when RagConfig lacks num_return_sequences and num_beams fields. Third, OpenTelemetry instrumentation was removed [2] to simplify the codebase, and deimv2 model parallelism test failures are now fixed [3]. On the LeRobot side, Seeed Studio's reBot B601-DM arm is now a first-class citizen [5], eliminating the need for fragile out-of-tree plugin packages and providing both single-arm and bimanual follower configurations. Separately, LeRobot's reward configs now allow zero-shot models to skip optimizer presets [6], and accelerate fixed tied weight handling in quantized models [7] where lm_head wasn't staying in fp32. Repo2RLEnv made the LLM flag optional for mining pipelines [8] and corrected bootstrap test command generation [9]. Documentation fixes landed across accelerate [10] and lerobot [11].

Action items

References

  1. [1] Fix remaining RAG doc examples that crash on current transformers (#46044) ↗ huggingface/transformers
  2. [2] [CB] Remove OpenTelemetry (#45984) ↗ huggingface/transformers
  3. [3] fix model parallel issues for deimv2 ↗ huggingface/transformers
  4. [4] Fix AttributeError in RAG generate() for missing config fields (#46035) ↗ huggingface/transformers
  5. [5] feat(robots): natively integrate Seeed Studio reBot B601-DM arm ↗ huggingface/lerobot
  6. [6] Allow zero-shot reward configs without optimizer presets ↗ huggingface/lerobot
  7. [7] Fix `keep_in_fp32_modules` not working for tied weights in `load_and_quantize_model` ↗ huggingface/accelerate
  8. [8] make llm flag optional for mining pipelines ↗ huggingface/Repo2RLEnv
  9. [9] fix: bootstrap saves executable test_cmds; normalize strips -q ↗ huggingface/Repo2RLEnv
  10. [10] docs: Fix docstring of `fsdp2_prepare_auto_wrap_policy` (#4037) ↗ huggingface/accelerate
  11. [11] Mention the new Lance LeRobotDataset implementation in the docs ↗ huggingface/lerobot

Quick answers

What shipped in Hugging Face on May 19, 2026?
Transformers patched three critical bugs breaking RAG documentation examples and generation, while LeRobot added native Seeed Studio reBot arm integration that replaces fragile plugin packages. In total, 27 commits and 27 pull requests landed.
Who contributed to Hugging Face on May 19, 2026?
6 developers shipped this update, including kaixuanliu, pkooij, s1lent4gnt, jiqing-feng, sergiopaniego, and lhoestq.
What were the notable Hugging Face updates?
Fix remaining RAG doc examples that crash on current transformers (#46044), [CB] Remove OpenTelemetry (#45984), and fix model parallel issues for deimv2.