Skip to main content

sage_runtime/tools/
mod.rs

1//! RFC-0011: Tool implementations for Sage agents.
2//!
3//! This module provides the built-in tools that agents can use via
4//! `use ToolName` declarations and `ToolName.method()` calls.
5
6mod http;
7
8pub use http::{HttpClient, HttpResponse};