1
0
Fork 0

feat(okf): wire adapter into public API — import_bundle carries link graph, package exposes okf namespace (TDD, +2)

This commit is contained in:
Kjell Tore Guttormsen 2026-07-06 09:44:41 +02:00
commit 07e0b2153a
3 changed files with 31 additions and 2 deletions

View file

@ -56,6 +56,7 @@ from .grounding import (
no_grounding_check,
DEFAULT_GROUNDING_CHECK,
)
from . import okf
__version__ = "0.1.0"
@ -142,4 +143,6 @@ __all__ = [
"SourceGroundingCheck", "no_grounding_check", "DEFAULT_GROUNDING_CHECK",
# §6 bookends
"prepare_input", "screen_output", "PreparedInput",
# OKF adapter (v0.2) — the format-specific layer, as its own namespace
"okf",
]