v2.2.0 Release
sourceTag
added to PineconeConfiguration
The SDK now supports optionally passing a sourceTag
when instantiating the Pinecone client. This tag allows requests made by the SDK to be attributed via the user-agent.
import { Pinecone } from '@pinecone-database/pinecone';
const pc = new Pinecone({ apiKey: 'my-api-key', sourceTag: 'my-source-tag' });
// Requests made from the client will now have this tag applied to the user-agent
What's Changed
- Add
sourceTag
toPineconeConfiguration
andadditionalHeaders
to data plane calls by @austin-denoble in #197
Full Changelog: v2.1.1...v2.2.0