rskit-agent 0.2.0-alpha.1

Agentic loop — Provider + Tools + Hooks in a turn-based execution engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Agent result types, events, and context strategies.

mod event;
mod limit;
mod result;
mod stop_reason;
mod strategy;

pub use event::AgentEvent;
pub use limit::AgentLimitError;
pub use result::AgentResult;
pub use stop_reason::StopReason;
pub use strategy::{ContextStrategy, FailStrategy, TruncateStrategy};