pub struct InterpretabilityStats {
pub analyses: u64,
pub circuits_found: u64,
pub danger_patterns: u64,
pub jailbreaks_detected: u64,
pub safety_activations: u64,
}Expand description
Statistics for interpretability engine
Fields§
§analyses: u64Total analyses performed
circuits_found: u64Circuits discovered
danger_patterns: u64Dangerous patterns detected
jailbreaks_detected: u64Jailbreak attempts detected
safety_activations: u64Safety circuit activations
Trait Implementations§
Source§impl Clone for InterpretabilityStats
impl Clone for InterpretabilityStats
Source§fn clone(&self) -> InterpretabilityStats
fn clone(&self) -> InterpretabilityStats
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 InterpretabilityStats
impl Debug for InterpretabilityStats
Source§impl Default for InterpretabilityStats
impl Default for InterpretabilityStats
Source§fn default() -> InterpretabilityStats
fn default() -> InterpretabilityStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InterpretabilityStats
impl RefUnwindSafe for InterpretabilityStats
impl Send for InterpretabilityStats
impl Sync for InterpretabilityStats
impl Unpin for InterpretabilityStats
impl UnwindSafe for InterpretabilityStats
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