What problem does it solve? Generating high-quality text embeddings locally without relying on paid embedding APIs is difficult when you need semantic similarity, clustering, or retrieval for RAG pipelines. This Skill provides instructions and model guidance for producing embeddings with the sentence-transformers Python framework. ## Core Features & Use Cases - Local Embedding Generation: Encode sentences and documents into vectors using 5000+ pre-trained models running on your own hardware. - Semantic Search & Similarity: Compute cosine similarity and run top-k semantic search over encoded corpora. - Multilingual & Domain Models: Select from 100+ language models and domain-specific models for legal, scientific, and code text. - Use Case: Build a RAG pipeline by encoding your document corpus with all-mpnet-base-v2, then retrieve the most relevant passages for each user query via semantic search. ## Quick Start Use the sentence-transformers skill to generate embeddings for my document corpus and find the passages most similar to a given query.