We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfb6224 commit 2c5919aCopy full SHA for 2c5919a
pyproject.toml
@@ -48,7 +48,7 @@ dev = [
48
"qdrant-client",
49
"graphlit-client",
50
"python-dotenv",
51
- "pinecone",
+ "pinecone>=3.1.0,<=6.0.2",
52
"langchain",
53
"langchain-community",
54
"langchain-openai",
src/langtrace_python_sdk/instrumentation/pinecone/instrumentation.py
@@ -33,7 +33,7 @@ class PineconeInstrumentation(BaseInstrumentor):
33
The PineconeInstrumentation class represents the Pinecone instrumentation"""
34
35
def instrumentation_dependencies(self) -> Collection[str]:
36
- return ["pinecone >= 3.1.0"]
+ return ["pinecone >= 3.1.0", "pinecone <= 6.0.2"]
37
38
def _instrument(self, **kwargs):
39
tracer_provider = kwargs.get("tracer_provider")
0 commit comments