caliban-tools-builtin 0.4.0

Built-in tools (Read/Write/Edit/Bash/Glob/Grep/WebFetch) for the caliban agent harness — internal crate for the caliban binary; no API stability, pin exact versions
Documentation
1
2
3
4
5
6
7
8
//! Web tools — `WebFetch` (URL → markdown) and `WebSearch` (provider-backed
//! web search).

pub mod web_fetch;
pub mod web_search;

pub use web_fetch::WebFetchTool;
pub use web_search::{Provider, SearchHit, WebSearchTool};