-
Notifications
You must be signed in to change notification settings - Fork 244
feat: add pre-filtering support #331
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
45 commits
Select commit
Hold shift + click to select a range
651ad8c
feat: add annlite filter
davidbp 06be300
refactor: black style
davidbp 2df4bc0
feat: add filter parameter to interface
alaeddine-13 4768f3e
fix: linting
alaeddine-13 035c8e9
feat: add columns to backend configs
davidbp 30741b8
fix: missing type hint
davidbp 1f63703
feat: add column to weaviate schema
davidbp 232a419
fix: add col type mapping for weaviate
alaeddine-13 a430a1f
Merge branch 'main' into feat-add-annlite-filtering
alaeddine-13 d33ddf2
fix: default to empty list if None
alaeddine-13 38be2d7
Merge branch 'feat-add-annlite-filtering' of https://github.com/jina-…
alaeddine-13 c1a3fdb
feat: set attributes in _set_doc_by_id for weaviate
alaeddine-13 e7df1a0
fix: columns are added as properties not classes
alaeddine-13 d249573
feat: use filter in _find for weaviate
alaeddine-13 2b3d91a
fix: set indexInverted to True to enable filtering for weaviate
alaeddine-13 a16fe2a
fix: weaviate error handling message
davidbp 64b5532
feat: pre filtering for qdrant
davidbp 79b7db7
test: pre filtering in weaviate and qdrant
davidbp c3b5aea
refactor: unify pre-filtering tests of all backends
alaeddine-13 a6d5d30
fix: map col types in annlite
alaeddine-13 a548c9f
fix: start_storage at module level
alaeddine-13 aacf3fe
test: cover both API usages
alaeddine-13 1421ee7
chore: address review
alaeddine-13 1986f82
chore: address review
alaeddine-13 a497a85
fix: cryptographic random generator for weaviate classnames
alaeddine-13 df0c35f
Merge branch 'main' into feat-add-annlite-filtering
alaeddine-13 200b83c
refactor: make filter weaviate more readable
davidbp b4991df
docs: showcase pre-filtering in annlite
davidbp d0e18e8
docs: document filter parameter
alaeddine-13 4d65d70
refactor: refactor find type checking
alaeddine-13 d6bbb5a
docs: add qdrant filtering documentation
davidbp b9c9da8
Merge branch 'feat-add-annlite-filtering' of https://github.com/jina-…
davidbp cbfaafe
docs: add filter weaviate
davidbp d8d6664
docs: use context manager in examples
davidbp b2936bd
test: cover wrong filter format for weaviate
alaeddine-13 3f3f3e9
Merge branch 'feat-add-annlite-filtering' of https://github.com/jina-…
alaeddine-13 92c637a
test: cover unsupported pre-filtering for memory and elastic
alaeddine-13 e29434f
Merge branch 'main' into feat-add-annlite-filtering
alaeddine-13 240ef89
Merge branch 'main' into feat-add-annlite-filtering
alaeddine-13 d368a58
test: update test_embedding_ops_error
alaeddine-13 7cde83b
docs: add weaviate filter reference
davidbp eff948f
Merge branch 'feat-add-annlite-filtering' of https://github.com/jina-…
davidbp 3d4d13f
docs: fix typos
davidbp d1dd27c
docs: reference backend filter query language definition
alaeddine-13 bbc1473
docs: fix weaviate example
alaeddine-13 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,8 @@ | |
| Optional, | ||
| TYPE_CHECKING, | ||
| Union, | ||
| List, | ||
| Tuple, | ||
| ) | ||
|
|
||
| from .helper import initialize_table | ||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.