coronasafe / ayushma

Empowering Nurses with Multilingual ICU Protocols. Leveraging the rapid advancements in AI technology, created multilingual interfaces that assist nurses in rapidly upgrading their knowledge about ICU protocols.
https://ayushma-api.ohc.network
MIT License
7 stars 8 forks source link

Bump pinecone-client from 2.2.4 to 3.0.3 #469

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps pinecone-client from 2.2.4 to 3.0.3.

Release notes

Sourced from pinecone-client's releases.

v3.0.3 Release

Fixes

Chores

New Contributors

Full Changelog: https://github.com/pinecone-io/pinecone-python-client/compare/v3.0.2...v3.0.3

Release v3.0.2

Fixes

Create indexes using source_collection option in PodSpec

This release resolves a bug when passing source_collection as part of the PodSpec. This option is used when creating a new index from vector data stored in a collection. The value of this field should be a collection you have created previously from an index and that shows with pc.list_collections(). Currently collections and pod-based indexes are not portable across environments.

from pinecone import Pinecone

pc = Pinecone(api_key='YOUR_API_KEY')

pc.create_index( name='my-index', dimension=1536, metric='cosine', spec=PodSpec( environment='us-east1-gcp', source_collection='collection-2024jan16', ) )

Pass optional GRPCClientConfig when using PineconeGRPC

This could be considered as a fix for a UX bug or a micro-feature, depending on your perspective. In 3.0.2 we updated the pc.Index helper method that is used to build instances of the GRPCIndex class. It now accepts an optional keyword param grpc_config. Before this fix, you would need to import GRPCIndex and instantiate GRPCIndex yourself in order to pass this configuration and customize some settings, which was a bit clunky.

from pinecone.grpc import PineconeGRPC, GRPCClientConfig

pc = PineconeGRPC(api_key='YOUR_API_KEY') grpc_config = GRPCClientConfig( timeout=10, secure=True, reuse_channel=True </tr></table>

... (truncated)

Commits
  • 26b7c10 [skip ci] Bump version to v3.0.3
  • 14f6384 upsert_from_dataframe: Hide all progressbars if !show_progress (#310)
  • 886f932 Update generated openapi code (#309)
  • 2c887bb Update github actions dependencies to fix warnings (#308)
  • 3297661 Add cleanup script and workflow
  • b8c12eb Support overriding additional_headers with PINECONE_ADDITIONAL_HEADERS en...
  • 921e0b4 gRPC: parse_query_response: Skip parsing empty Usage (#301)
  • 61c19ad [skip ci] Bump version to v3.0.2
  • 45c18e9 Optional configs to pass additional_headers/additional_metadata to indexe...
  • 995c0a1 Integration tests for collections (#299)
  • Additional commits viewable in compare view


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 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[bot] commented 2 months ago

Superseded by #479.