.NET C# Pinecone Nuget

Is there any C# Pinecone Nuget that i can use to do the requests, filters, etc?

You can use HttpClient and jsut call the api :slight_smile: you can create the request data with ExpandoObject()

var paramobj = new ExpandoObject() as IDictionary<string, Object>;
paramobj.Add(“vector”, embedding);
paramobj.Add(“includeMetadata”, true);
paramobj.Add(“topK”, 3 );

So far I don’t think there is already a nuget, but it should be available sooner or later :slight_smile:

I’ve been trying to find myself and there was none so I created an OSS library that replicates all features of the official ones: NuGet Gallery | Pinecone.NET 1.2.0

2 Likes

Thanks, I’m working with some testings and your library was really usefull! Best Regards.

1 Like