Skip to content

chore(deps): update pinecone-client requirement from >=2.0.13 to >=6.0.0 in /utils#2621

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/utils/pinecone-client-gte-6.0.0
Open

chore(deps): update pinecone-client requirement from >=2.0.13 to >=6.0.0 in /utils#2621
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/utils/pinecone-client-gte-6.0.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 23, 2026

Updates the requirements on pinecone-client to permit the latest version.

Release notes

Sourced from pinecone-client's releases.

Release v6.0.0

What's new in this release?

Indexes with Integrated Inference

This release adds a new create_index_for_model method as well as upsert_records, and search methods. Together these methods provide a way for you to easily store your data and let us manage the process of creating embeddings. To learn about available models, see the Model Gallery.

Note: If you were previously using the preview versions of this functionality via the pinecone-plugin-records package, you will need to uninstall that package in order to use the v6 pinecone release.

from pinecone import (
    Pinecone,
    CloudProvider,
    AwsRegion,
    EmbedModel,
)
1. Instantiate the Pinecone client
pc = Pinecone(api_key="<<PINECONE_API_KEY>>")
2. Create an index configured for use with a particular model
index_config = pc.create_index_for_model(
name="my-model-index",
cloud=CloudProvider.AWS,
region=AwsRegion.US_EAST_1,
embed=IndexEmbed(
model=EmbedModel.Multilingual_E5_Large,
field_map={"text": "my_text_field"}
)
)
3. Instantiate an Index client
idx = pc.Index(host=index_config.host)
4. Upsert records
idx.upsert_records(
namespace="my-namespace",
records=[
{
"_id": "test1",
"my_text_field": "Apple is a popular fruit known for its sweetness and crisp texture.",
},
{
"_id": "test2",
"my_text_field": "The tech company Apple is known for its innovative products like the iPhone.",
},
{
"_id": "test3",
"my_text_field": "Many people enjoy eating apples as a healthy snack.",
},
</tr></table>

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Apr 23, 2026
@dependabot dependabot Bot requested a review from a team as a code owner April 23, 2026 03:09
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Apr 23, 2026
@dependabot dependabot Bot requested review from pmackle and removed request for a team April 23, 2026 03:09
@dependabot dependabot Bot added the python Pull requests that update python code label Apr 23, 2026
@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 23, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
docs Ready Ready Preview, Comment Apr 23, 2026 8:09am

Request Review

Updates the requirements on [pinecone-client](https://github.com/pinecone-io/pinecone-python-client) to permit the latest version.
- [Release notes](https://github.com/pinecone-io/pinecone-python-client/releases)
- [Commits](pinecone-io/pinecone-python-client@pinecone-client-v6.0.0...pinecone-client-v6.0.0)

---
updated-dependencies:
- dependency-name: pinecone-client
  dependency-version: 6.0.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/pip/utils/pinecone-client-gte-6.0.0 branch from 3543af3 to 1194d2f Compare April 23, 2026 08:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants