rain-engine-core 0.1.0

Provider-neutral event kernel for RainEngine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Append-only ledger records and replay projections.
//!
//! The ledger is the source of truth for agent state. Runtime services may cache
//! projections, but they must be reconstructable from these records.
#![allow(unused_imports)]

pub use crate::types::{
    ApprovalResolutionRecord, CoordinationClaimRecord, DelegationRecord, KernelEvent,
    KernelEventRecord, NewSessionRecord, OutcomeRecord, PendingApprovalRecord, ProviderCacheRecord,
    ProviderUsageRecord, RecordPage, RecordPageQuery, SessionListQuery, SessionRecord,
    SessionRecordKind, SessionSnapshot, SessionSummary, StoredSessionRecord, ToolCallRecord,
    ToolResultRecord, TriggerRecord,
};