agent-base 0.1.0

A lightweight Agent Runtime Kernel for building AI agents in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
/// The final outcome of an Agent run
///
/// Represents the final state of a run, strictly separated from process events:
/// - Events = process stream
/// - RunOutcome = final result
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum RunOutcome {
    Completed,
    Failed { error: String },
}