AGXIOME.Embedders 0.0.3-beta

This is a prerelease version of AGXIOME.Embedders.
dotnet add package AGXIOME.Embedders --version 0.0.3-beta
                    
NuGet\Install-Package AGXIOME.Embedders -Version 0.0.3-beta
                    
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="AGXIOME.Embedders" Version="0.0.3-beta" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AGXIOME.Embedders" Version="0.0.3-beta" />
                    
Directory.Packages.props
<PackageReference Include="AGXIOME.Embedders" />
                    
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 AGXIOME.Embedders --version 0.0.3-beta
                    
#r "nuget: AGXIOME.Embedders, 0.0.3-beta"
                    
#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 AGXIOME.Embedders@0.0.3-beta
                    
#: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=AGXIOME.Embedders&version=0.0.3-beta&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=AGXIOME.Embedders&version=0.0.3-beta&prerelease
                    
Install as a Cake Tool

AGXIOME — Agentic Orchestration Framework for .NET 10

Build AI agents, teams, and workflows with 350+ ready-to-use providers.


Installation

dotnet add package AGXIOME.Core --prerelease

This pulls in AGXIOME.Shared. Add specific packages for extra features:

dotnet add package AGXIOME.LLMWIKY --prerelease      # 50+ LLM providers
dotnet add package AGXIOME.Storage --prerelease       # CQRS + 30 vector DBs
dotnet add package AGXIOME.Orchestration --prerelease # Multi-agent orchestrator
dotnet add package AGXIOME.Toolkits --prerelease      # 161 prebuilt integrations

Quick Start

using AGXIOME.Core;
using AGXIOME.Shared.Models;

// DeepSeek (cheapest, excellent quality)
var agent = AgxiomeBuilder.Agent("assistant")
    .UseDeepSeek("sk-your-key", "deepseek-chat")
    .WithSystemPrompt("You are a helpful assistant.")
    .Build();

var response = await agent.RunAsync(new AgentRequest("Capital of France?"));
Console.WriteLine(response.Content); // Paris

Ollama (local, free, no API key)

ollama pull llama3.2
var agent = AgxiomeBuilder.Agent("assistant").UseOllama("llama3.2").Build();

OpenAI

var agent = AgxiomeBuilder.Agent("assistant").UseOpenAI("sk-...", "gpt-4o-mini").Build();

Anthropic Claude

var agent = AgxiomeBuilder.Agent("assistant").UseAnthropic("sk-ant-...", "claude-sonnet-4-20250514").Build();

Streaming

await foreach (var chunk in agent.RunStreamAsync(new AgentRequest("Explain quantum computing")))
    Console.Write(chunk.Content);

Team — ForestSwarm (Domain-Based Routing)

using AGXIOME.Core.Patterns;

builder.Services.AddAgxiome()
    .UseProvider("deepseek", "deepseek-chat")
    .AddForestSwarm("support", forest =>
    {
        forest.AddTree("billing")
            .AddAgent("billing-specialist", "You handle payments.")
            .WithKeywords("invoice", "payment", "refund");

        forest.AddTree("technical")
            .AddAgent("tech-specialist", "You handle API errors.")
            .WithKeywords("error", "api", "crash", "timeout");
    });

Key Features

  • 50+ LLM providers: OpenAI, Anthropic, DeepSeek, Ollama, Gemini, Groq, Mistral
  • 25 DB providers: PostgreSQL, SQLite, SQL Server, Redis, MongoDB, DynamoDB, CosmosDB
  • 30 vector DBs: Pinecone, Qdrant, Milvus, pgvector, Chroma, Weaviate, Vespa
  • 25 embedders: OpenAI, Cohere, ONNX (local, zero API key), Ollama
  • 28 document readers: PDF, DOCX, XLSX, Markdown, HTML, EPUB
  • 161 prebuilt toolkits: Slack, GitHub, Stripe, Jira, Salesforce, Google Calendar
  • Realtime: SignalR hubs with Redis backplane + reconnect
  • Security: ECDSA, HMAC, RBAC, audit trail, guardrails, HITL
  • CQRS-first: Command/Query separation with Unit of Work
  • Zero Trust Client: Server-authoritative, client is display-only


Version 0.0.2-beta — Proprietary license.

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.3-beta 79 6/2/2026
0.0.2-beta 71 6/1/2026
0.0.1-beta 70 5/31/2026