pub enum IncludeContents {
None,
Default,
}Expand description
Controls what parts of prior conversation history is received by llmagent
Variants§
None
The llmagent operates solely on its current turn (latest user input + any following agent events)
Default
Default - The llmagent receives the relevant conversation history
Trait Implementations§
Source§impl Clone for IncludeContents
impl Clone for IncludeContents
Source§fn clone(&self) -> IncludeContents
fn clone(&self) -> IncludeContents
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 IncludeContents
impl Debug for IncludeContents
Source§impl Default for IncludeContents
impl Default for IncludeContents
Source§fn default() -> IncludeContents
fn default() -> IncludeContents
Returns the “default value” for a type. Read more
Source§impl PartialEq for IncludeContents
impl PartialEq for IncludeContents
impl Copy for IncludeContents
impl Eq for IncludeContents
impl StructuralPartialEq for IncludeContents
Auto Trait Implementations§
impl Freeze for IncludeContents
impl RefUnwindSafe for IncludeContents
impl Send for IncludeContents
impl Sync for IncludeContents
impl Unpin for IncludeContents
impl UnwindSafe for IncludeContents
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