Remove preview namespace usage for Docs API/FTS GA - #35
Merged
Merged
Conversation
Bump pinecone to 10.0.0 and migrate pc.preview.* calls to their GA equivalents (pc.indexes.*, pc.index(...), top-level SchemaBuilder). Also moves query.py's text score_by clauses from the deprecated singular `field` to `fields=[...]`.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 8d1cb73. Configure here.
The dependency-audit CI job flags known vulnerabilities in the pinned versions of these three packages, independent of the pinecone SDK bump. Move to the fixed releases so pip-audit passes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Bump pinecone to 10.0.0 and migrate pc.preview.* calls to their GA equivalents (pc.indexes.*, pc.index(...), top-level SchemaBuilder). Also moves query.py's text score_by clauses from the deprecated singular
fieldtofields=[...].Note
Medium Risk
Touches all live index access and search payload shapes; misaligned SDK/API usage would break ingestion and every search mode until fixed.
Overview
Upgrades Pinecone to 10.0.0 and drops the preview client surface: index lifecycle (
exists/create/delete/describe), document upsert/search handles, andSchemaBuildernow go through the GApc.indexesandpc.index()APIs instead ofpc.preview.*.Text FTS requests now use the GA
score_byshape—eachtextclause passesfields: [<name>]instead of the deprecated singularfield. That change is wired throughquery.py(search_text,search_text_multi) and reflected in the Streamlit tab reference plus unit/live tests that assert onkwargs["score_by"].Dependency bumps alongside Pinecone: Streamlit 1.54.0, Pillow 12.3.0, and python-dotenv 1.2.2. Docstrings/comments no longer call the index “preview.”
Reviewed by Cursor Bugbot for commit b3e21b3. Bugbot is set up for automated code reviews on this repo. Configure here.