Tessera.Client 0.3.0

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

Tessera.Client

Enterprise-grade .NET SDK for Tessera vector database.

Features

  • gRPC-based communication for high performance
  • Multi-tenancy support
  • Permission-aware search
  • Hybrid search capabilities
  • Built-in resilience with retry policies

Installation

dotnet add package Tessera.Client

Quick Start

using Tessera.Client;

// Create client
var options = new TesseraClientOptions
{
    Endpoint = "https://your-tessera-instance:50051"
};

using var client = new TesseraClient(options);

// Insert a vector
var insertRequest = new InsertRequest
{
    TenantId = "my-tenant"
};
insertRequest.Vector.AddRange(new float[] { 0.1f, 0.2f, 0.3f });

var response = await client.InsertAsync(insertRequest);
Console.WriteLine($"Inserted vector with ID: {response.Id}");

// Search for similar vectors
var searchRequest = new SearchRequest
{
    TenantId = "my-tenant",
    K = 10
};
searchRequest.Vector.AddRange(queryVector);

var results = await client.SearchAsync(searchRequest);
foreach (var result in results.Results)
{
    Console.WriteLine($"ID: {result.Id}, Distance: {result.Distance}");
}

Requirements

  • .NET 9.0 or later
  • Tessera vector database instance

License

MIT License - see LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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 (2)

Showing the top 2 NuGet packages that depend on Tessera.Client:

Package Downloads
Tessera.KernelMemory

Kernel Memory connector for Tessera vector database - enables RAG and semantic memory with Tessera backend.

Tessera.SemanticKernel

Semantic Kernel vector store connector for Tessera vector database - enables AI agents and memory with Tessera backend.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.3.0 126 1/13/2026
0.2.0 138 1/10/2026
0.1.2 227 12/3/2025
0.1.1 219 12/3/2025
0.1.0 224 12/3/2025