kitt_score 0.1.0

Decision engine at the core of Project KITT — in-memory stateful matching with pluggable scoring backends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The `Engine<T>` — the crate's primary orchestrator.

pub mod builder;
pub(crate) mod compiled_scorer;
pub mod config;
#[allow(clippy::module_inception)]
pub mod engine;
pub mod ingest;

pub use builder::{BuildError, EngineBuilder};
pub use engine::Engine;
pub use ingest::{Ingested, Outcome};