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
//! Private runtime helpers for the agent loop.
#![allow(clippy::redundant_pub_crate)]

pub(crate) mod hook_dispatch;
pub(crate) mod llm;
pub(crate) mod request;
pub(crate) mod state;
pub(crate) mod stop;
pub(crate) mod tool_calls;
pub(crate) mod tools;
pub(crate) mod turn;