pub struct ToolDefinition {
pub name: String,
pub description: String,
pub parameters_json: String,
pub execute: ToolExecutor,
pub effect: ToolEffect,
}Fields§
§name: String§description: String§parameters_json: String§execute: ToolExecutor§effect: ToolEffectImplementations§
Source§impl ToolDefinition
impl ToolDefinition
pub fn new_fn( name: impl Into<String>, description: impl Into<String>, parameters_json: impl Into<String>, execute: ToolExecuteFn, ) -> Self
Sourcepub fn new_boxed(
name: impl Into<String>,
description: impl Into<String>,
parameters_json: impl Into<String>,
execute: ToolExecuteBox,
) -> Self
pub fn new_boxed( name: impl Into<String>, description: impl Into<String>, parameters_json: impl Into<String>, execute: ToolExecuteBox, ) -> Self
Create a tool definition with a boxed closure executor (for stateful tools).
pub fn with_effect(self, effect: ToolEffect) -> Self
Auto Trait Implementations§
impl !RefUnwindSafe for ToolDefinition
impl !UnwindSafe for ToolDefinition
impl Freeze for ToolDefinition
impl Send for ToolDefinition
impl Sync for ToolDefinition
impl Unpin for ToolDefinition
impl UnsafeUnpin for ToolDefinition
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
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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>
Converts
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>
Converts
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