Capability 8: Filter by Excluding Features
Dialogflow
Extend your addFilter intent and add training phrases and entities for excluding an ingredient (type). For example, your Dialogflow agent should be able to make sense of the phrase “recipe without cucumber”. To make sure that the MARBEL agent will be able to handle these ingredients differently from the ones a user wants to include, you should create new parameter names that suggest the ingredient (type) should be excluded instead of included. The table in the Action and parameters section should be extended as follows:
Make sure to annotate plenty of phrases again with examples of the use of these parameters! Only if there are enough of these phrases will your Dialogflow agent be robust for all kinds of user input.
As a next step, in a similar vein, extend your agent such that it is able to exclude a cuisine or a dietary restriction (a recipe should not be Japanese or vegan). The table in the Action and parameters section for your addFilter intent should be extended as follows:
Prolog and Patterns
In your recipe_selection.pl
file, add the following rules for applying the corresponding filters to the new entities we introduced above. You should define four applyFilter/4
rules where the first argument is instantiated with, respectively, ‘excludeingredient'
, 'excludeingredienttype'
, 'excludedietaryrestriction'
, and 'excludecuisine'
. You should note that to implement these rules it is sufficient to simply require the opposite (the negation) of the basic condition that you used for the rule for 'ingredient'
, etc.
Visuals
You can update the visuals based on what you think will help the user the most. Think about how you can support the implemented capability visually.
Test it Out
Try to filter by excluding an ingredient. Verify that the ingredient is not listed on the a50recipeConfirm
page to ensure that the ingredient is not present in a recipe you select. Verify that your agent is also able to filter recipes based on the exclusion of a cuisine or dietary restriction.
All done?
Proceed with Designing and Developing Your Agent | Agent Capability 9: Confirm the Chosen Recipe