What problem does it solve? Building RAG and semantic search systems often leads to excessive embedding API costs, poor retrieval quality from bad chunking, and no visibility into latency or spend. This Skill provides decision frameworks and working code to cut embedding costs by 70-90% while maintaining retrieval quality. ## Core Features & Use Cases - Model Selection Framework: Compare OpenAI, Cohere, Voyage AI, and local sentence-transformers models by cost, dimensions, MTEB quality scores, and privacy requirements. - Content-Aware Chunking: Apply recursive, semantic, or fixed-size chunking strategies tuned per content type (code, documentation, legal, Q&A) with recommended sizes and overlap. - Caching & Batch Processing: Implement content-addressable caching with Redis or in-memory backends, plus parallel batch processing with rate limiting and checkpoint resume. - Use Case: You are embedding 50,000 document chunks for a RAG pipeline. Use this Skill to select text-embedding-3-small, chunk markdown at 800 characters with 100 overlap, and enable Redis caching to cut API spend by 60%. ## Quick Start Ask the AI to set up an embedding pipeline for your documents with caching, chunking, and cost monitoring using this Skill's examples and configuration guidance.