项目作者: riswandans

项目描述 :
PHP Library Natural Language Processing (NLP)
高级语言: PHP
项目地址: git://github.com/riswandans/mellowbot.git
创建时间: 2018-12-01T16:23:14Z
项目社区:https://github.com/riswandans/mellowbot

开源协议:GNU General Public License v3.0

下载


MellowBot

PHP Library Natural Language Processing (NLP) with Artificial intelligence (AI)

Requirement

  • php 5.6 / 7.0 / higher
  • php-curl
  • say (for library speech)

Example

Webhook for Telegram BOT

  1. <?php
  2. require 'app.php';
  3. require 'telegram.php';
  4. $telegram = new TelegramBot();
  5. $telegram->token = "BOT:TOKEN";
  6. $telegram->start_webhook();
  7. $MellowBot = new MellowBot();
  8. $MellowBot->text($telegram->last_message);
  9. $telegram->message = $MellowBot->response();
  10. $telegram->send();

Usage Translate (api based on google translate)

  1. <?php
  2. require 'app.php';
  3. $MellowBot = new MellowBot();
  4. $MellowBot->text('translate english to french Hello World');
  5. $MellowBot->reply();

Result

  1. Bonjour le monde

Usage Artificial intelligence (api based on wikipedia)

  1. <?php
  2. require 'app.php';
  3. $MellowBot = new MellowBot();
  4. $MellowBot->text('what is google?');
  5. $MellowBot->reply();

Result

  1. 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.

Result to JSON

  1. <?php
  2. require 'app.php';
  3. $MellowBot = new MellowBot();
  4. $MellowBot->text('who is mark zuckerberg?');
  5. $MellowBot->json();

Result

  1. {"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"}