I've just started trying out Watson Assistant and have no clue what I'm doing. I'm trying to built a chatbot that asks a series of questions and then outputs an evaluation based on the user's inputs.
E.g. Inputs:
Q1 "How many apples do you have?"
Q2 "How many apples does your neighbour have?"
Q3 "Did you eat any apples?"
With my desired output as:
IF ((Q1 > Q2) AND Q3 = "No")
THEN output "You have more apples"
ELSEIF ((Q1 > Q2) AND Q3 = "Yes")
THEN output "You might not have more apples"
ENDIF
I've currently used slots to collect all the inputs in one node but I don't know how to evaluate them to give the correct outputs.