use anyhow::Result; use crieur_chatbot::run; use dotenv::dotenv; #[tokio::main] async fn main() -> Result<()> { dotenv().ok(); run().await?; Ok(()) }