Hugging Face has released Sentence Transformers 6.0, introducing MultiVectorEncoder, a new model type that brings ColBERT-style late-interaction retrieval to the popular open-source library. The update enables developers to load PyLate checkpoints and Stanford-NLP ColBERT models directly through a unified API, alongside support for visual document retrieval models, significantly expanding the framework's retrieval capabilities. Unlike traditional dense embedding models that compress entire texts into single vectors, multi-vector models retain one vector per token. The library uses the MaxSim operator to score interactions between queries and documents—for each query token, it identifies the highest-similarity match among all document tokens and sums these peaks across the query. This approach preserves exact-match precision for product codes and identifiers while enabling complex multi-requirement queries to find better matches, where dense models would force competing criteria into a single vector. The release marks a major advance in visual document retrieval, matching text queries directly against page images without optical character recognition. Available via standard `pip install -U sentence-transformers`, the new MultiVectorEncoder targets retrieval-augmented generation, semantic search, and document understanding applications, trading larger index sizes for substantially improved retrieval quality.