| 1 | """Compatibility shim for the document_query plugin extraction.""" |
| 2 | |
| 3 | from plugins._document_query.helpers.document_query import ( |
| 4 | DEFAULT_SEARCH_THRESHOLD, |
| 5 | DocumentQueryHelper, |
| 6 | DocumentQueryStore, |
| 7 | ) |
| 8 | |
| 9 | __all__ = [ |
| 10 | "DEFAULT_SEARCH_THRESHOLD", |
| 11 | "DocumentQueryHelper", |
| 12 | "DocumentQueryStore", |
| 13 | ] |