Pinecone .NET SDK is a C# library that provides a convenient way to interact with Pinecone's Vector Indexing and Search services. This library simplifies the process of connecting, indexing, and searching for vectors within the Pinecone ecosystem. The SDK is available as a package on nuget.org under the name pinecone_sdk
.
- Easy integration with Pinecone's Vector Indexing and Search services
- Easy to use with GPT implementations
- Asynchronous API support for better performance
- Comprehensive error handling and logging
To install the Pinecone .NET SDK, simply add the pinecone_sdk
package from nuget.org to your .NET project.
Using Package Manager:
Install-Package pinecone_sdk
Using .NET CLI:
dotnet add package pinecone_sdk
To get started with the Pinecone .NET SDK, follow these steps:
Import the namespace:
using pinecone;
Create a Pinecone client: Replace <YOUR_API_KEY> with your actual Pinecone API key and with the environment of created index.
var pineconeClient = new PineconeProvider("<YOUR_API_KEY>","<Environment>");
For more detailed information on the Pinecone .NET SDK, please visit the official documentation.
If you encounter any issues or require further assistance, please raise an issue in the GitHub repository.
This SDK is distributed under the MIT License.