nexil 0.9.0

Provider-agnostic LLM toolkit — streaming, tool calls, tape storage, OAuth
1
2
3
4
5
6
7
8
9
//! Tooling helpers for Conduit.

pub mod context;
pub mod executor;
pub mod schema;

pub use context::ToolContext;
pub use executor::{ToolCallResponse, ToolExecutor};
pub use schema::{Tool, ToolAction, ToolHandlerFn, ToolResult, ToolSet};