Skip to content

jcapezza/conversation-with-discovery-openwhisk

 
 

Repository files navigation

Conversation with Discovery - OpenWhisk

Build Status codecov

This application shows the capabilities of Watson Conversation and Discovery services to work together to find answers on a given query. In this sample app, the user is chatting with a virtual car dashboard, giving it commands in plain English such as "Turn on the wipers," "Play me some music," or "Let's find some food." If the user makes a request and Conversation is not confident in its answer (e.g. "How do I check my tire pressure?"), Discovery will search the car manual and return the most relevant results, if relevant materials exist.

This demo is a reworking of a previous one but with an OpenWhisk back-end and React front-end. OpenWhisk is IBM's "serverless" offering, allowing users to upload functions to the cloud, call them via REST API, and pay only by the millisecond of usage.

Table of Contents

How it Works

Flow diagram

Under the hood, there are two components to this app:

  • One is the front-end, which is simply static assets (HTML, CSS, and React). I wrote the CSS with Sass for cleaner, more maintainable source code.
  • The other is the OpenWhisk actions:
    • When the user inputs text, the UI sends the current context and input to the OpenWhisk sequence. These are processed by the Conversation service and returned, with an output and new context. The results are sent to the next action.
    • The Discovery action checks for a flag from the Conversation output, and if it is present takes the original input and queries the manual with it. If there is no flag, the Conversation results pass through the function unchanged. The Sequence returns the output and updated context back to the UI.

Requirements

  • IBM Bluemix account. Sign up for Bluemix, or use an existing account.
  • Node.js >= 7.9.0

Deploy Automatically to Bluemix

With just a few steps, you can get this demo application up to the cloud and running in your own Bluemix account.

  1. Ensure your organization has enough quota for one web application using 128MB of memory and 2 services
  2. Click the button below to start the Bluemix DevOps wizard:

Deploy to Bluemix

  1. Click Tool Integrations. Decide Whether you want to fork/clone the GitHub repository. If you decide to Clone, set a name for your GitHub repository.
  2. Click the Delivery Pipeline box.
  3. Choose a unique name for the application, or keep the one generated.
  4. Choose "US South" for your region.
  5. Make sure your "organization" and "space" do not contain spaces.
  6. Click Deploy.
  7. Click Delivery Pipeline to watch your build. (This may take over ~10 minutes)
  8. Return to the Toolchain page once your build completes
  9. Click View App

⚠️ The 'Deploy to Bluemix' button is meant to be run once on your account. If you would like to redeploy the pipeline script, or rebuild the entire app, you should delete your Conversation and Discovery service instances, and the OpenWhisk package that the script creates.

Run Locally

Getting Started

  1. If you don't already have a Bluemix account, you can sign up here

Make sure you have at least 2 services available in your Bluemix account.

  1. Clone (or fork) this repository, and go to the new directory
git clone https://github.com/watson-developer-cloud/conversation-with-discovery-openwhisk.git
cd conversation-with-discovery-openwhisk
  1. Download and install the Cloud-Foundry CLI. This will be used to set up your Watson Services in Bluemix.
  2. Connect the CLI to Bluemix by running the following:
cf api https://api.ng.bluemix.net
cf login
  1. Follow the prompts for logging in to Bluemix. You may have to use single sign-on (SSO).

Setting up Conversation and Discovery Services

  1. Create an instance of Watson Conversation, here named conversation-for-demo.
cf create-service conversation free conversation-for-demo
  1. Create a service key for your Conversation instance, here called my-key.
cf create-service-key conversation-for-demo my-key
  1. Retrieve the username and password for your Conversation instance. Save these in a note.
cf service-key conversation-for-demo my-key
  1. Do the same for Discovery. Note the plan name is lite.
cf create-service discovery lite discovery-for-demo

⚠️ You may have to wait until Bluemix is done creating your service instance before running the other two commands. Check on the status of your service by running cf service discovery-for-demo and checking for a Status of create succeeded.

Here we called the instance discovery-for-demo and the key my-other-key. Save the username and password in a note.

cf create-service-key discovery-for-demo my-other-key
cf service-key discovery-for-demo my-other-key

Training Conversation

  1. Create a new Conversation workspace using your Conversation username and password (not your Bluemix password) from the previous steps. Make sure you are in the root directory of your repository. Save the workspace_id in a note.
curl -H "Content-Type: application/json" -X POST \
-u <CONVERSATION_USERNAME>:<CONVERSATION_PASSWORD> \
-d "@workspace_blank.json" \
"https://gateway.watsonplatform.net/conversation/api/v1/workspaces?version=2017-05-26"
  1. Train your workspace with the data provided. Substitute in your Conversation workspace_id.
curl -H "Content-Type: application/json" -X POST \
-u <CONVERSATION_USERNAME>:<CONVERSATION_PASSWORD> \
-d "@workspace.json" \
"https://gateway.watsonplatform.net/conversation/api/v1/workspaces/<CONVERSATION_WORKSPACE_ID>?version=2017-05-26"

Training Discovery

  1. Create a new Discovery environment by using your Discovery username and password (not your Bluemix credentials or your Conversation credentials). Save the environment_id in a note.
curl -H "Content-Type: application/json" -X POST \
-u <DISCOVERY_USERNAME>:<DISCOVERY_PASSWORD> \
-d '{ "name": "demoEnvironment", "description": "from Conversation with Discovery - OpenWhisk", "size": 0}' \
"https://gateway.watsonplatform.net/discovery/api/v1/environments?version=2017-07-19"
  1. Get the configuration for your environment. Here, we are just using the default configuration. Substitute your environment_id from the last step. Save the configuration_id in a note.
curl -X GET \
-u <DISCOVERY_USERNAME>:<DISCOVERY_PASSWORD> \
"https://gateway.watsonplatform.net/discovery/api/v1/environments/<ENVIRONMENT_ID>/configurations?version=2017-07-19"

Your environment might still be configuring, so wait about a minute before continuing.

  1. Create a new collection by using your Discovery username, password, configuration_id, and environment_id.
curl -X POST -H "Content-Type: application/json" \
-u <DISCOVERY_USERNAME>:<DISCOVERY_PASSWORD> \
-d '{ "name": "demoCollection", "description": "from Conversation with Discovery - OpenWhisk", "configuration_id": "<CONFIGURATION_ID>" }" \
"https://gateway.watsonplatform.net/discovery/api/v1/environments/<ENVIRONMENT_ID>/collections?version=2017-07-19"
  1. From the root directory of your repository, unzip the manual training documents.
unzip manualdocs.zip
  1. There are >200 files, so use a for-loop to send them to Watson. Substitute your Discovery username, password, environment_id, and collection_id.
cd manualdocs
for file in *.json
do
  curl -X POST -u <DISCOVERY_USERNAME>:<DISCOVERY_PASSWORD> \
  -F "file=@$file" \
  "https://gateway.watsonplatform.net/discovery/api/v1/environments/<ENVIRONMENT_ID>/collections/<COLLECTION_ID>/documents?version=2017-07-19"
done

Setting up the OpenWhisk Back-end

  1. Install the Openwhisk Command Line Interface
  2. Return to the home directory. Add the two actions to OpenWhisk
    cd ..
    wsk action create conversation actions/conversation.js --web true
    wsk action create discovery actions/discovery.js --web true
  1. Edit actions/conversationParams.json and actions/discoveryParams.json to include your usernames, passwords, workspace_id, environment_id and collection_id for the Conversation and Discovery services.
{
  "username": "<CONVERSATION_USERNAME>",
  "password": "<CONVERSASTION_PASSWORD",
  "workspace_id": "<WORKSPACE_ID>"
}
{
  "username": "<DISCOVERY_USERNAME>",
  "password": "<DISCOVERY_PASSWORD",
  "environment_id": "<ENVIRONMENT_ID>",
  "collection_id": "<COLLECTION_ID"
}
  1. Use these documents to create default parameters from the command line:
    wsk action update conversation --param-file action/conversationParams.json
    wsk action update discovery --param-file action/discoveryParams.json
  1. Create a sequence using the two actions:
    wsk action create conversation-with-discovery-sequence --sequence conversation,discovery --web true

Configuring the API

  1. Navigate to the API Management page on OpenWhisk.
    Create new API

  2. Name your API and supply a base path.
    Name API and base path

  3. Click "Create operation"
    Create operation

  4. Make a path for your operation, change the HTTP verb to POST, and select your sequence as the action
    Operation form

  5. Activate the slider next to "Require applications to autheticate via API key"

  6. Ensure that the slider next to "Enable CORS so that browser-based applications..." is also activated

  7. Click "Save & expose"

  8. Navigate to the "Sharing" tab on the left-hand side
    Sharing tab

  9. Under "Sharing Outside of Bluemix Organization", click "Create API Key"
    Create API key

  10. Give your key a name, and copy the API Key to a note
    Key naming

  11. Navigate to the "Summary" tab on the left-hand side

  12. Copy the link under "Route" to a note, and add "/submit" or the name of the path associated with your POST action to the end of the URL.
    Route_link

  13. Link your API to your React App:
    Create a file named .env. Copy the following and paste it into your .env, substituting your API URL.

REACT_APP_API_URL="<Your API URL>"

We have to add REACT_APP_ to the name of the environment variable so React will substitute in the value during the build.

Setting up the React Front-end

  1. In the root directory of your repository, install the project dependencies.
npm install
  1. Create an optimized build of your project. During this stage, your environment variable will be inserted into App.js for use by your components.
npm run build

Running the App

All that's left is to serve your static files locally. You should see the project running in a new tab!

npm start

Contributing

See CONTRIBUTING.

License

This sample code is licensed under Apache 2.0. Full license text is available in LICENSE.

About

Integrate Watson Conversation and Discovery with OpenWhisk to explore the possibilities of "serverless" architecture.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 69.2%
  • JavaScript 20.5%
  • Shell 9.5%
  • HTML 0.8%