Add support for ModernBert in https://github.com/huggingface/transformers.js/pull/1104. Check out the blog post for more information!
Example:
import { pipeline } from '@huggingface/transformers';
const pipe = await pipeline('fill-mask', 'answerdotai/ModernBERT-base');
const answer = await pipe('The capital of France is [MASK].');
console.log(answer);
Full Changelog: https://github.com/huggingface/transformers.js/compare/3.2.0...3.2.1
Fetched April 7, 2026