proto-blue-api 0.2.1

AT Protocol high-level API: agent, rich text, moderation, generated types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Moderation engine for AT Protocol.
//!
//! Implements label-based content moderation, mute word matching,
//! and priority-based decision aggregation for UI contexts.

pub mod decision;
pub mod labels;
pub mod mutewords;
pub mod types;

pub use decision::ModerationDecision;
pub use labels::{find_label_def, known_labels};
pub use mutewords::{MutedWordMatch, check_muted_words};
pub use types::*;