localharness 0.38.0

A Rust-native agent SDK with pluggable LLM backends (Gemini today). Streaming, custom tools, safety policies, background triggers — zero external binaries.
Documentation
1
2
3
4
5
6
7
8
//! Re-export shim — the built-in tool registry moved to [`crate::builtins`].
//!
//! The builtins are backend-NEUTRAL (every backend registers from them), so
//! they now live at the crate root instead of inside the Gemini backend
//! (their historical home — Gemini was written first). This shim keeps every
//! existing `crate::backends::gemini::tools::...` import path compiling.

pub use crate::builtins::*;