Sources
Domain adapters connect to ephemerides, exchange quotes and arbitrary series.
System design
A four-layer pipeline from raw sources to LLM-ready context. Every layer is isolated and every exporter is replaceable, so the core remains stable as new domains are added.
Layers
Data moves through progressively richer representations, from a raw stream to a meaningful prompt.
Domain adapters connect to ephemerides, exchange quotes and arbitrary series.
Domain-specific extraction logic understands each source and its semantics.
Normalization, interval tokenization and markers use reproducible operations.
Prompt blocks, JSON schemas or structured objects are ready for a model.
Principles
Four rules keep every pipeline predictable as the kit expands.
One input produces one context with no hidden randomness between stages.
The meaning of data survives from source to prompt.
A new domain means a new exporter, not a rewritten architecture.
Transforms assemble into explicit, testable chains.
The FENKI core owns Export through Context. Sources and models stay outside the boundary, keeping the pipeline portable.