Sarufi NodeJS SDK to help you interact with SARUFI platform inspired by Python Sarufi SDK
- Installation
1.1 Installation - Use
2.1. Get your api key
2.1. Create an empty chatbot
2.3. Updating your bot
2.4. Get bot by id
2.5. Get bots
2.6. Delete bot
2.7. Start conversation
2.8. All responses details
From terminal in the root directory of your project, run
npm i sarufi
import sarufi from sarufi
Head to Sarufi, copy your api_key and login:
sarufi.login({ api_key: YOUR_API_KEY })
We supply chatbot details
Request payload
{
"name": "YOUR AWESOME BOT NAME",
"description": "PUT DESCRIPTION HERE",
"industry": "YOUR BOT INDUSTRY",
"intents": {},
"flows": {},
}
Then we call
// call this first if you haven't logged in.
sarufi.login({ api_key: YOUR_API_KEY })
sarufi.createBot({bot: REQUEST PAYLOAD})
NB:
For detailed description of intents and flows to be used in conversation, refer to Python Sarufi SDK Docs
Response for successful bot creation
{
"success": true,
"bot": { "name": "YOUR AWESOME BOT NAME",
"description": "PUT DESCRIPTION HERE",
"user_id": "YOUR ID",
"industry": "YOUR BOT INDUSTRY",
"intents": {}, //intents if they were supplied
"flows": {}, //flows if they were supplied
"updated_at": "DATE THE BOT WAS LAST UPDATED",
"id": "BOT ID",
"model_name": "BOT MODEL NAME",
"created_at": "DATE THE BOT WAS CREATED"
},
"chat": "({message: string, chat_id?: uknown}) => RETURNS CHAT RESPONSE" //A callable method that starts a chat with your bot, it takes in a string message and optional chat ID
}
Updating a bot, takes in the same arguments as creating a bot with addition of bot id
Request
// api_key is optional
sarufi.updateBot({bot: REQUEST PAYLOAD, id: YOUR BOT ID, api_key: YOUR_API_KEY})
Response on success, is the same as the response for creating a bot
We call the following method on sarufi
and pass the bot id
Request
// api_key is optional
sarufi.getBot({id: BOT ID, api_key: YOUR_API_KEY})
Response on success, is the same as the response for creating and updating a bot
We call the following method on sarufi
and pass the bot id
Request
//For version 0.0.1-Beta
sarufi.getBots()
//For versions 0.0.2-Beta and above,
sarufi.getBots({api_key: YOUR_API_KEY}) //This accepts optional paramemters url and api key for persisted authorization tokens.
Response on success
{
"success": true,
"bots": [] // Array of all bots you created
}
We call the following method on sarufi
and pass the bot id
// api_key is optional
sarufi.deleteBot({id: BOT ID, api_key: YOUR_API_KEY})
Response on success
{
"success": true,
"message": "A MESSAGE STATING THAT YOUR BOT HAS BEEN DELETED"
}
There are two methods for this, i.e
- bot.chat() this requires us to get a bot we want to have a conversation with and calling a chat method
- sarufi.chat() this requires a required message, required bot_id and an optional chat_id as request arguments
// api_key is optional
// bot.chat()
const bot = await sarufi.getBot({id: 'OUR BOT ID', api_key: YOUR_API_KEY})
await bot.chat({message: 'Yooh', channel: 'whatsapp'}) //channel is optional (Default is general)
//sarufi.chat()
await sarufi.chat({message: 'Hey', bot_id: bot.id, chat_id: 'HEYOO', api_key: YOUR_API_KEY, channel: 'whatsapp'})
Response on success
// General Channel
{
"message": string| number | unknown | [string] | Record<string, unknown> | [Record<string, unknown>],
"success": true,
"memory": { [key: string]: string | unknown},
[key: string]: string | unknown
}
// Whatsapp Channel
{
"actions": Array<{
"send_message"?: string[];
"send_button"?: any;
"send_reply_button"?: {
"type": string;
"body": { "text": string };
"action": any
};
"send_image"?: Array<{
"link": string;
"caption": string
}>;
"send_audio"?: any;
"send_videos"?: any;
}>;,
"success": true,
"memory": { [key: string]: string | unknown},
}
Success
property that shows whether or not the request was successful- For failed requests, the response's success property will be false and additional properties for tracing will be added to the response object
Example of failed request
{
"success": false,
"message": "MESSAGE", //an error message explaining the error
"code": "string",
"status": "NUMBER",
}
Although an error response can have more than those properties, when the status is 500, that will denote an error occured within the sarufi otherwise it will be from an error originating from the remote sarufi server.
NB
: For detailed documentation, please visit the Python Sarufi SDK Docs