This repository will not be updated. The repository will be kept available in read-only mode.
In this Code Pattern, we will use the Watson Assistant Slots feature to build a chatbot that takes a pizza order. The needed information such as size, type, and ingredient choices can all be entered within one Assistant Node, unlike with previous versions of Assistant.
When the reader has completed this Code Pattern, they will understand how to:
NOTE: This code pattern has been updated to include instructions for accessing Watson Assistant running on IBM Cloud Pak for Data. These updates can be found in the specific instructions for deploying your app locally, or deploying your app to OpenShift on IBM Cloud. The main change required is that your application will need additional credentials to access the IBM Cloud Pak for Data cluster that is hosting the Watson Assistant service.
Click here for more information about IBM Cloud Pak for Data.
NOTE: This Code Pattern uses Watson Assistant experience. After October 8, 2021, all instances (non-standard) can switch between the classic and new Watson Assistant experiences by going to the upper-right corner of the Watson Assistant screen and clicking the Manage icon located in the top-right corner of the Assistant screen. Click on Switch to classic experience or click on Switch to new experience in order to toggle between the two.
Using Cloud Foundry on IBM Cloud | Using IBM Cloud's Kubernetes service |
---|---|
Click on one of the options below for instructions on deploying the app.
The power of Slots is in how it reduces the number of nodes required to implement logic in your Watson Assistant Dialog. Here's a partial conversation Dialog using the old method:
And here's a more complete Dialog using slots, which puts all the logic in the Pizza ordering
Node.
Open up the Dialog, and we'll have a look:
Each slot represents a field to be populated in the chatbot: pizza_size
, pizza_type
, and pizza_topings
.
If they are not present, the user will be prompted, starting at the top, until all are populated via
the associated variable ($pizza_size
, $pizza_type
, etc).
Click on the Configure to add more functionality:
Here, we can add a response for when this slot is filled (Found). Logic can be used for one ingredient:
or if there are greater than one ingredient added:
1 topping"" style="max-width: 100%;">
We've added logic to address yes or no answers to the question "Any extra toppings?":
Click on the 3 circles and choose Open JSON editor
to edit the json directly:
Here, we've set an empty value for the context: {"pizza_topings"} field, so that we can exit the loop by filling this slot.
Finally, we add responses for once the slots are all filled:
We start with the case where we have "pizza_toppings", by detecting that the array has size>0. Here, we first handle the case where the optional "pizza_place" slot is filled, and then handle the case where it is not.
Finally, we add a handler for the case where the user's answers to a prompt is not found. We've added a handler for the intent "help".
We have a dialog node to handle the intent #reset
which will reset all fields to null
:
Let's look at an example conversation and the associated json. With your Watson Pizzeria running, start a dialog and begin with telling the Pizza Bot you want a large pizza:
The 'User Input' shows you the "input"{"text"} field, as well as come of the
"context" that is mostly used for Assistant to keep track of internal state.
Scroll Down to Watson Understands
and look at intents
:
Note that the intent for "order" is detected. The entity "pizza_size" is now a slot that is filled out. We still have 2 required slots, "pizza_type" and "pizza_toppings". The user will be prompted until these are filled out:
We can now see that all required slots are filled:
What if we wanted to tell the Watson Pizzeria that we wanted to eat the pizza there, in the restaurant? Too late! the slot for "pizza_place" is optional, so the user won't be prompted for it, and once the required slots are filled, we exit the "Pizza Ordering" dialog node. The user needs to fill out optional slots first. Type reset to start again and test this by adding the phrase "to eat there...":
cf push
gives:FAILED Could not find service
If you name your service wcsi-conversation-service
, this should work.
When you use cf push
, it is trying to bind to the services listed in the manifest.yml
.
So, there are 2 ways you can get this to work:
NOTE: The
Deploy to IBM Cloud
button solves this issue by creating the services on the fly (with the correct names).
This code pattern is licensed under the Apache Software 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 (DCO) and the Apache Software License, Version 2.
Apache Software License (ASL) FAQ