LMSupply.Embedder 0.42.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package LMSupply.Embedder --version 0.42.0
                    
NuGet\Install-Package LMSupply.Embedder -Version 0.42.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LMSupply.Embedder" Version="0.42.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LMSupply.Embedder" Version="0.42.0" />
                    
Directory.Packages.props
<PackageReference Include="LMSupply.Embedder" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LMSupply.Embedder --version 0.42.0
                    
#r "nuget: LMSupply.Embedder, 0.42.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package LMSupply.Embedder@0.42.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LMSupply.Embedder&version=0.42.0
                    
Install as a Cake Addin
#tool nuget:?package=LMSupply.Embedder&version=0.42.0
                    
Install as a Cake Tool

LMSupply.Embedder

Local text embedding for .NET with automatic model downloading.

Features

  • Zero-config: Models download automatically from HuggingFace
  • GPU Acceleration: CUDA, DirectML (Windows), CoreML (macOS)
  • Cross-platform: Windows, Linux, macOS
  • Simple API: Just 2 lines of code to get started

Quick Start

using LMSupply.Embedder;

// Load the default model
await using var model = await LocalEmbedder.LoadAsync("default");

// Generate embeddings
float[] embedding = await model.EmbedAsync("Hello, world!");
Console.WriteLine($"Dimensions: {embedding.Length}");

Available Models

Alias Model Dimensions Description
default BGE-Small-EN-v1.5 384 Best balance of speed and quality
fast all-MiniLM-L6-v2 384 Ultra-lightweight, fastest
quality BGE-Base-EN-v1.5 768 Higher accuracy
large Nomic-Embed-v1.5 768 8K context, top performer
multilingual E5-Base 768 100+ languages

GPU Acceleration

# NVIDIA GPU
dotnet add package Microsoft.ML.OnnxRuntime.Gpu

# Windows (AMD/Intel/NVIDIA)
dotnet add package Microsoft.ML.OnnxRuntime.DirectML
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on LMSupply.Embedder:

Package Downloads
FluxIndex.MCP

MCP (Model Context Protocol) server implementation for FluxIndex RAG services

FluxIndex.Providers.LMSupply

LMSupply local AI embedding, reranking, and text completion provider for FluxIndex

IronHive.Host

IronHive Host - reusable AI agent host SDK (agent loop, tools, session, provider integrations) for CLI, server, and embedded surfaces

FileFlux.Providers.LMSupply

LMSupply local ONNX model provider for FileFlux: document analysis (summarization, metadata extraction), embeddings, OCR, and image captioning — no API key required.

IronHive.Cli.Core

IronHive CLI Core - Agent loop, tools, session management, and provider integrations for building AI-powered CLI tools

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.66.1 0 9/16/2026
0.66.0 69 9/16/2026
0.65.1 351 9/13/2026
0.65.0 240 9/12/2026
0.64.0 141 9/11/2026
0.63.0 140 9/11/2026
0.62.0 164 9/10/2026
0.61.0 191 9/9/2026
0.60.0 139 9/9/2026
0.59.1 173 9/8/2026
0.59.0 151 9/8/2026
0.58.0 189 9/7/2026
0.57.0 148 9/7/2026
0.56.0 118 9/7/2026
0.55.5 94 9/7/2026
0.55.4 248 9/7/2026
0.55.0 220 9/5/2026
0.45.0 95 9/3/2026
0.44.0 100 9/3/2026
0.42.0 150 8/18/2026
Loading failed