3

我想在实现中获取当前意图的名称,以便我可以根据我所处的不同意图处理不同的响应。但我找不到它的功能。

function getDateAndTime(agent) {    
    date = agent.parameters.date; 
    time = agent.parameters.time;

    // Is there any function like this to help me get current intent's name?
    const intent = agent.getIntent();
}

// I have two intents are calling the same function getDateAndTime()
intentMap.set('Start Booking - get date and time', getDateAndTime);
intentMap.set('Start Cancelling - get date and time', getDateAndTime);
4

3 回答 3

1

request.body.queryResult.intent.displayName将给出意图名称。

'use strict';

const functions = require('firebase-functions');
const {WebhookClient} = require('dialogflow-fulfillment');

exports.dialogflowFirebaseFulfillment = functions.https.onRequest((request, response) => {
  const agent = new WebhookClient({ request, response });

  function getDateAndTime(agent) {
      // here you will get intent name
      const intent = request.body.queryResult.intent.displayName;
      if (intent == 'Start Booking - get date and time') {
        agent.add('booking intent');
      } else if (intent == 'Start Cancelling - get date and time'){
          agent.add('cancelling intent');
      }
  }

  let intentMap = new Map();
  intentMap.set('Start Booking - get date and time', getDateAndTime);
  intentMap.set('Start Cancelling - get date and time', getDateAndTime);
  agent.handleRequest(intentMap);
});

但是如果你使用两个不同的函数会更有意义intentMap.set

于 2018-12-06T19:09:53.333 回答
1

intentMap每个意图使用或创建单个 Intent Handler没有什么神奇或特别之处。该handleRequest()函数所做的只是查看action.intentIntent 名称,从映射中获取具有该名称的处理程序,调用它,并可能处理它返回的 Promise。

但是如果你要违反约定,你应该有一个很好的理由这样做。每个 Intent 有一个 Intent Handler 可以非常清楚地为每个匹配的 Intent 执行哪些代码,这使您的代码更易于维护。

看起来您想要这样做的原因是因为两个处理程序之间存在大量重复代码。在您的示例中,这是获取dateandtime参数,但它也可能是更多的东西。

如果这是真的,那就做程序员几十年来一直在做的事情:将这些任务推送到可以从每个处理程序调用的函数中。因此,您的示例可能如下所示:

function getParameters( agent ){
  return {
    date: agent.parameters.date,
    time: agent.parameters.time
  }
}

function bookingHandler( agent ){
  const {date, time} = getParameters( agent );
  // Then do the stuff that uses the date and time to book the appointment
  // and send an appropriate reply
}

function cancelHandler( agent ){
  const {date, time} = getParameters( agent );
  // Similarly, cancel things and reply as appropriate
}

intentMap.set( 'Start Booking', bookingHandler );
intentMap.set( 'Cancel Booking', cancelHandler );
于 2018-12-07T04:07:39.513 回答
0

您可以尝试使用“agent.intent”,但对两个不同的意图使用相同的函数是没有意义的。

于 2018-12-06T17:13:05.307 回答