pub struct SkillDefinition {
pub id: String,
pub name: String,
pub description: String,
pub keywords: Vec<String>,
pub examples: Vec<String>,
pub input_formats: Vec<String>,
pub output_formats: Vec<String>,
}Expand description
Skill definition for agent capabilities.
Skills describe what an agent can do, including keywords for intent matching, examples for documentation, and supported input/output formats.
Fields§
§id: StringUnique identifier for the skill
name: StringHuman-readable name
description: StringDescription of what this skill does
keywords: Vec<String>Keywords for intent classification
examples: Vec<String>Example queries that trigger this skill
input_formats: Vec<String>Supported input formats (e.g., “text”, “file”, “data”)
output_formats: Vec<String>Supported output formats (e.g., “text”, “file”, “data”)
Trait Implementations§
Source§impl Clone for SkillDefinition
impl Clone for SkillDefinition
Source§fn clone(&self) -> SkillDefinition
fn clone(&self) -> SkillDefinition
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 SkillDefinition
impl Debug for SkillDefinition
Source§impl<'de> Deserialize<'de> for SkillDefinition
impl<'de> Deserialize<'de> for SkillDefinition
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 SkillDefinition
impl RefUnwindSafe for SkillDefinition
impl Send for SkillDefinition
impl Sync for SkillDefinition
impl Unpin for SkillDefinition
impl UnsafeUnpin for SkillDefinition
impl UnwindSafe for SkillDefinition
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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