Adds referent tracking, session graph traversal, unknown-domain gating, correction propagation, compositional surface assembly, and regression coverage. Follow-up fixes included before merge: - split probe/commit/finalize turn flow so unknown-domain checks run before current-query vault writes - record real input tokens and input versors for sync and async session paths - return true graph distances from backward walks and consume them in correction decay - synchronize corrected graph outputs into vault-backed recall and live referent state - regenerate correction responses from corrected context rather than correction text - keep coreference pronouns lowercase in question bodies - centralize elaboration-string construction to avoid plan/surface drift - add targeted dialogue fluency regression tests
11 lines
250 B
Python
11 lines
250 B
Python
from .context import SessionContext
|
|
from .referents import ReferentRegistry
|
|
from .graph import SessionGraph
|
|
from .correction import CorrectionPass
|
|
|
|
__all__ = [
|
|
"SessionContext",
|
|
"ReferentRegistry",
|
|
"SessionGraph",
|
|
"CorrectionPass",
|
|
]
|