kaiba 0.5.0

Kaiba domain library - Core types and interfaces for AI persona system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Domain Services
//!
//! Pure business logic that doesn't fit into entities.
//! These services orchestrate domain operations without external dependencies.

mod emphasis_parser;
mod graph_builder;

pub use emphasis_parser::*;
pub use graph_builder::*;

// TODO: Move decision, digest, self_learning logic here
// For now, these remain in the application layer until refactored