-
Notifications
You must be signed in to change notification settings - Fork 109
Expose LSN Header Information #539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
5aa5f65
Expose LSN
jhamon 173f8f8
Add missing exports
jhamon 4866c6f
Expose headers on update response
jhamon 33e4dc5
Remove max-parallel limit
jhamon 1ceeb81
Fix broken tests
jhamon 69c93ea
Fix asyncio tests
jhamon 66ed2ef
Remove slow assertion
jhamon a905e3e
Fix data tests
jhamon d0a7d01
Fix grpc tests
jhamon a19ee7c
Default to testing on 3.10, drop 3.13 from PR runs
jhamon c0028d5
Fix unit test
jhamon ad4466d
Use quotes around 3.10 version
jhamon d661f83
Adjust more python versions in CI
jhamon 4b43ef3
Iterating
jhamon 3ec2c1b
Adjust ResponseInfo interface
jhamon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ jobs: | |
| fail-fast: false | ||
| matrix: | ||
| python_version: | ||
| - 3.9 | ||
| - '3.10' | ||
| - 3.11 | ||
| urllib3_version: | ||
| - 1.26.0 | ||
|
|
||
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,22 @@ | ||
| from dataclasses import dataclass | ||
| from typing import Dict, Optional | ||
| from dataclasses import dataclass, field | ||
| from typing import Dict, Optional, cast | ||
|
|
||
| from .vector import Vector | ||
| from .utils import DictLike | ||
| from pinecone.utils.response_info import ResponseInfo | ||
|
|
||
|
|
||
| @dataclass | ||
| class Pagination: | ||
| class Pagination(DictLike): | ||
| next: str | ||
|
|
||
|
|
||
| @dataclass | ||
| class FetchByMetadataResponse: | ||
| class FetchByMetadataResponse(DictLike): | ||
| namespace: str | ||
| vectors: Dict[str, Vector] | ||
| usage: Dict[str, int] | ||
| pagination: Optional[Pagination] = None | ||
| _response_info: ResponseInfo = field( | ||
| default_factory=lambda: cast(ResponseInfo, {"raw_headers": {}}), repr=True, compare=False | ||
| ) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,16 @@ | ||
| from dataclasses import dataclass | ||
| from typing import Dict | ||
| from dataclasses import dataclass, field | ||
| from typing import Dict, cast | ||
|
|
||
| from .vector import Vector | ||
| from .utils import DictLike | ||
| from pinecone.utils.response_info import ResponseInfo | ||
|
|
||
|
|
||
| @dataclass | ||
| class FetchResponse: | ||
| class FetchResponse(DictLike): | ||
| namespace: str | ||
| vectors: Dict[str, Vector] | ||
| usage: Dict[str, int] | ||
| _response_info: ResponseInfo = field( | ||
| default_factory=lambda: cast(ResponseInfo, {"raw_headers": {}}), repr=True, compare=False | ||
| ) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| from dataclasses import dataclass, field | ||
| from typing import List, Optional, cast | ||
|
|
||
| from .utils import DictLike | ||
| from pinecone.utils.response_info import ResponseInfo | ||
| from pinecone.core.openapi.db_data.models import ScoredVector, Usage | ||
|
|
||
|
|
||
| @dataclass | ||
| class QueryResponse(DictLike): | ||
| """Response from a query operation. | ||
|
|
||
| Attributes: | ||
| matches: List of matched vectors with scores. | ||
| namespace: The namespace that was queried. | ||
| usage: Usage information (optional). | ||
| _response_info: Response metadata including LSN headers. | ||
| """ | ||
|
|
||
| matches: List[ScoredVector] | ||
| namespace: str | ||
| usage: Optional[Usage] = None | ||
| _response_info: ResponseInfo = field( | ||
| default_factory=lambda: cast(ResponseInfo, {"raw_headers": {}}), repr=True, compare=False | ||
| ) |
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
both versions are 3.10?