2017 © Pedro PelĂĄez
 

library watsonphpsdk

PHP SDK for Watson so that the developer could apply Watson quickly in PHP applications

image

sinf/watsonphpsdk

PHP SDK for Watson so that the developer could apply Watson quickly in PHP applications

  • Monday, May 28, 2018
  • by diegocardoso93
  • Repository
  • 2 Watchers
  • 0 Stars
  • 413 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 11 Forks
  • 0 Open issues
  • 2 Versions
  • 3655 % Grown

The README.md

Watson PHP SDK

Language: PHP Build Status codecov, (*1)

Watson PHP SDK for IBM Watson Developer Cloud, (*2)

Installation

Installing Composer will be easier to manage dependencies for your application., (*3)

Run the Composer command to install the latest version of the Watson PHP SDK:, (*4)

composer require sinf/watsonphpsdk

If the Watson PHP SDK is downloaded from GitHub already, run the update command:, (*5)

composer update

Include autoload.php in your application:, (*6)

require 'vendor/autoload.php';

Namespaces

For common use, one of the namespaces of WatsonCredential or SimpleTokenProvider can be optional, depends on how to invoke the Watson services, and you can reference the classes like so:, (*7)

use WatsonSDK\Common\WatsonCredential;
use WatsonSDK\Common\SimpleTokenProvider;
use WatsonSDK\Services\ToneAnalyzer;
use WatsonSDK\Services\ToneAnalyzer\ToneModel;

API Reference

Please visit our wiki., (*8)

Services

Assistant

Watson Assistant is an enterprise artificial intelligence (AI) assistant that helps businesses enhance brand loyalty and transform their customer experiences by delivering proactive and personalized services while ensuring data privacy. An AI assistant for:, (*9)

Your brand Increased engagement and loyalty. Your customers Continual learning for customized experiences. Your data Secure and personalized insights., (*10)

The following example demonstrates how to use the Assistant service by using credentials:, (*11)

$assistant = new Assistant( WatsonCredential::initWithCredentials('your_username', 'your_password') );
$result = $assistant->sendMessage('your_message', 'your_workspace_id');
echo $result->getContent();

Tone Analyzer

The IBM Watson Tone Analyzer service can be used to discover, understand, and revise the language tones in text. The service uses linguistic analysis to detect three types of tones from written text: emotions, social tendencies, and writing style., (*12)

Emotions identified include things like anger, fear, joy, sadness, and disgust. Identified social tendencies include things from the Big Five personality traits used by some psychologists. These include openness, conscientiousness, extraversion, agreeableness, and emotional range. Identified writing styles include confident, analytical, and tentative., (*13)

The following example demonstrates how to use the Tone Analyzer service by using credentials:, (*14)

$analyzer = new ToneAnalyzer( WatsonCredential::initWithCredentials('your_username', 'your_password') );

or invoke Tone Analyzer API using token, the SimpleTokenProvider is a sample of TokenProvider, we recommend you to implement your own Token Provider, by implementing the TokenProviderInterface., (*15)

$tokenProvider = new SimpleTokenProvider('https://your-token-factory-url');
$analyzer = new ToneAnalyzer( WatsonCredential::initWithTokenProvider( $tokenProvider ) );

Place the content to be analyzed, call the Tone API and check the result:, (*16)

$model = new ToneModel();
$model->setText('your text to be analyzed.');
$result = $analyzer->getTone($model);
echo $result->getContent();

Natural Language Classifier

The IBM Watsonℱ Natural Language Classifier service uses machine learning algorithms to return the top matching predefined classes for short text input. You create and train a classifier to connect predefined classes to example texts so that the service can apply those classes to new inputs., (*17)

The following example demonstrates how to use the Natural Language Classifier:, (*18)

$nlc = new NaturalLanguageClassifier( WatsonCredential::initWithCredentials('your_username', 'your_password') );
$result = $nlc->classify('your text to be classified.', 'your classifier id');
echo $result->getContent();

Natural Language Understanding

Analyze text to extract meta-data from content such as concepts, entities, keywords, categories, sentiment, emotion, relations, semantic roles, using natural language understanding. With custom annotation models developed using Watson Knowledge Studio, identify industry/domain specific entities and relations in unstructured text., (*19)

The following example demonstrates how to use the Natural Language Understanding:, (*20)

$nlu = new NaturalLanguageUnderstanding( WatsonCredential::initWithCredentials('your_username', 'your_password') );
$model = new AnalyzeModel('Watson PHP SDK for IBM Watson Developer Cloud.', [ 'keywords' => [ 'limit' => 5 ] ]);
$result = $nlu->analyze($model);
echo $result->getContent();

Personality Insights

Personality Insights extracts personality characteristics based on how a person writes. You can use the service to match individuals to other individuals, opportunities, and products, or tailor their experience with personalized messaging and recommendations. Characteristics include the Big 5 Personality Traits, Values, and Needs. At least 1200 words of input text are recommended when using this service., (*21)

The following example demonstrates how to use the Personality Insights service:, (*22)

$insights = new PersonalityInsights( WatsonCredential::initWithCredentials('your_username', 'your_password') );
$model = new ProfileModel( new ContentItemModel('Enter more than 100 unique words here...'));
$mode->setConsumptionPreferences(TRUE);
$result = $insights->getProfile($model);
echo $result->getContent();

API response

All of the service responses are wrapped in HttpResponse class instead of original format of response, so it will be easy for you to use your own HttpClient if necessory. Once there is a result from Watson APIs, there are three common methods you can leverage:, (*23)

// Get HTTP status code
public function getStatusCode();
// Get actual size of response content
public function getSize();
// Get the content of the response
public function getContent();

We use Tone Analyzer for instance:, (*24)

$analyzer = new ToneAnalyzer(...);
// getTone will return HttpResponse type
$result = $analyzer->getTone('your text to be analyzed.');

var_dump($result->getStatusCode());
var_dump($result->getSize());
var_dump($result->getContent());

// Also there is another way under string context
// You can use $result as the response content instead of using $result->getContent();.
echo $result;

Token based authentication

Refer to the samples of Tone Analyzer about how to invoke the service by using TokenProvider., (*25)

License

Copyright 2017 GCG GBS CTO Office under the Apache 2.0 license., (*26)

The Versions

28/05 2018

dev-master

9999999-dev

PHP SDK for Watson so that the developer could apply Watson quickly in PHP applications

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by sinf

php sdk ai watson

31/03 2018

dev-dev

dev-dev

PHP SDK for Watson so that the developer could apply Watson quickly in PHP applications

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by caopeng

php sdk ai watson