v0.4.1
What's Changed
- Adds optional source_tag to User-Agent by @ssmith-pc in #16
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.
import "github.com/pinecone-io/go-pinecone/pinecone"
client, err := pinecone.NewClient(pinecone.NewClientParams{
ApiKey: "my-api-key",
SourceTag: "foo",
})
// requests initiated from client connection are associated with source tag "foo"
New Contributors
- @ssmith-pc made their first contribution in #16
Full Changelog: v0.4.0...v0.4.1