<?php
use App\BotMan\Conversations\OnboardingConversation;
$botman = app('botman');
$botman->hears('.*(hi|hey|hello|halo).*', function($bot) {
$bot->typesAndWaits(1);
$bot->reply('hello');
});
is the code above based on AI? Or is Botman involving any AI or ML?