...
Team Contribution
During this week, as a complete team you will select three recipes for the conversational agent from cooking.pl,
to work out further in pairs for recipe selection, visual support and recipe instruction. In addition, you will set up the initial version of the cooking assistant, by creating a Dialogflow agent (See here).
...
This section entails the tasks to be completed by the Recipe Selection team. It will mainly involve the steps to have the user select a certain recipe from the knowledge base provided as cooking.pl
. For the recipes, multiple websites are available. For this course, we aim more or less straightforward one-pot recipes that can be made in a linear, step-by-step fashion. Therefore, simpler recipes are were extracted from this website and are made available in the file cooking.pl
.
...
The initial version of the GOAL agent will immediately start instructing a pasta recipe, while it should only start instructing a recipe after a user request. In the coming weeks you will enable the user to choose for a recipe by specifying particular recipe features. For now, we will assume that the user knows about the different recipes to pick from, and directly mentions the name of a recipe of choice. The capability check, allowing the user to ask what the agent can do, may also be used to have the agent mention the available recipesYou may also for now have the agent suggest particular recipes to the user, upon request or as part of the greeting sequence.
The first thing to do is to make sure the agent is able to recognize recipe names. To recognize which recipe the user is talking about, in your Dialogflow agent create an entity
recipe
and add the (shorthand) names of the recipes fromcooking.pl
(possibly with different variations of the recipe names). Also, add an intentrecipeRequest
to your Dialogflow agent and integrate these recipe names as entities.Now add a pattern
a50recipeName
to thepatterns.pl
file of your GOAL agent. Again, additional instructions are given in the comments of the file. As a final step, add the pattern to the agent's agenda. Make sure the agent's memory is initially empty, and check if the pattern is performed by testing your agent.
...
A recipe can have multiple features, like their name, ingredients, taste, country of origin, and cooking techniques. Your task here is to think of the three features you want to use to select a recipe (to be incorporated in week 2 and 3).
The best way to do this is to do role-playing, where one person is the cooking assistant, and the other person is the user. The user will inquire into the recipes to choose from the 60 available ones, by asking for characteristics (like recipes that are the main dish or contain fish). Note that it does not necessarily have to result in one of the three recipes that were chosen to work out further. You may check the Cooking Assistant space on confluence for an elaboration of possible recipe features and how they are used in traditional websites to facilitate recipe selection.
Repeat these role-playing conversations a couple of times, and document well how the conversation was conducted. This will not only give inspiration for the recipe features to include in your project, but may also reveal some typical conversation patterns to be used in the design of the agent (in
patterns.pl
) in the subsequent weeks.
Recipe Instruction
This section enlists the tasks to be completed by the Recipe Instruction team. The main focus is to work with instructions related to a selected recipe.
...
Add an intent you should call
recipeContinuer
to Dialogflow that is able to recognize phrases such as move on to next step, continue, simply next, or other similar phrases that the user might use to indicate a step has been completed.After adding this intent to your Dialogflow agent, add the step to the
a30recipeStep
pattern in the GOAL agent code. Your agent will now wait for the user's response before it continues with the next recipe step.
Enable
...
The agent should be able to respond to user requests for more information about what it can do. To make this happen, add a C3 pattern to the patterns.pl
file. In response to a capability check, the agent should indicate what it can do, and for example make clear which recipes it can instruct by mentioning some of them (typically the three you have chosen).
Enable End of Recipe
The initial version of the cooking assistant does not indicate that the final step of a recipe has been reached. It does already have a finalStep/3
predicate that is used as a marker for the final step. Modify the text generated for the finalStep intent in the text.pl
file using the built-in string_concat/3
predicate to indicate to the user that this is the last step of the recipe.
...
Here, the main focus is to think of how visuals can provide support to decide about a recipe or improve the understanding of a recipe.
Visuals
...
to
...
display chosen recipe
The aim here is to design the visuals with respect to the recipe name and the instructions. The agent can thereby enrich the information communicated to the user through text and images displayed on the screen.
For now, your main focus is to display the name and an image related to the chosen three recipes. To do this, you will need patterns in the
patterns.pl
file. Repeat the steps for the recipe instructions as well. For further details, see Week 2.
Visuals to display buttons during recipe instruction
Example Conversation
The first version of your chatbot should be able to conduct a conversation with the user, which is like the example you can see in Figure below.
...