Git Product home page Git Product logo

lukeenterprise / augment-watson-services-to-whatsapp Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ibm/augment-watson-services-to-whatsapp

0.0 2.0 0.0 52.75 MB

In this Code Pattern, you will learn how to build a framework which can act as an intermediator in connecting Watson services to WhatsApp messenger, to enable mobile users to leverage watson services through a messenger app.

License: Apache License 2.0

Python 0.61% CSS 11.33% JavaScript 38.58% HTML 24.29% SCSS 19.65% Handlebars 5.54%

augment-watson-services-to-whatsapp's Introduction

Build a framework that connects WhatsApp to any Watson service on IBM Cloud.

In this Code Pattern, you will learn how to build a framework which can act as an intermediator in connecting Watson services to WhatsApp messenger, to enable mobile users to leverage watson services through a messenger app.

You will learn to build a framework and how to connect Watson Machine Learning service, deploy a simple house price prediction model and access it from your WhatsApp messenger.

When you have completed this code pattern, you will understand how to:

  • Integrate IBM Watson Services to WhatsApp.
  • Deploy Application to IBM Cloud Foundry.
  • Deploy Machine Learning models to Cloud Object Storage.
  • Manage Machine Learning models in IBM Watson Studio.

architecture

Flow

  1. User sends a message through WhatsApp.

  2. The message is redirected to Twilio Programmable Messaging service.

  3. Twilio Programmable Messaging service will further forward the message to the framework hosted on IBM Cloud.

  4. The framework interacts with the Watson Machine Learning service to get the response.

  5. Watson Machine Learning service does the necessary computation and returns a response accordingly.

  6. The framework processes the response and converts it to user readable format and forwards it Twilio.

  7. Twilio forwards this message as a reply on WhatsApp.

  8. The user will receive this as a response from Watson Machine Learning service on WhatsApp.

Watch the Video

video

Pre Requisites

  1. IBM Cloud Account.
  2. IBM Cloud CLI.
  3. IBM Cloud Object Storage.

Steps

  1. Clone the repo.
  2. Deploy the framework on IBM Cloud Foundry.
  3. Create Twilio service.
  4. Create Watson services.
  5. Configure credentials.
  6. Deploy the House Price Prediction model.

1. Clone the repo

Clone the augment-watson-services-to-whatsapp repo locally. In a terminal, run:

git clone https://github.com/IBM/augment-watson-services-to-whatsapp

We’ll be using the folder backend-for-whatsapp

2. Deploy the framework on IBM Cloud Foundry

  • Before you proceed, make sure you have installed IBM Cloud CLI in your deployment machine.

  • From the cloned repo, goto backend-for-whatsapp directory in terminal, and run the following commands to deploy the Application to IBM Cloud Foundry.

$ cd backend-for-whatsapp/
  • Log in to your IBM Cloud account, and select an API endpoint.
$ ibmcloud login

NOTE: If you have a federated user ID, instead use the following command to log in with your single sign-on ID.

$ ibmcloud login --sso
  • Target a Cloud Foundry org and space:
$ ibmcloud target --cf
  • From within the backend-for-whatsapp directory push your app to IBM Cloud.
$ ibmcloud cf push whatsapp-server
  • The manifest.yml file will be used here to deploy the application to IBM Cloud Foundry.

  • On Successful deployment of the application you will see something similar on your terminal as shown.

Invoking 'cf push'...

Pushing from manifest to org [email protected] / space dev as [email protected]...

...

Waiting for app to start...

name:              whatsapp-server
requested state:   started
routes:            whatsapp-server.xx-xx.mybluemix.net 
last uploaded:     Sat 16 May 18:05:16 IST 2020
stack:             cflinuxfs3
buildpacks:        python

type:            web
instances:       1/1
memory usage:    256M
start command:   python app.py
     state     since                  cpu     memory           disk           details
#0   running   2020-05-16T12:36:15Z   25.6%   116.5M of 256M   796.2M of 1
  • Once the app is deployed you can visit the routes to launch the application.

Example: http://whatsapp-server.xx-xx.mybluemix.net

  • At this point, you will have successfully deployed the framework on IBM Cloud. Now lets access it and see how it looks like.

  • Visit the URL in your browser to access the framework.

Example: http://whatsapp-server.xx-xx.mybluemix.net

  • You will now have access to the framework through which you can configure Twilio and Watson services.

backend-app

  • In this code pattern, the scope is restrected to Watson Machine Learning service, hence you will learn how to deploy a simple house price prediction model and access it from your WhatsApp messenger.

  • Before deploying the model, you will have to create a Twilio service, steps for which are given below.

3. Create Twilio service

Twlio is a SaaS offering that provides APIs to make and receive calls or text messages. As there are no APIs from WhatsApp directly availabe to send and receive WhatsApp messages programmatically, you will learn how to use Twilio's messaging service APIs that provides gateway to communicate with WhatsApp programmatically. Lets start by creating a free Twilio service.

twilio-signup

  • Once you create a twilio service, you will have to verify your email id as well as your phone number.

  • To verify your email id, visit your registered email id and you will see a mail from twilio with a verification link, go ahead and verify.

  • Once email id is verified you will be prompted to enter your phone number, submit that and you will get an OTP on your registered number, enter that back to verify.

  • On successful verification you should see a welcome greeting message, additionally you will see a question Do you write code?, select Yes to proceed.

  • The second question asked to you would be What is your preferred language?, select Python to proceed.

  • Third question asked to you would be What is your goal today?, select Use Twilio in a project to proceed.

  • The final question asked to you would be What do you want to do first?, select Send WhatsApp messages to proceed.

  • You will then see a popup box requesting you to Activate Your Sandbox, click on I agree checkbox and click Confirm.

  • The sandbox for WhatsApp will appear, make a note of the Sandbox Name which will be prefixed with join, click on Settings on the left panel and select WhatsApp Sandbox Settings.

  • In WhatsApp Sandbox Settings page, under Sandbox Configuration, there will be a field called WHEN A MESSAGE COMES IN, replace the existing URL in that field with the URL obtained by deploying the framework from Step 3, finally click on Save to save the configuration.

NOTE: Sometimes the changes are not saved in Twilio WhatsApp Sandbox Settings even after clicking on save, reload the page to enusre the URL that you have entered in WHEN A MESSAGE COMES IN field is reflecting over there. If you still see the old URL over there then enter the URL from Step 2 again and save it.

  • Now the Backend server is configured in Twilio, any message that you send from WhatsApp from this point will go to the backend server via Twilio WhatsApp Sandbox. However to reply back to you from WhatsApp the backend server needs to establish connection with Twilio.

  • To establish connection between the backend server and Twilio we need to get the account_sid and auth_token from Twilio.

  • Visit https://www.twilio.com/console and expand the Project Info tab. You will see the ACCOUNT ID and AUTH TOKEN, copy it in some notepad as it will be used in Step 5.

  • At this point, you should have the Sandbox Name, account_sid and auth_token from Twilio service.

  • Now lets create the required watson services.

4. Create Watson services

Create the following services:

4.1. Watson Machine Learning

  • Login to IBM Cloud, and create a Watson Machine Learning service, select region as London and click on create as shown.

wml

  • Once the service is created, click on the Manage tab and select Access (IAM), the cloud Identity and Access Management page will be displayed.

manage-iam

  • Click on API keys on the left panel as shown.

iam

  • In API keys, click on Create an IBM Cloud API key and give a Name and Description Accordingly as shown.

create-api-key

  • Once the API key is generated Successfully, copy the key in any text editor as it will be used in Step 5.

NOTE: The API key will not be visible once the dialog box is dismissed, you can Download the API key to keep it handy just in case you loose the copied key.

api-key-created

4.2. Watson Studio

  • Back to IBM Cloud, create a Watson Studio service, select region as London and finally click on create as shown.

watson-studio

  • Once the service is created, click on Get Started to provision an IBM Cloud Pak for Data instance.

watson-studio-get-started

  • In Watson Studio / IBM Cloud Pak for Data, click on the hamburger menu on the top left corner and select Deployment spaces > View all spaces.

  • In deployment spaces, click on New deployment space +.

  • Select Create an empty space when prompted.

  • Make sure you select the appropriate Cloud object storage service as well as Machine learning service.

NOTE: In v4 Machine learning assets are stored in Cloud Object Storage rather than in the Watson Machine Learning repository.

  • Once the deployment space is created, click on View Space to view the details.

deployment-space

  • Click on Settings and copy the space ID as it is required in Step 5.

Learn more about deployment space here.

  • At this point, you should have the API key and the Space ID copied in any notepad as these will be used in the next step.

5. Configure credentials

  • In Step 3, you will have created the twilio service and obtained the credentials and in Step 4, you will have also created the Watson machine learning service and obtained the credentials, now you can add the credentials to the framework by following the simple steps stated below.

  • Back to the framework, under Add Twilio service to the Application, click on the Add Twilio Credentials button and insert the twilio account_sid and auth_token which were generated from Step 3 and finally click on Submit. You will now see the status as Configured.

twilio-credentials-in-backend-app

  • Similarly, under Add Watson services to the Application, select the Watson Machine Learning radio button and click on Add Watson Credentials button, here add the apikey, region and space_id which were generated from Step 4 and finally click on Submit. You will now see Watson Machine Learning under Configured Services.

wml-credentials-in-backend-app

  • At this point, you have successfully configured the framework that connects Watson services to WhatsApp.

  • In this code pattern as we have scoped to demonstrate only the Watson Machine Learning service, we have also provided a sample house price prediction model that can be deployed.

6. Deploy the House Price Prediction model

  • Now that the framework is configured, you can deploy the sample model from the framework.

  • The sample model is a House Price Prediction model built to predict house prices in the city Bengaluru, Karnataka, India.

NOTE: The main aim of this code pattern is to demonstrate how IBM Watson Services can be plugged into WhatsApp and not about how to build Machine Learning models for which we already have other code pattens, hence we are limiting the scope to a basic model. With some minor code changes you can use any Machine Learning models.

  • In the framework, click on the Deploy Model tab, and you will see the details of the model.

NOTE: The dataset for the sample house price prediction model is taken from Kaggle, credits to Bengaluru House price data from Kaggle and it is under the License of CC0: Public Domain.

  • Click on Deploy the Model on WML button and wait for the Status to change.

Note: It will take couple of minutes for the model to get deployed, please be patient.

  • Once the model is deployed you will see a Status as Deployed, Model ID: xxx-xxx-xxx.

  • At this point, all the setup is completed and now its time to explore what you just built!

Sample output

  • In the framework, you will see View Application in Action tab.

  • Scan the QR code in your Phone to open the WhatsApp chat with Twilio's messaging API.

  • A WhatsApp chat will open up in your phone with a typed code join <sandbox name>.

  • Replace the <sandbox name> with your Sandbox Name obtained from Step 4 and send the message.

NOTE: If you are unable to scan the QR code, save the phone number +14155238886, open WhatsApp and send a message to the saved number with code join <sandbox name>.

The workflow of the app is as follows:

NOTE: The user has to follow the exact same workflow for the WhatsApp to reply as intended.

Flow 1: Where user gives the Locality manually.

User Reply Screenshot
Hi The message, 'Hi' that you typed on your phone, went through Whatsapp -> Twilio -> Python App hosted on IBM Cloud and returned back to you from Python App hosted on IBM Cloud -> Twilio -> Whatsapp. How Cool is that!! Try asking What can you do? 1
What can you do? I am a bot who is connected to watson services on IBM Cloud! Try asking What are the services you are connected to? 2
What are the services you are connected to? I found the following services associated to me: 1. Watson Machine Learning -> ready Enter the number to know more. 3
1 WML Model id: xxxx-xxxx-xxxx WML Model Name: Deployment of Bangalore House Price Prediction WML Model Status: ready Try asking I want to know house prices 4
I want to know house prices What do you want to do? A.Check prices in different locality B.Check the prices in your current locality Enter either A or B to continue... 5
A Please enter the details with the below format: Predict:<Place-Name>,<Area-sq.ft>,<How-many-bhk> Example: Predict:Thanisandra,1300,2 6
Predict: Whitefield, 1400, 3 Area: Whitefield, Bengaluru 3 Bhk with 1400 Sq.Ft will cost you approx: 89 Lakhs 7

Alternate Flow 2: Where user sends location data and the algorithm will compute nearest locality.

User Reply Screenshot
Hi The message, 'Hi' that you typed on your phone, went through Whatsapp -> Twilio -> Python App hosted on IBM Cloud and returned back to you from Python App hosted on IBM Cloud -> Twilio -> Whatsapp. How Cool is that!! Try asking What can you do? 1
What can you do? I am a bot who is connected to watson services on IBM Cloud! Try asking What are the services you are connected to? 2
What are the services you are connected to? I found the following services associated to me: 1. Watson Machine Learning -> ready Enter the number to know more. 3
1 WML Model id: xxxx-xxxx-xxxx WML Model Name: Deployment of Bangalore House Price Prediction WML Model Status: ready Try asking I want to know house prices 4
I want to know house prices What do you want to do? A.Check prices in different locality B.Check the prices in your current locality Enter either A or B to continue... 5
B Share your current location Tap Attach > Location > Send your current location 6
GPS LOCATION For Area: XXX, Bengaluru Please enter the details with the below format: Predict:<Area-sq.ft>,<How-many-bhk> Example: Predict:1300,2 7
Predict: 1200, 2 Area: XXX, Bengaluru 2 Bhk with 1200 Sq.Ft will cost you approx: 67 Lakhs 8

At the end of the code pattern you will have learnt how to build a framework that connects WhatsApp to any Watson service on IBM Cloud, you can add other Watson services to the framework just by creating the desired service, adding the credentials in the framework and writing a code block leveraging the service in a serverless cloud function action, to learn more about adding more services to the framework, you can refer to Augment Watson Visual Recognition service with WhatsApp.

License

This code pattern is licensed under the Apache License, Version 2. Separate third-party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the Developer Certificate of Origin, Version 1.1 and the Apache License, Version 2.

Apache License FAQ

augment-watson-services-to-whatsapp's People

Contributors

manojjahgirdar avatar stevemar avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.