sarufi-rs 🦀
A rust package to help you interact with the Sarufi platform inspired by Python Sarufi SDK
Installation
Authentication
>>> use Sarufi
>>> let api_key = var
>>> let api = Sarufi.unwrap
Creating a bot
>>> let name = "My Rusty Chatbot";
>>> let description = Some;
>>> let industry = Some;
>>> let bot = api.create_bot.await?
>>> bot.name
>>> bot.id
Check out the file test.rs for more examples