Extensible canonical internal processing refactoring

This commit is contained in:
2026-05-04 11:06:11 +02:00
parent 4a16ccf1e1
commit d977f9e67c
20 changed files with 1815 additions and 16 deletions

View File

@@ -5,8 +5,15 @@ from markitect_tool.query.engine import (
QueryMatch,
extract_document,
extract_document_jsonpath,
extract_document_with_engine,
query_document,
query_document_jsonpath,
query_document_with_engine,
)
from markitect_tool.query.registry import (
QueryEngine,
QueryEngineRegistry,
default_query_engine_registry,
)
__all__ = [
@@ -14,6 +21,11 @@ __all__ = [
"QueryMatch",
"extract_document",
"extract_document_jsonpath",
"extract_document_with_engine",
"query_document",
"query_document_jsonpath",
"query_document_with_engine",
"QueryEngine",
"QueryEngineRegistry",
"default_query_engine_registry",
]