use aionic::openai::{Moderation, OpenAI}; #[tokio::main] async fn main() -> Result<(), Box> { let resp = OpenAI::::new() .moderate("I want to kill you.") .await?; println!("Moderation: {:?}", resp); Ok(()) }