nexil 0.6.2

Provider-agnostic LLM toolkit — streaming, tool calls, tape storage, OAuth
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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, ToolInput, ToolInputItem, ToolResult, ToolSet,
    normalize_tools, tool_from_fn, tool_from_schema,
};