llm 1.3.8

A Rust library unifying multiple LLM backends.
Documentation
//! Tool handlers for built-in tools.
//!
//! Each handler implements the tool execution logic.

mod file_read;
mod ls;
mod patch;
mod plan;
mod rollback;
mod search;
mod shell;
mod shell_write;

pub use file_read::file_read_tool;
pub use ls::ls_tool;
pub use patch::patch_tool;
pub use plan::plan_tool;
pub use rollback::rollback_tool;
pub use search::search_tool;
pub use shell::shell_tool;
pub use shell_write::shell_write_tool;