Skip to main content

gemini_live_tools/
lib.rs

1//! Reusable tool families for Gemini Live hosts.
2//!
3//! This crate owns tool definitions whose execution model is stable across
4//! hosts. It intentionally does not own host-specific composition, UI, device
5//! state, or persistence. Concrete applications choose which tool families to
6//! expose and how to combine them with host-local capabilities.
7
8pub mod timer;
9pub mod workspace;