shell
cargo add baichat-rs
``` rust extern crate baichat_rs;
use baichat_rs::ThebAI;
async fn main() -> Result<(), Box
let mut ai = ThebAI::new(None);
let r = ai.ask("Hello, world!", None).await?;
let response = r[r.len() - 1].text.clone();
println!("{}", response);
Ok(())
} ```