PHP Library Natural Language Processing (NLP)
PHP Library Natural Language Processing (NLP) with Artificial intelligence (AI)
<?php
require 'app.php';
require 'telegram.php';
$telegram = new TelegramBot();
$telegram->token = "BOT:TOKEN";
$telegram->start_webhook();
$MellowBot = new MellowBot();
$MellowBot->text($telegram->last_message);
$telegram->message = $MellowBot->response();
$telegram->send();
<?php
require 'app.php';
$MellowBot = new MellowBot();
$MellowBot->text('translate english to french Hello World');
$MellowBot->reply();
Bonjour le monde
<?php
require 'app.php';
$MellowBot = new MellowBot();
$MellowBot->text('what is google?');
$MellowBot->reply();
Google LLC is an American multinational technology company that specializes in Internet-related services and products, which include online advertising technologies, search engine, cloud computing, software, and hardware.
<?php
require 'app.php';
$MellowBot = new MellowBot();
$MellowBot->text('who is mark zuckerberg?');
$MellowBot->json();
{"status":"200","question":"who is mark zuckerberg?","reply":"Mark Elliot Zuckerberg (; born May 14, 1984) is an American technology entrepreneur and philanthropist.\n\nhttps:\/\/en.wikipedia.org\/wiki\/Mark_Zuckerberg"}