AGXIOME.Storage
0.0.3-beta
This is a prerelease version of AGXIOME.Storage.
dotnet add package AGXIOME.Storage --version 0.0.3-beta
NuGet\Install-Package AGXIOME.Storage -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.Storage" 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.Storage" Version="0.0.3-beta" />
<PackageReference Include="AGXIOME.Storage" />
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.Storage --version 0.0.3-beta
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AGXIOME.Storage, 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.Storage@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.Storage&version=0.0.3-beta&prerelease
#tool nuget:?package=AGXIOME.Storage&version=0.0.3-beta&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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
Links
- Website: https://agxiome.com
- Documentation: https://github.com/AGXIOME/AGXIOMA/tree/main/docs
- Cookbook: https://github.com/AGXIOME/AGXIOMA/tree/main/cookbook
- Demo Apps: https://github.com/AGXIOME/AGXIOMA/tree/main/apps
Version 0.0.2-beta — Proprietary license.
| Product | Versions 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.
-
net10.0
- AGXIOME.Shared (>= 0.0.3-beta)
- AWSSDK.DynamoDBv2 (>= 4.0.18.6)
- AWSSDK.S3 (>= 4.0.23.6)
- Azure.Storage.Blobs (>= 12.28.0)
- ClickHouse.Client (>= 7.14.0)
- ClosedXML (>= 0.105.0)
- CouchbaseNetClient (>= 3.9.2)
- CsvHelper (>= 33.1.0)
- Dapper (>= 2.1.72)
- DocumentFormat.OpenXml (>= 3.5.1)
- dotnet-etcd (>= 8.1.0)
- DuckDB.NET.Data.Full (>= 1.5.3)
- Elastic.Clients.Elasticsearch (>= 9.4.2)
- Google.Cloud.Firestore (>= 4.2.0)
- Google.Cloud.Storage.V1 (>= 4.14.0)
- Google.Protobuf (>= 3.35.0)
- Grpc.Core.Api (>= 2.80.0)
- Grpc.Net.Client (>= 2.80.0)
- Hazelcast.Net (>= 5.7.0)
- HtmlAgilityPack (>= 1.12.4)
- InfluxDB.Client (>= 5.0.0)
- Markdig (>= 1.2.0)
- Meilisearch (>= 0.18.0)
- Microsoft.Azure.Cosmos (>= 3.60.0)
- Microsoft.Data.SqlClient (>= 7.0.1)
- Microsoft.Data.Sqlite (>= 10.0.8)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.8)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.8)
- Microsoft.Graph (>= 6.1.0)
- Microsoft.Kiota.Abstractions (>= 2.0.0)
- MongoDB.Driver (>= 3.8.1)
- MySqlConnector (>= 2.5.0)
- Npgsql (>= 10.0.2)
- PdfPig (>= 0.1.14)
- Qdrant.Client (>= 1.18.1)
- RavenDB.Client (>= 7.2.2)
- RocksDbNative (>= 6.2.2)
- RocksDbSharp (>= 6.2.2)
- RtfPipe (>= 2.0.7677.4303)
- SharpCompress (>= 0.48.0)
- Snappier (>= 1.3.1)
- StackExchange.Redis (>= 2.13.1)
- Tesseract (>= 5.2.0)
- VersOne.Epub (>= 3.3.6)
- YamlDotNet (>= 17.1.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on AGXIOME.Storage:
| Package | Downloads |
|---|---|
|
AGXIOME.CLI
AGXIOME — .NET 10 agentic AI orchestration framework with CQRS, multi-model persistence, SignalR realtime, Zero Trust security, and full provider ecosystem (50+ LLM providers, 25 DB providers, 30 vector DBs). |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.0.3-beta | 99 | 6/2/2026 |
| 0.0.2-beta | 95 | 6/1/2026 |
| 0.0.1-beta | 85 | 5/31/2026 |