pub struct T;Expand description
The T namespace — static factory methods for tool composition.
Implementations§
Source§impl T
impl T
Sourcepub fn function(f: Arc<dyn ToolFunction>) -> ToolComposite
pub fn function(f: Arc<dyn ToolFunction>) -> ToolComposite
Register a function tool.
Sourcepub fn google_search() -> ToolComposite
pub fn google_search() -> ToolComposite
Add Google Search built-in tool.
Sourcepub fn url_context() -> ToolComposite
pub fn url_context() -> ToolComposite
Add URL context built-in tool.
Sourcepub fn code_execution() -> ToolComposite
pub fn code_execution() -> ToolComposite
Add code execution built-in tool.
Sourcepub fn simple<F, Fut>(
name: impl Into<String>,
description: impl Into<String>,
f: F,
) -> ToolComposite
pub fn simple<F, Fut>( name: impl Into<String>, description: impl Into<String>, f: F, ) -> ToolComposite
Create a simple tool from a name, description, and async closure.
Sourcepub fn fn_tool<F, Fut>(
name: impl Into<String>,
description: impl Into<String>,
f: F,
) -> ToolComposite
pub fn fn_tool<F, Fut>( name: impl Into<String>, description: impl Into<String>, f: F, ) -> ToolComposite
Alias for simple — matches upstream Python T.fn().
Named fn_tool because fn is a reserved keyword in Rust.
Sourcepub fn confirm(tool: ToolComposite, message: &str) -> ToolComposite
pub fn confirm(tool: ToolComposite, message: &str) -> ToolComposite
Require user confirmation before each function tool in the composite runs.
The confirmation flag is recorded on the tool’s ToolPolicy and surfaced
to the runtime via PolicyTool::requires_confirmation — it is never
silently dropped. The message becomes the confirmation hint. Built-in and
placeholder entries are left unchanged.
Sourcepub fn timeout(tool: ToolComposite, duration: Duration) -> ToolComposite
pub fn timeout(tool: ToolComposite, duration: Duration) -> ToolComposite
Bound each function tool in the composite by a timeout.
At dispatch the tool’s future is raced against the duration; on elapse the
call returns ToolError::Timeout.
Built-in and placeholder entries are left unchanged.
Sourcepub fn cached(tool: ToolComposite) -> ToolComposite
pub fn cached(tool: ToolComposite) -> ToolComposite
Memoize each function tool’s successful results.
Results are cached by (tool name, canonical-JSON args); repeat calls with
identical arguments return the cached value without re-invoking the tool.
Errors are not cached. Built-in/placeholder entries are left unchanged.
Sourcepub fn toolset(tools: Vec<Arc<dyn ToolFunction>>) -> ToolComposite
pub fn toolset(tools: Vec<Arc<dyn ToolFunction>>) -> ToolComposite
Combine multiple tool functions into a single composite.
Sourcepub fn agent(
name: impl Into<String>,
description: impl Into<String>,
agent: impl TextAgent + 'static,
) -> ToolComposite
pub fn agent( name: impl Into<String>, description: impl Into<String>, agent: impl TextAgent + 'static, ) -> ToolComposite
Wrap a TextAgent as a tool (shorthand for creating an agent tool entry).
When invoked, the agent runs via BaseLlm::generate() and returns its
text output as the tool result. State is shared with the parent session.
Sourcepub fn mcp(params: impl Into<String>) -> ToolComposite
pub fn mcp(params: impl Into<String>) -> ToolComposite
Create an MCP (Model Context Protocol) toolset entry.
params is the connection string (e.g. a URL or command) used to
establish the MCP session at runtime.
Sourcepub fn mock(
name: impl Into<String>,
description: impl Into<String>,
response: Value,
) -> ToolComposite
pub fn mock( name: impl Into<String>, description: impl Into<String>, response: Value, ) -> ToolComposite
Create a mock tool that returns a fixed response.
Useful for testing and prototyping without real tool implementations.
Sourcepub fn schema(name: impl Into<String>, schema: Value) -> ToolComposite
pub fn schema(name: impl Into<String>, schema: Value) -> ToolComposite
Create a schema-defined tool (placeholder/marker).
The tool’s parameters are defined by the given JSON Schema value.
Sourcepub fn transform<F, Fut>(tool: ToolComposite, f: F) -> ToolComposite
pub fn transform<F, Fut>(tool: ToolComposite, f: F) -> ToolComposite
Wrap each tool entry in a composite with a result transformer.
The transformer function is applied to the tool’s output value before it is returned to the model.
Auto Trait Implementations§
impl Freeze for T
impl RefUnwindSafe for T
impl Send for T
impl Sync for T
impl Unpin for T
impl UnwindSafe for T
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Layered].