pub struct ModerationResult {
pub categories: ModerationCategories,
pub category_scores: ModerationCategoryScores,
pub flagged: bool,
}
Expand description
A single moderation result, indicating how the input text matches various policy categories.
Fields§
§categories: ModerationCategories
Boolean flags indicating which categories (hate, self-harm, sexual, etc.) are triggered.
category_scores: ModerationCategoryScores
Floating-point confidence scores for each category.
flagged: bool
Overall flag indicating if the content violates policy (i.e., if the text should be disallowed).
Trait Implementations§
Source§impl Debug for ModerationResult
impl Debug for ModerationResult
Source§impl<'de> Deserialize<'de> for ModerationResult
impl<'de> Deserialize<'de> for ModerationResult
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
Auto Trait Implementations§
impl Freeze for ModerationResult
impl RefUnwindSafe for ModerationResult
impl Send for ModerationResult
impl Sync for ModerationResult
impl Unpin for ModerationResult
impl UnwindSafe for ModerationResult
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