pub enum PerceptionIntent {
Recognize,
Understand,
Locate,
Retrieve,
Explore,
Reason,
Validate,
Compare,
Track,
}Expand description
Perception intent - why the model needs to perceive context.
Variants§
Recognize
Identify or classify an entity.
Understand
Understand semantics, logic, or behavior.
Locate
Find the location or path of a resource.
Retrieve
Recall relevant information from accumulated knowledge.
Explore
Understand the overall structure of an environment or system.
Reason
Infer causality or logic based on existing information.
Validate
Confirm whether an assumption or state is correct.
Compare
Compare similarities and differences.
Track
Get current status or history of a process.
Trait Implementations§
Source§impl Clone for PerceptionIntent
impl Clone for PerceptionIntent
Source§fn clone(&self) -> PerceptionIntent
fn clone(&self) -> PerceptionIntent
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 PerceptionIntent
impl Debug for PerceptionIntent
Source§impl<'de> Deserialize<'de> for PerceptionIntent
impl<'de> Deserialize<'de> for PerceptionIntent
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
Source§impl Display for PerceptionIntent
impl Display for PerceptionIntent
Auto Trait Implementations§
impl Freeze for PerceptionIntent
impl RefUnwindSafe for PerceptionIntent
impl Send for PerceptionIntent
impl Sync for PerceptionIntent
impl Unpin for PerceptionIntent
impl UnsafeUnpin for PerceptionIntent
impl UnwindSafe for PerceptionIntent
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