1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))] 2 3pub mod error; pub use error::{ Result, Error }; 4pub mod prelude; 5 6pub mod chat; pub use chat::*; 7pub mod embedding; pub use embedding::*;