Skip to content

v0.4.1

Compare
Choose a tag to compare
@ssmith-pc ssmith-pc released this 27 Mar 19:06
· 62 commits to main since this release
017d0a4

What's Changed

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

Full Changelog: v0.4.0...v0.4.1