pub struct ToolMetadata {
pub name: String,
pub description: String,
pub parameters: Value,
pub return_schema: Option<Value>,
pub streaming: bool,
pub categories: Vec<String>,
pub version: Option<String>,
pub author: Option<String>,
pub documentation_url: Option<String>,
pub deprecated: bool,
pub deprecation_message: Option<String>,
}Expand description
Tool metadata for discovery
Fields§
§name: StringTool name
description: StringTool description
parameters: ValueTool parameters schema (JSON Schema)
return_schema: Option<Value>Tool return value schema (JSON Schema)
streaming: boolWhether this tool supports streaming responses
categories: Vec<String>Tool categories for organization
version: Option<String>Tool version (optional)
Tool author (optional)
documentation_url: Option<String>Tool documentation URL (optional)
deprecated: boolWhether this tool is deprecated
deprecation_message: Option<String>Deprecation message if tool is deprecated
Trait Implementations§
Source§impl Clone for ToolMetadata
impl Clone for ToolMetadata
Source§fn clone(&self) -> ToolMetadata
fn clone(&self) -> ToolMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ToolMetadata
impl Debug for ToolMetadata
Source§impl<'de> Deserialize<'de> for ToolMetadata
impl<'de> Deserialize<'de> for ToolMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ToolMetadata
impl RefUnwindSafe for ToolMetadata
impl Send for ToolMetadata
impl Sync for ToolMetadata
impl Unpin for ToolMetadata
impl UnwindSafe for ToolMetadata
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