Skip to content

Release v3.2.1

Compare
Choose a tag to compare
@ssmith-pc ssmith-pc released this 25 Mar 17:48
· 76 commits to main since this release

What's Changed

  • Allow clients to tag requests with a source_tag by @ssmith-pc in #324

Source tag

The SDK now optionally allows setting a source tag when constructing a Pinecone client. The source tag allows requests to be associated with the source tag provided.

from pinecone import Pinecone

pc = Pinecone(api_key='your-key', source_tag='foo')

# requests initiated from pc connection are associated with source tag "foo"

or

from pinecone.grpc import PineconeGRPC

pc = PineconeGRPC(api_key='your-key', source_tag='foo')

New Contributors

Full Changelog: v3.2.0...v3.2.1