What problem does it solve? Generating high-quality text embeddings locally for semantic search, clustering, and retrieval-augmented generation typically requires choosing among thousands of models and writing boilerplate encoding code. This Skill provides ready-to-use patterns for the Sentence Transformers framework so you can produce embeddings without API costs or external services. ## Core Features & Use Cases - Embedding Generation: Encode sentences and documents into dense vectors using 5000+ pre-trained models like all-MiniLM-L6-v2 and all-mpnet-base-v2. - Semantic Search & Similarity: Compute cosine similarity and run top-k semantic search over document corpora with built-in utilities. - Fine-tuning & Integration: Fine-tune models on domain data with InputExample and loss functions, and integrate with LangChain or LlamaIndex vector stores. - Use Case: Build a multilingual RAG system by encoding your document corpus with paraphrase-multilingual-mpnet-base-v2, storing embeddings in Chroma, and retrieving relevant passages for user queries. ## Quick Start Use the sentence-transformers skill to generate embeddings for my document corpus and find the most semantically similar passages to a query.