You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as per openllmetry pinecone-instrumentation the supported pinecone package is pinecone-client but seems it's replaces with pinecone hence giving error when trying to run pinecone with pinecone-client pkg installation .
👟 Reproduction steps
do pip install pinecone-client and try to run the pinecone sample . You will get error at runtime
Error -
Exception: The official Pinecone python package has been renamed from pinecone-client to pinecone. Please remove pinecone-client from your project dependencies and add pinecone instead. See the README at https://github.com/pinecone-io/pinecone-python-client for more information on using the python SDK.
👍 Expected behavior
we should install pinecone instead of pinecone-client and do the same change in openllmetry to support pinecone .
👎 Actual Behavior with Screenshots
python sample runs fine with installed pinecone package <6.0.0
🤖 Python Version
3.11.11
📃 Provide any additional context for the Bug.
No response
👀 Have you spent some time to check if this bug has been raised before?
I checked and didn't find similar issue
Are you willing to submit PR?
Yes I am willing to submit a PR!
The text was updated successfully, but these errors were encountered:
To resolve the error caused by the package name change from pinecone-client to pinecone in the Pinecone Instrumentation for OpenLLmetry, you need to update the dependencies in the OpenLLmetry repository. Specifically, modify the PineconeInstrumentor class in the __init__.py file to use the new package name pinecone instead of pinecone-client. Update the _instruments tuple as follows:
_instruments= ("pinecone >= 2.2.2, <6",)
Additionally, ensure that the pyproject.toml file in the packages/opentelemetry-instrumentation-pinecone directory is updated to reflect this change. This will ensure that the correct package is referenced for instrumentation dependencies [1][2].
Which component is this bug for?
Pinecone Instrumentation
📜 Description
as per openllmetry pinecone-instrumentation the supported pinecone package is pinecone-client but seems it's replaces with pinecone hence giving error when trying to run pinecone with pinecone-client pkg installation .
👟 Reproduction steps
do pip install pinecone-client and try to run the pinecone sample . You will get error at runtime
Error -
Exception: The official Pinecone python package has been renamed from
pinecone-client
topinecone
. Please removepinecone-client
from your project dependencies and addpinecone
instead. See the README at https://github.com/pinecone-io/pinecone-python-client for more information on using the python SDK.👍 Expected behavior
we should install pinecone instead of pinecone-client and do the same change in openllmetry to support pinecone .
👎 Actual Behavior with Screenshots
python sample runs fine with installed pinecone package <6.0.0
🤖 Python Version
3.11.11
📃 Provide any additional context for the Bug.
No response
👀 Have you spent some time to check if this bug has been raised before?
Are you willing to submit PR?
Yes I am willing to submit a PR!
The text was updated successfully, but these errors were encountered: