Release v3.2.1
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
- @ssmith-pc made their first contribution in #324
Full Changelog: v3.2.0...v3.2.1