pub struct LoadSkillTool { /* private fields */ }Implementations§
Source§impl LoadSkillTool
impl LoadSkillTool
pub fn new(registry: Arc<CommandRegistry>) -> Self
Sourcepub fn format_body(skill: &LoadedSkill) -> String
pub fn format_body(skill: &LoadedSkill) -> String
Produce the tool-result body for a successfully loaded skill. Shared between user-initiated (slash) and model-initiated (tool) paths.
Trait Implementations§
Source§impl Tool for LoadSkillTool
impl Tool for LoadSkillTool
Source§fn description(&self) -> &str
fn description(&self) -> &str
Human-readable description sent to the model.
Source§fn parameters(&self) -> Value
fn parameters(&self) -> Value
JSON Schema for the tool’s parameters.
Source§fn execute<'life0, 'async_trait>(
&'life0 self,
params: Value,
_ctx: ToolContext,
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
&'life0 self,
params: Value,
_ctx: ToolContext,
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Execute the tool with the given parameters.
Source§fn extension_id(&self) -> Option<&str>
fn extension_id(&self) -> Option<&str>
Owning extension id for tools registered by an extension. Built-in tools return
None.Auto Trait Implementations§
impl Freeze for LoadSkillTool
impl RefUnwindSafe for LoadSkillTool
impl Send for LoadSkillTool
impl Sync for LoadSkillTool
impl Unpin for LoadSkillTool
impl UnsafeUnpin for LoadSkillTool
impl UnwindSafe for LoadSkillTool
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.