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
13
14
15
//! Event types — three distinct structs plus an optional dispatch enum.

pub mod action_ingest;
pub mod attr_set;
pub mod event_enum;
pub mod kind_ref;
pub mod state_update;
pub mod trigger;

pub use action_ingest::ActionIngest;
pub use attr_set::AttrSet;
pub use event_enum::Event;
pub use kind_ref::KindRef;
pub use state_update::StateUpdate;
pub use trigger::Trigger;