A rust package to help you interact with the Sarufi platform inspired by Python Sarufi SDK
bash
cargo add sarufi
```rust
use sarufi::Sarufi let apikey = std::env::var("YOURSARUFIAPIKEY") let api = Sarufi(api_key).unwrap() ```
```rust
let name = "My Rusty Chatbot"; let description = Some("A rusty chatbot created using Sarufi API"); let industry = Some("Technology");
let bot = api.create_bot( name, description, industry, ).await?
bot.name bot.id
``` Check out the file test.rs for more examples