Soenneker.Pinecone.HttpClients 4.0.115

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

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Pinecone.HttpClients

Provides a cached, authenticated HttpClient for a Pinecone Nexus deployment.

Installation

dotnet add package Soenneker.Pinecone.HttpClients

Configuration

{
  "Pinecone": {
    "ApiKey": "your-api-key",
    "ClientBaseUrl": "https://your-nexus-host/api/"
  }
}

The client sends Pinecone:ApiKey in X-Pinecone-Api-Key. To use a Nexus session token instead, set Pinecone:AuthHeaderName to Authorization and Pinecone:AuthHeaderValueTemplate to Bearer {token}.

Usage

using Soenneker.Pinecone.HttpClients.Abstract;
using Soenneker.Pinecone.HttpClients.Registrars;

services.AddPineconeOpenApiHttpClientAsSingleton();

IPineconeOpenApiHttpClient provider = serviceProvider
    .GetRequiredService<IPineconeOpenApiHttpClient>();

HttpClient client = await provider.Get(cancellationToken);
HttpResponseMessage response = await client.GetAsync("nexus/project", cancellationToken);
response.EnsureSuccessStatusCode();

The provider owns the cached client and removes it when the provider is disposed. Scoped registrations use separate cache entries, so disposing one scope does not invalidate another scope's client.

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 (1)

Showing the top 1 NuGet packages that depend on Soenneker.Pinecone.HttpClients:

Package Downloads
Soenneker.Pinecone.OpenApiClientUtil

Provides a cached, configured client for the Pinecone Nexus API.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.115 42 9/17/2026
4.0.114 36 9/16/2026
4.0.113 48 9/16/2026
4.0.112 50 9/16/2026
4.0.111 84 9/15/2026
4.0.110 106 9/13/2026
4.0.109 97 9/13/2026
4.0.108 104 9/13/2026
4.0.107 103 9/12/2026
4.0.106 98 9/12/2026
4.0.105 85 9/12/2026
4.0.104 121 9/9/2026
4.0.103 91 9/9/2026
4.0.102 104 9/9/2026
4.0.101 100 9/8/2026
4.0.100 117 9/8/2026
4.0.99 100 9/8/2026
4.0.98 112 9/7/2026
4.0.97 107 9/7/2026
4.0.96 98 9/7/2026
Loading failed