在Dialogflow实现中结束对话

时间:2019-05-05 17:34:10

标签: dialogflow actions-on-google

我正在为Dialogflow for Google做代理。有人可以提出3个问题,在3个问题之后,对话必须结束。我想在计数器为3时在“实现内联编辑器”中结束对话。我该如何做?我尝试过:

function Question(agent){
   if (counter == 3){
        agent.end(`OK, see you next time`);
   }
   else{
        agent.add(`OK, What is your next question?`);

   }
}

let intentMap = new Map();
  intentMap.set('Question 3', Question);

但这不起作用。 Firebase日志没有给出任何错误,并且代理未响应。谁能帮我吗?

0 个答案:

没有答案