I'm still fresh to Dialogflow and I've tried my best to search first
What I want to do is something like this:
This works
User says: I'm angry to my father!
Intent: angerEmotionCapture
param: father (entity: angryDirectedTo)
agent response: fathers are the worst
This is my issue
User says: Thanks for listening
Intent: angerEmotionClosure
agent response: regardless, you need to love your father
My fulfilment is using the inline editor. On the next response, I want to get param: father
The best googling I can result on I'm supposed to use
const angerResponse = agent.context.get('angerEmotionCapture-followup').params['angryDirectedTo'];
However, whenever I add this, my agent response always return null