enki-next 0.5.81

Enki's Rust agent runtime, workflow engine, and shared core abstractions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod builder;
mod channels;
mod core;
pub mod multi_agent;
mod types;

pub use builder::RuntimeBuilder;
pub use channels::{CliChannel, InteractiveChannel};
pub use core::Runtime;
pub use multi_agent::{MultiAgentRuntime, MultiAgentRuntimeBuilder};
pub use types::{
    InputChannel, RuntimeDetailedResponse, RuntimeEvent, RuntimeHandler, RuntimeRequest,
    RuntimeResponse, SessionContext,
};

#[cfg(test)]
mod tests;