tirea 0.5.0

Rust AI agent framework with typed state, CRDT conflict resolution, and multi-protocol serving
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(not(feature = "ag-ui"))]
#[test]
fn tirea_does_not_reexport_ag_ui_protocol_types() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/ui/no_agui_reexports.rs");
}

#[cfg(feature = "ag-ui")]
#[test]
fn tirea_reexports_ag_ui_protocol_module_when_enabled() {
    let _ = std::mem::size_of::<tirea::ag_ui::Event>();
}