agentool 0.2.0

Rust toolkit for AI agents: JSON Schema-defined tools for workspace files, search, web, Markdown, Git, memory, human-in-the-loop hooks, and todos.
Documentation
1
2
3
4
5
6
7
//! Default [`super::WebSearchBackend`] / [`super::WebFetchBackend`] implementations.

mod direct_fetch;
mod duckduckgo;

pub use direct_fetch::DirectFetchBackend;
pub use duckduckgo::DuckDuckGoSearchBackend;