pub enum ReasoningMode {
None,
Direct,
ChainOfThoughtLike,
TreeOfThoughtLike,
GraphOfThoughtLike,
ProgramAided,
ToolAugmented,
Reflective,
Custom,
}Variants§
None
Direct
ChainOfThoughtLike
TreeOfThoughtLike
GraphOfThoughtLike
ProgramAided
ToolAugmented
Reflective
Custom
Implementations§
Trait Implementations§
Source§impl Clone for ReasoningMode
impl Clone for ReasoningMode
Source§fn clone(&self) -> ReasoningMode
fn clone(&self) -> ReasoningMode
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 ReasoningMode
impl Debug for ReasoningMode
Source§impl Display for ReasoningMode
impl Display for ReasoningMode
Source§impl FromStr for ReasoningMode
impl FromStr for ReasoningMode
Source§impl Hash for ReasoningMode
impl Hash for ReasoningMode
Source§impl Ord for ReasoningMode
impl Ord for ReasoningMode
Source§fn cmp(&self, other: &ReasoningMode) -> Ordering
fn cmp(&self, other: &ReasoningMode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ReasoningMode
impl PartialEq for ReasoningMode
Source§impl PartialOrd for ReasoningMode
impl PartialOrd for ReasoningMode
impl Copy for ReasoningMode
impl Eq for ReasoningMode
impl StructuralPartialEq for ReasoningMode
Auto Trait Implementations§
impl Freeze for ReasoningMode
impl RefUnwindSafe for ReasoningMode
impl Send for ReasoningMode
impl Sync for ReasoningMode
impl Unpin for ReasoningMode
impl UnsafeUnpin for ReasoningMode
impl UnwindSafe for ReasoningMode
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