enki-next 0.5.79

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
18
#![doc = include_str!("../README.md")]

#[macro_use]
mod macros;

pub mod agent;
pub mod llm;
pub mod memory;
pub mod message;
pub mod registry;
pub mod runtime;
pub mod tooling;
pub mod workflow;

pub use workflow::{
    TaskDefinition, WorkflowDefinition, WorkflowRequest, WorkflowRunState, WorkflowRuntime,
    WorkflowTaskRunner,
};