Skip to content

Conversation

@elinacse
Copy link
Contributor

@elinacse elinacse commented Dec 6, 2025

  • I have added tests that cover my changes.
  • If adding a new instrumentation or changing an existing one, I've added screenshots from some observability platform showing the change.
  • PR name follows conventional commits format: feat(instrumentation): ... or fix(instrumentation): ....
  • (If applicable) I have updated the documentation accordingly.

Important

Update Pinecone package dependency and add httpx to test dependencies.

  • Dependencies:
    • Update _instruments in __init__.py to require pinecone >= 2.2.2.
    • Add httpx dependency in pyproject.toml for test group.

This description was created by Ellipsis for cdac7b0. You can customize this summary. It will automatically update as commits are pushed.

Summary by CodeRabbit

  • Bug Fixes

    • Improved compatibility with the latest Pinecone library version.
    • Enhanced server address detection for OpenTelemetry instrumentation.
  • Chores

    • Updated dependencies to support newer library versions.

✏️ Tip: You can customize this high-level summary in your review settings.

@coderabbitai
Copy link

coderabbitai bot commented Dec 6, 2025

Walkthrough

The Pinecone instrumentation is updated to use the renamed "pinecone" package instead of "pinecone-client," with the upper version bound removed. A new _get_server_address helper function extracts server address handling logic. Dependencies are updated accordingly, including a version bump for OpenAI.

Changes

Cohort / File(s) Summary
Instrumentation code updates
packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py
Instrumentation constraint updated from ("pinecone-client >= 2.2.2, <6",) to ("pinecone >= 2.2.2",). New helper function _get_server_address(instance) added to extract canonical server address from instance config. Input and shared attribute setters refactored to use the new helper, setting server.address only when available.
Dependency configuration
packages/opentelemetry-instrumentation-pinecone/pyproject.toml
OpenAI dependency bumped from ^1.31.1 with datalib extras to ^1.57.0. Package dependency changed from pinecone-client ^5.0.0 to pinecone ^5.0.0. Extras declaration updated to reference ["pinecone"] instead of ["pinecone-client"].

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

  • Verify _get_server_address correctly handles instance.config.host extraction and None fallback
  • Confirm removal of upper version bound (<6) for pinecone doesn't introduce breaking compatibility
  • Check OpenAI version bump from ^1.31.1 to ^1.57.0 is compatible with test usage patterns

Poem

A rabbit hops with glee,
Pinecone's renamed officially!
Bounds removed, helpers split clean,
Server address extracted keen—
Dependencies dance, the package now lean! 🐰📦

Pre-merge checks and finishing touches

❌ Failed checks (1 warning, 1 inconclusive)
Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 25.00% which is insufficient. The required threshold is 80.00%. You can run @coderabbitai generate docstrings to improve docstring coverage.
Title check ❓ Inconclusive The title 'PackageFix' is overly vague and generic, using non-descriptive terminology that doesn't convey meaningful information about what package is being fixed or what the specific changes accomplish. Revise the title to be more specific and descriptive, e.g., 'fix(pinecone): Update package dependencies and add server address helper' to better communicate the main changes.
✅ Passed checks (1 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@elinacse
Copy link
Contributor Author

elinacse commented Dec 6, 2025

#2753

Copy link
Contributor

@ellipsis-dev ellipsis-dev bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

Looks good to me! 👍

Reviewed everything up to cdac7b0 in 1 minute and 10 seconds. Click for details.
  • Reviewed 25 lines of code in 2 files
  • Skipped 1 files when reviewing.
  • Skipped posting 2 draft comments. View those below.
  • Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.
1. packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py:35
  • Draft comment:
    Changed _instruments from 'pinecone-client' with an upper bound to 'pinecone >= 2.2.2'. Ensure this module name matches the actual import (it uses 'import pinecone') and that dropping the upper bound (<6) is intentional to avoid future incompatibilities.
  • Reason this comment was not posted:
    Comment looked like it was already resolved.
2. packages/opentelemetry-instrumentation-pinecone/pyproject.toml:40
  • Draft comment:
    Added httpx as a test dependency with version '>=0.27.0,<0.28.0'. Verify that this constraint is aligned with your testing needs and does not conflict with other dependencies.
  • Reason this comment was not posted:
    Comment did not seem useful. Confidence is useful = 0% <= threshold 50% The comment is about a dependency change, specifically adding a new test dependency with a version constraint. The comment asks the PR author to verify alignment with testing needs and check for conflicts, which is not allowed according to the rules. The comment does not provide a specific suggestion or point out a specific issue with the code.

Workflow ID: wflow_XLaAltmKUQ0IW8vJ

You can customize Ellipsis by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
packages/opentelemetry-instrumentation-pinecone/pyproject.toml (1)

40-48: Align Pinecone package naming between instrumentation metadata and pyproject

Adding httpx as a test-only dependency with >=0.27.0,<0.28.0 looks fine, but there’s now an inconsistency around the Pinecone client:

  • PineconeInstrumentor.instrumentation_dependencies() now returns _instruments = ("pinecone >= 2.2.2",) (module file), i.e., it advertises a requirement on a package named pinecone.
  • This pyproject.toml still uses pinecone-client both in test deps (Line 47) and in the instruments extra (Line 54).

If the official client package has moved from pinecone-client to pinecone, it would be good to:

  • Update test deps and/or extras to use the same package name as _instruments, or
  • Explicitly confirm that pinecone-client is still the correct package and adjust _instruments accordingly.

Otherwise, users relying on extras or automated discovery of instrumentation dependencies may see conflicting or misleading requirements.

packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py (1)

35-35: Reassess _instruments constraint: package name change and removed upper bound

Changing _instruments to ("pinecone >= 2.2.2",) does two things at once:

  1. Renames the advertised dependency from pinecone-client to pinecone.
  2. Drops the previous major-version upper bound (<6 per summary), so this instrumentation now claims compatibility with all future major versions of the client.

Given that:

  • pyproject.toml still references pinecone-client in deps/extras, and
  • Future Pinecone client majors may introduce breaking API changes that this instrumentation doesn’t yet handle,

it may be safer to:

  • Keep an explicit upper bound (e.g., ("pinecone >= 2.2.2, <7",)) until compatibility with newer majors is confirmed, and
  • Align the package name here with whatever you decide in pyproject.toml (either pinecone or pinecone-client, but consistently).

This keeps dependency metadata honest and reduces the risk of silent breakage when a new major client release lands.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between f782741 and cdac7b0.

⛔ Files ignored due to path filters (1)
  • packages/opentelemetry-instrumentation-pinecone/poetry.lock is excluded by !**/*.lock
📒 Files selected for processing (2)
  • packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py (1 hunks)
  • packages/opentelemetry-instrumentation-pinecone/pyproject.toml (1 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
**/*.py

📄 CodeRabbit inference engine (CLAUDE.md)

**/*.py: Store API keys only in environment variables/secure vaults; never hardcode secrets in code
Use Flake8 for code linting and adhere to its rules

Files:

  • packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
  • GitHub Check: Test Packages (3.12)
  • GitHub Check: Test Packages (3.11)
  • GitHub Check: Test Packages (3.10)
  • GitHub Check: Build Packages (3.11)
  • GitHub Check: Lint

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
packages/opentelemetry-instrumentation-pinecone/tests/test_query.py (1)

151-179: Consider de-duplicating the repeated server.address notes in metrics loop

The three identical comments about server.address not being present in metrics are accurate but a bit repetitive. You could move a single explanatory comment just above the metrics loop instead of repeating it inside each metric branch, keeping the test slightly leaner without losing clarity.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between cdac7b0 and 47eca04.

⛔ Files ignored due to path filters (1)
  • packages/opentelemetry-instrumentation-pinecone/poetry.lock is excluded by !**/*.lock
📒 Files selected for processing (2)
  • packages/opentelemetry-instrumentation-pinecone/pyproject.toml (1 hunks)
  • packages/opentelemetry-instrumentation-pinecone/tests/test_query.py (2 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
**/*.py

📄 CodeRabbit inference engine (CLAUDE.md)

**/*.py: Store API keys only in environment variables/secure vaults; never hardcode secrets in code
Use Flake8 for code linting and adhere to its rules

Files:

  • packages/opentelemetry-instrumentation-pinecone/tests/test_query.py
🧬 Code graph analysis (1)
packages/opentelemetry-instrumentation-pinecone/tests/test_query.py (1)
packages/opentelemetry-semantic-conventions-ai/opentelemetry/semconv_ai/__init__.py (1)
  • Meters (36-61)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
  • GitHub Check: Test Packages (3.11)
  • GitHub Check: Test Packages (3.12)
  • GitHub Check: Test Packages (3.10)
  • GitHub Check: Lint
  • GitHub Check: Build Packages (3.11)
🔇 Additional comments (1)
packages/opentelemetry-instrumentation-pinecone/tests/test_query.py (1)

103-111: Clarifying comment for dropped server.address check looks good

Replacing the server.address assertion with a brief note keeps the test aligned with the newer Pinecone client behavior while preserving the rest of the span-attribute coverage. No changes requested here.

Comment on lines 38 to 47
[tool.poetry.group.test.dependencies]
openai = { version = "^1.31.1", extras = ["datalib"] }
openai = "^1.57.0"
pytest = "^8.2.2"
pytest-sugar = "1.0.0"
vcrpy = "^6.0.1"
pytest-recording = "^0.13.1"
opentelemetry-sdk = "^1.38.0"
opentelemetry-instrumentation-openai = { path = "../opentelemetry-instrumentation-openai", develop = true }
pinecone-client = "^5.0.0"
pinecone = "^5.0.0"

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

cat -n packages/opentelemetry-instrumentation-pinecone/pyproject.toml

Repository: traceloop/openllmetry

Length of output: 186


🌐 Web query:

pinecone package pypi distribution name history pinecone-client

💡 Result:

Short summary — PyPI distribution name history for Pinecone's Python SDK:

  • Originally published on PyPI as "pinecone-client". [1]
  • The project was renamed to "pinecone" starting with version 5.1.0; "pinecone-client" is marked deprecated and users are instructed to uninstall "pinecone-client" and install "pinecone". [2][3]
  • Official docs and release notes reiterate the rename and upgrading steps (uninstall pinecone-client → pip install pinecone). [2][3]

Sources:

  • "pinecone-client" project page on PyPI. [1]
  • "pinecone" project page on PyPI (rename/deprecation and install instructions). [2]
  • Pinecone Python SDK upgrading / GitHub release notes describing the rename (beginning v5.1.0). [3]

🌐 Web query:

pinecone python sdk version 5.0.0 release date pypi history

💡 Result:

  • pinecone-client (PyPI) version 5.0.0 — uploaded (release) date: July 19, 2024. [1]
  • Subsequent nearby releases: pinecone-client 5.0.1 uploaded Aug 1, 2024. The package was later renamed from pinecone-client → pinecone (SDK package rename started at v5.1.0). [1][2][3]

Sources: PyPI project pages for pinecone-client 5.0.0 and 5.0.1, and the pinecone (SDK) PyPI project. [1][2][3]

References
[1] PyPI package page — pinecone-client 5.0.0 (upload date Jul 19, 2024).
[2] PyPI package page — pinecone-client 5.0.1 (upload date Aug 1, 2024).
[3] PyPI package page — pinecone (SDK) (notes about rename to pinecone starting v5.1.0).


Fix pinecone dependency specification and align instruments extra

The test dependency pinecone = "^5.0.0" is misconfigured: version 5.0.0 was released under pinecone-client, not pinecone. The pinecone distribution name only exists from v5.1.0 onward (after the SDK rename). This constraint will fail to resolve.

Additionally, the instruments extra still references "pinecone-client", creating inconsistency with both the test dependencies and the instrumentor's expectations.

Fix both issues:

  • Update test dependencies to pinecone = "^5.1.0" (or pinecone-client = "^5.0.0" if older versions are required)
  • Update [tool.poetry.extras] to instruments = ["pinecone"] to align with the new distribution name
🤖 Prompt for AI Agents
In packages/opentelemetry-instrumentation-pinecone/pyproject.toml around lines
38 to 47, the test dependency pins `pinecone = "^5.0.0"` and the `instruments`
extra references `pinecone-client`, which is inconsistent and fails resolution
because version 5.0.0 was published under `pinecone-client` and the `pinecone`
distribution exists from 5.1.0 onward; update the test dependency to `pinecone =
"^5.1.0"` (or change to `pinecone-client = "^5.0.0"` if you must keep older SDK
naming) and change the `[tool.poetry.extras]` entry so `instruments =
["pinecone"]` to match the instrumentor and the package distribution name.

@elinacse
Copy link
Contributor Author

elinacse commented Dec 6, 2025

@nirga @gyliu513 please review the PR. this is submitted for the issue #2753.

data_point.attributes["server.address"]
== "https://gen-qa-openai-fast-90c5d9e.svc.gcp-starter.pinecone.io"
)
# Note: server.address not available in Pinecone v5+ metrics
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why do we need this comment?
Can we get the server.address from somewhere else?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nirga modified the instrumentation to fetch server.address reverted the test case changes now test passed.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

♻️ Duplicate comments (1)
packages/opentelemetry-instrumentation-pinecone/pyproject.toml (1)

46-46: Pinecone version constraint will fail to resolve.

As noted in the previous review, pinecone = "^5.0.0" is incorrect because version 5.0.0 was published under the pinecone-client distribution. The pinecone package only exists from version 5.1.0 onwards. This constraint will fail during dependency resolution.

Apply this diff to fix the version constraint:

-pinecone = "^5.0.0"
+pinecone = "^5.1.0"
🧹 Nitpick comments (1)
packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py (1)

82-85: Consider removing unused kwargs parameter.

The kwargs parameter is not used in the function body. If it's not needed for API consistency with other similar functions, consider removing it to clean up the signature.

Based on learnings, as per static analysis hints...

Apply this diff if kwargs is truly unnecessary:

-def _set_input_attributes(span, instance, kwargs):
+def _set_input_attributes(span, instance):
     server_address = _get_server_address(instance)
     if server_address:
         set_span_attribute(span, SpanAttributes.SERVER_ADDRESS, server_address)

Note: You'll also need to update the call site at line 159 to remove the kwargs argument.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 163447b and 8a8c040.

⛔ Files ignored due to path filters (1)
  • packages/opentelemetry-instrumentation-pinecone/poetry.lock is excluded by !**/*.lock
📒 Files selected for processing (2)
  • packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py (3 hunks)
  • packages/opentelemetry-instrumentation-pinecone/pyproject.toml (1 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
**/*.py

📄 CodeRabbit inference engine (CLAUDE.md)

**/*.py: Store API keys only in environment variables/secure vaults; never hardcode secrets in code
Use Flake8 for code linting and adhere to its rules

Files:

  • packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py
🧠 Learnings (1)
📚 Learning: 2025-12-02T21:09:48.690Z
Learnt from: duanyutong
Repo: traceloop/openllmetry PR: 3487
File: packages/opentelemetry-instrumentation-openai/opentelemetry/instrumentation/openai/utils.py:177-178
Timestamp: 2025-12-02T21:09:48.690Z
Learning: The opentelemetry-instrumentation-openai and opentelemetry-instrumentation-openai-agents packages must remain independent and not share code, so code duplication between them is acceptable.

Applied to files:

  • packages/opentelemetry-instrumentation-pinecone/pyproject.toml
🧬 Code graph analysis (1)
packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py (1)
packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/utils.py (2)
  • dont_throw (7-29)
  • set_span_attribute (32-36)
🪛 Ruff (0.14.8)
packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py

82-82: Unused function argument: kwargs

(ARG001)

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
  • GitHub Check: Lint
  • GitHub Check: Test Packages (3.12)
  • GitHub Check: Build Packages (3.11)
  • GitHub Check: Test Packages (3.10)
  • GitHub Check: Test Packages (3.11)
🔇 Additional comments (3)
packages/opentelemetry-instrumentation-pinecone/pyproject.toml (1)

53-53: Instruments extra correctly updated, but depends on fixing the version constraint.

The update from ["pinecone-client"] to ["pinecone"] correctly reflects the package rename. However, this change depends on fixing the version constraint at line 46 to ^5.1.0 to ensure proper dependency resolution.

packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py (2)

72-78: LGTM! Clean server address extraction.

The _get_server_address helper function is well-implemented:

  • Safely checks for attribute existence using hasattr
  • Correctly handles URLs with and without protocol prefixes
  • Returns None when attributes are missing
  • Protected by the @dont_throw decorator to prevent instrumentation failures

164-166: LGTM! Consistent use of the new helper.

The update to use _get_server_address(instance) for shared attributes is correct and consistent with the changes in _set_input_attributes. The None check ensures the attribute is only added when available.

logger = logging.getLogger(__name__)

_instruments = ("pinecone-client >= 2.2.2, <6",)
_instruments = ("pinecone >= 2.2.2",)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Critical version mismatch: pinecone 2.2.2 doesn't exist.

The constraint "pinecone >= 2.2.2" is incorrect because the pinecone package only exists from version 5.1.0 onwards. Version 2.2.2 was released under pinecone-client, not pinecone. This creates a critical inconsistency:

  • This line specifies pinecone >= 2.2.2
  • Line 46 in pyproject.toml specifies pinecone = "^5.0.0" (which is also incorrect; should be ^5.1.0)

The instrumentor will fail dependency validation because pinecone 2.2.2 doesn't exist.

Apply this diff to align with the correct pinecone package version range:

-_instruments = ("pinecone >= 2.2.2",)
+_instruments = ("pinecone >= 5.1.0",)
🤖 Prompt for AI Agents
In
packages/opentelemetry-instrumentation-pinecone/opentelemetry/instrumentation/pinecone/__init__.py
around line 35, the _instruments tuple incorrectly requires "pinecone >= 2.2.2"
(a version that does not exist for the pinecone package); update the instrument
requirement to the actual package range starting at 5.1.0 (e.g., "pinecone >=
5.1.0") and also update the dependency in pyproject.toml (around line 46) from
pinecone = "^5.0.0" to pinecone = "^5.1.0" so both the instrument metadata and
project dependency match the correct package versions.


[tool.poetry.group.test.dependencies]
openai = { version = "^1.31.1", extras = ["datalib"] }
openai = "^1.57.0"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🌐 Web query:

openai python package version 1.57.0 latest release

💡 Result:

No — 1.57.0 is not the latest. The openai Python package latest release is 2.9.0 (uploaded Dec 4, 2025). [1][2]

Sources:

  • PyPI package page (current release 2.9.0, uploaded Dec 4, 2025). [1]
  • Historical info for older versions (1.57.0 referenced). [2]

🏁 Script executed:

# Check if there's context in the repo about this change
cd packages/opentelemetry-instrumentation-pinecone
cat -n pyproject.toml | head -50

Repository: traceloop/openllmetry

Length of output: 186


🏁 Script executed:

# Look for any usage of datalib in the pinecone instrumentation tests
find packages/opentelemetry-instrumentation-pinecone -type f \( -name "*.py" \) -exec grep -l "datalib" {} \;

Repository: traceloop/openllmetry

Length of output: 186


🏁 Script executed:

# Check git history for this change if available
git log --oneline -n 20 -- packages/opentelemetry-instrumentation-pinecone/pyproject.toml 2>/dev/null || echo "Git history not available"

Repository: traceloop/openllmetry

Length of output: 186


Consider updating OpenAI version and verify extras removal.

The OpenAI dependency is pinned to version 1.57.0, which is not the latest release (current version is 2.9.0 as of December 4, 2025). Additionally, the datalib extra was removed during this update. Verify that:

  1. Version 1.57.0 is intentionally pinned (not outdated), or consider upgrading to the latest stable version
  2. Removing the datalib extra does not break Pinecone instrumentation tests or required functionality
🤖 Prompt for AI Agents
packages/opentelemetry-instrumentation-pinecone/pyproject.toml lines 39-39: the
OpenAI dependency is pinned to openai = "1.57.0" and the datalib extra was
removed; either confirm the pin is intentional or update to a supported recent
release (e.g., latest stable 2.x), and if upgrading reintroduce any needed
extras (datalib) or adjust code for breaking API changes; after changing the
version, run the Pinecone instrumentation unit/integration tests and CI to
ensure nothing breaks, and if tests fail, either revert to a compatible OpenAI
version or restore the datalib extra and adapt code to match the chosen OpenAI
release.

@elinacse
Copy link
Contributor Author

@nirga please review it , I have addressed your comments . Thanks !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants