pub struct DoomLoopDetected {
pub run_id: RunId,
pub description: String,
pub timestamp: DateTime<Utc>,
}Expand description
Emitted when the agent is detected to be in a repetitive tool call cycle.
Fields§
§run_id: RunIdRun identifier.
description: StringDescription of the doom loop pattern detected.
timestamp: DateTime<Utc>When the doom loop was detected.
Trait Implementations§
Source§impl Clone for DoomLoopDetected
impl Clone for DoomLoopDetected
Source§fn clone(&self) -> DoomLoopDetected
fn clone(&self) -> DoomLoopDetected
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DoomLoopDetected
impl Debug for DoomLoopDetected
Source§impl<'de> Deserialize<'de> for DoomLoopDetected
impl<'de> Deserialize<'de> for DoomLoopDetected
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DoomLoopDetected, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DoomLoopDetected, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for DoomLoopDetected
impl Serialize for DoomLoopDetected
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for DoomLoopDetected
impl RefUnwindSafe for DoomLoopDetected
impl Send for DoomLoopDetected
impl Sync for DoomLoopDetected
impl Unpin for DoomLoopDetected
impl UnsafeUnpin for DoomLoopDetected
impl UnwindSafe for DoomLoopDetected
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