Releases: pinecone-io/cli
Releases · pinecone-io/cli
v0.0.52
Deletion Protection and Configuring Indexes
The Pinecone CLI now supports the ability to configure indexes with deletionProtection
enabled. The pinecone index configure
command has also been added to support configuring indexes after creation.
pinecone index list
pinecone index create-pod -n "test-cli-create-pod" -d 3 -m "cosine" -e "us-east-1-aws" -t "p1.x1" --deletion_protection "enabled"
pinecone index configure -n "test-cli-create_pod" -p "disabled"
pinecone index describe --name test-cli-create-pod
PINECONE_API_KEY
and PINECONE_ENVIRONMENT
The CLI also now supports additional environment variables for configuration:
PINECONE_API_KEY
will be read from the environment and allow interacting with indexes and collections without needing to callpinecone login
orpinecone config set-api-key
.PINECONE_ENVIRONMENT
allows setting eitherproduction
orstaging
and avoiding needing to callpinecone config set-environment
.
For both of the above configuration values, if there is an environment variable set and you call the corresponding pinecone config
command, it will override whatever is set in the environment.
Changelog
v0.0.51
v0.0.50
What's Changed
- Format, lint, cleanup codebase by @aulorbe in #14
- Fix broken oauth
login
flow by @austin-denoble in #15
New Contributors
Full Changelog: v0.0.49...v0.0.50
v0.0.49
v0.0.48
v0.0.47
Changelog
- 895319d add helper function for manipulating headers for outgoing requests - supports applying specific headers necessary for assistants routes when using OAuth
- dd6296f add simple spinner to chat completion requests
- 584300a update authorization flows allowing assistants to share the same auth paths as indexes - login vs. api key should both work for both if provided, get rid of the boolean controlling auth
- 3898d7f update flag from name to assistant for chat and describe commands
- 702d904 update network calls to allow assistant requests to use the OAuth token if login flow was used, update headers applied to outgoing requests
v0.0.46
v0.0.45
Changelog
- d6adc41 add interactive assistant targeting, clear targeted assistant if deleted, further cleanup of knowledge -> assistant naming, reorganize assistant sub-commands
- cbd6022 additional naming cleanup, code readability chores
- df3b100 fix display for individual chat responses, rename and update presenters for chat structs, rename and cleanup chores
- 2ea8f97 rename KnowledgeModels to Assistants, update file struct to have size
- 54efefa update staging vs non-staging assistant routes, update relevant struct fields to match the new payloads being returned, clean up some of our logging
v0.0.44
v0.0.43
Changelog
- 65d5cd5 Add troubleshooting tips to CONTRIBUTING
- a409615 Adjust messages
- bd515b5 Make "config set-environment" hidden
- 9ffc814 Merge pull request #5 from pinecone-io/jhamon/bearer-token-refactor
- f3a0653 Refactor to pass JWT token and project id header
- 717975b Show informative error if attempting to set target without login state
- a67ba04 Show warning when both logged in and using api key
- 9585713 Update issue templates
- ab4a603 Update issue templates