tiny-agent 0.3.0

一个小而完整的 Rust LLM Agent 运行时:可中断、可恢复、可观测、可插拔的 agent loop / A small but complete LLM agent runtime in Rust — an interruptible, resumable, observable, pluggable agent loop.
Documentation
pub mod checkpoint;
pub mod core;
pub mod error;
pub mod messages;
pub mod middleware;
mod observability;
pub mod providers;
pub mod sandbox;
pub mod shared;
pub mod skills;
pub mod state;
pub mod storage;
pub mod tasks;
pub mod telemetry;
pub mod tools;
pub mod transcript;

pub use core::{
    Agent, AgentFailure, AgentRunTime, AgentRunTimeBuilder, AgentRuntimeConfig,
    AgentRuntimeConfigInput, AgentRuntimeOptions, AgentRuntimeStorage, AgentTurn, FailureKind,
    ToolRunState,
};
pub use error::{AgentError, StorageError};
pub use shared::UserInteraction;