Skip to main content

Overview

HuggingFace provides access to thousands of open-source embedding models through their Inference API.

Quick Start

CLI Usage

Setup

Model-name lookup in get_dimensions() is now case-insensitive and matches longest keys first as of PraisonAI PR #3027:
  • all-MiniLM-L6-v2 and sentence-transformers/all-MiniLM-L6-v2 both resolve to 384 (was 1536).
  • voyage/voyage-3-lite resolves to 512 (was 1024voyage-3 was matching first).
Earlier releases returned the wrong dimension for these names, producing dimension-mismatch errors on memory / RAG upsert.

Batch Embeddings