PHP code example of alphaolomi / sarufi-php
1. Go to this page and download the library: Download alphaolomi/sarufi-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
alphaolomi / sarufi-php example snippets
use Alphaolomi\Sarufi\Sarufi;
$sarufi = new Sarufi('your_token');
// Create an Empty bot
$bot1 = $sarufi->createBot([
"name" => "YOUR AWESOME BOT NAME",
"description" => "PUT DESCRIPTION HERE",
"industry" => "YOUR BOT INDUSTRY",
"intents" => [],
"flows" => [],
]);
print_r($bot1);
// OR
// From files with intent and metadata
$bot2 = $sarufi->createFromFile(
intents: __DIR__ . 'data/intents.yaml',
flow: __DIR__ . 'data/flow.yaml',
metadata: __DIR__ . 'data/metadata.yaml'
);
print_r($bot2);
bash
composer