Construct universal modules with decoded options
This commit is contained in:
@@ -17,13 +17,15 @@ validator registry. Package-family registrars compose those leaf registrations
|
||||
into the production catalog and own family-level policy such as default
|
||||
validator chains and prompt asset collection.
|
||||
|
||||
Production extract, merge, normalize, and validator packages currently use the
|
||||
explicit legacy raw registration APIs. Typed registration is framework-ready,
|
||||
but no production artifact kind or codec is registered yet. All selected
|
||||
production implementations are constructed during pipeline preparation through
|
||||
temporary adapters around their existing zero-argument constructors. Their raw
|
||||
option maps and LLM clients remain operation inputs until each implementation
|
||||
migrates to its construction-owned decoder and injected dependencies.
|
||||
Production input, chunk, and output packages register strict option decoders and
|
||||
run-local builders. Preparation decodes their options into implementation-owned
|
||||
values and injects dependencies; their operation requests contain run context,
|
||||
not raw option maps or LLM clients. Production extract, merge, normalize, and
|
||||
validator packages still use the explicit legacy raw registration APIs and
|
||||
temporary adapters around zero-argument constructors. Their raw option maps and
|
||||
LLM clients remain operation inputs while that part of the catalog migrates.
|
||||
Typed registration is framework-ready, but no production artifact kind or
|
||||
codec is registered yet.
|
||||
|
||||
Specs expose capability and execution metadata without constructing an
|
||||
implementation. Registry entries separately expose option validation and
|
||||
@@ -51,8 +53,8 @@ evidence. The resolver and materializer behavior is described in
|
||||
The adapter decodes the supported transcript JSON, selects the source identity,
|
||||
computes canonical source provenance, validates segments, and maps each segment
|
||||
into a generic source unit with a self-reference plus speaker and timestamp
|
||||
metadata. Its spec advertises the transcript capabilities consumed by D&D
|
||||
modules.
|
||||
metadata. It accepts no module options. Its spec advertises the transcript
|
||||
capabilities consumed by D&D modules.
|
||||
|
||||
Parsing is strict about required values and duplicate unit IDs but deliberately
|
||||
ignores unrelated Seriatim fields. The external format and derived-identity
|
||||
@@ -72,6 +74,8 @@ canonical source reference from those unit references.
|
||||
The accepted options and defaults are defined in
|
||||
[Configuration](../config.md#implemented-production-modules). Generic
|
||||
framework validation canonicalizes the returned unit slices before extraction.
|
||||
The chunker decodes its options during construction and retains only the typed
|
||||
window settings used by `Chunk`.
|
||||
|
||||
### `internal/modules/dnd/chunk/scenes`
|
||||
|
||||
@@ -79,6 +83,9 @@ The scene chunker prepares a structured Scriptorium request from the full
|
||||
transcript, session, and optional D&D reference inputs. It validates the model's
|
||||
scene boundaries against source-unit IDs and converts them into deterministic
|
||||
chunks with canonical source references spanning each scene's units.
|
||||
Preparation injects the shared structured LLM client into the chunker; `Chunk`
|
||||
supplies only the run-specific profile, session, source, references, and
|
||||
metadata.
|
||||
|
||||
Scene validation requires sequential, contiguous, non-overlapping coverage from
|
||||
the first source unit through the last. Each chunk contains JSON scene content
|
||||
|
||||
Reference in New Issue
Block a user