klieo 0.9.0

Open-source Rust agent framework — typed agents, durable inter-agent comms, local-first.
Documentation
//! Common imports for klieo agent authors.
//!
//! Glob-import this module instead of listing every individual symbol
//! at every call site:
//!
//! ```rust
//! use klieo::prelude::*;
//! ```
//!
//! Equivalent to writing:
//!
//! ```rust,ignore
//! use klieo::{
//!     Agent, AgentContext, Episode, Error, LlmClient,
//!     Message, Role, RunId, RunOptions, ThreadId,
//!     Tool, ToolCtx, ToolDef, ToolInvoker, ToolResult,
//! };
//! ```

pub use klieo_core::agent::{Agent, AgentContext};
pub use klieo_core::error::Error;
pub use klieo_core::ids::{RunId, ThreadId};
pub use klieo_core::llm::{LlmClient, Message, Role, ToolDef};
pub use klieo_core::memory::{Episode, ToolResult};
pub use klieo_core::runtime::RunOptions;
pub use klieo_core::tool::{Tool, ToolCtx, ToolInvoker};