Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(backend/deps): bump pinecone from 5.4.2 to 6.0.1 in /autogpt_platform/backend #9457

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 10, 2025

Bumps pinecone from 5.4.2 to 6.0.1.

Release notes

Sourced from pinecone'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 compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from a team as a code owner February 10, 2025 17:39
@dependabot dependabot bot removed the request for review from a team February 10, 2025 17:39
@dependabot dependabot bot requested a review from Pwuts February 10, 2025 17:39
@dependabot dependabot bot added the python Pull requests that update Python code label Feb 10, 2025
@dependabot dependabot bot requested a review from Bentlybro February 10, 2025 17:39
@github-actions github-actions bot added platform/backend AutoGPT Platform - Back end size/l labels Feb 10, 2025
Copy link

deepsource-io bot commented Feb 10, 2025

Here's the code health analysis summary for commits f722c70..4fed92b. View details on DeepSource ↗.

Analysis Summary

AnalyzerStatusSummaryLink
DeepSource JavaScript LogoJavaScript✅ SuccessView Check ↗
DeepSource Python LogoPython✅ SuccessView Check ↗

💡 If you’re a repository administrator, you can configure the quality gates from the settings.

Copy link

netlify bot commented Feb 10, 2025

Deploy Preview for auto-gpt-docs-dev canceled.

Name Link
🔨 Latest commit 4fed92b
🔍 Latest deploy log https://app.netlify.com/sites/auto-gpt-docs-dev/deploys/67b60c7ed2e6b50008479c6b

Copy link

netlify bot commented Feb 10, 2025

Deploy Preview for auto-gpt-docs canceled.

Name Link
🔨 Latest commit 4fed92b
🔍 Latest deploy log https://app.netlify.com/sites/auto-gpt-docs/deploys/67b60c7ea10a8c0008ad73c5

@github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Feb 10, 2025
Copy link
Contributor

This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

@dependabot dependabot bot force-pushed the dependabot/pip/autogpt_platform/backend/dev/pinecone-6.0.1 branch from 3210ea4 to f68a430 Compare February 10, 2025 21:20
@github-actions github-actions bot removed the conflicts Automatically applied to PRs with merge conflicts label Feb 10, 2025
Copy link
Contributor

Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly.

Copy link
Contributor

This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

@github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Feb 12, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/autogpt_platform/backend/dev/pinecone-6.0.1 branch from f68a430 to 197667c Compare February 12, 2025 02:23
Copy link
Contributor

Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly.

@github-actions github-actions bot removed the conflicts Automatically applied to PRs with merge conflicts label Feb 12, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/autogpt_platform/backend/dev/pinecone-6.0.1 branch from 197667c to 0600de9 Compare February 12, 2025 17:51
Copy link
Contributor

This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

@github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Feb 12, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/autogpt_platform/backend/dev/pinecone-6.0.1 branch from 0600de9 to 786cb2a Compare February 12, 2025 23:14
@github-actions github-actions bot removed the conflicts Automatically applied to PRs with merge conflicts label Feb 12, 2025
Copy link
Contributor

Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly.

@github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Feb 14, 2025
Copy link
Contributor

This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

@dependabot dependabot bot force-pushed the dependabot/pip/autogpt_platform/backend/dev/pinecone-6.0.1 branch from 786cb2a to 8ef9304 Compare February 14, 2025 18:15
@github-actions github-actions bot removed conflicts Automatically applied to PRs with merge conflicts labels Feb 14, 2025
Copy link
Contributor

Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly.

1 similar comment
Copy link
Contributor

Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly.

Copy link
Contributor

This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

@github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Feb 18, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/autogpt_platform/backend/dev/pinecone-6.0.1 branch from 8ef9304 to b12df6b Compare February 18, 2025 09:00
@github-actions github-actions bot removed the conflicts Automatically applied to PRs with merge conflicts label Feb 18, 2025
Copy link
Contributor

Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly.

@github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Feb 19, 2025
Copy link
Contributor

This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

Bumps [pinecone](https://github.com/pinecone-io/pinecone-python-client) from 5.4.2 to 6.0.1.
- [Release notes](https://github.com/pinecone-io/pinecone-python-client/releases)
- [Changelog](https://github.com/pinecone-io/pinecone-python-client/blob/main/CHANGELOG.md)
- [Commits](pinecone-io/pinecone-python-client@v5.4.2...v6.0.1)

---
updated-dependencies:
- dependency-name: pinecone
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/autogpt_platform/backend/dev/pinecone-6.0.1 branch from b12df6b to 4fed92b Compare February 19, 2025 16:53
@github-actions github-actions bot removed the conflicts Automatically applied to PRs with merge conflicts label Feb 19, 2025
Copy link
Contributor

Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies platform/backend AutoGPT Platform - Back end python Pull requests that update Python code size/l
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants