我是DialogFlow的新手。 我想创建一个聊天机器人,我可以问一个问题,它会以从Firebase Firestore数据库中检索到的值作为响应。
我已经创建了必要的意图(GetPopulationInCity
)并选择了Enable webhook call for this intent
最好与其他CloudFunction应用程序一起使用DialogFlow实现。
我在以下示例中使用了代码:
'use strict';
const functions = require('firebase-functions');
const {WebhookClient} = require('dialogflow-fulfillment');
const {Card, Suggestion} = require('dialogflow-fulfillment');
process.env.DEBUG = 'dialogflow:debug'; // enables lib debugging statements
exports.dialogflowFirebaseFulfillment = functions.https.onRequest((request, response) => {
const agent = new WebhookClient({ request, response });
console.log('Dialogflow Request headers: ' + JSON.stringify(request.headers));
console.log('Dialogflow Request body: ' + JSON.stringify(request.body));
function welcome(agent) {
agent.add(`Welcome to my agent!`);
}
function GetPopulationInCity(agent) {
//Search Firestore for value, if found =>
agent.add(`There are 10,000 people living in XXX`); //should it be ask or something like send or return?
}
function fallback(agent) {
agent.add(`I didn't understand`);
agent.add(`I'm sorry, can you try again?`);
}
let intentMap = new Map();
intentMap.set('Default Welcome Intent', welcome);
intentMap.set('Get Population', GetPopulationInCity);
intentMap.set('Default Fallback Intent', fallback);
agent.handleRequest(intentMap);
});
但是我不知道如何为我的意图创建一个处理程序并返回一个值。有谁可以帮助我吗?
答案 0 :(得分:1)
首先,请确保您要编写用于处理程序的Intent的名称与(defn gcd [i j]
(loop [m i, n j]
(if (zero? n)
m
(recur n (mod m n)))))
部分中的名称匹配。 (在您的描述中,您不清楚对话框流中的意图名称与函数名称的关系。)
处理程序本身需要做一些事情:
获取可能在Intent中设置的任何参数的值。
您可以从intentMap.set()
上获得它。
在数据库中查询值。
作为结果处理的一部分,用结果调用agent.parameters
。
可以使用类似于您现在进行Firebase调用的代码来完成这些操作。您尚未显示操作方式或数据库的结构,但是假设您使用的是Firebase管理库,则Webhook处理程序可能看起来像这样:
agent.add()
最后,顺便提一句,您的代码提出了使用function GetPopulationInCity( agent ){
var cityName = agent.parameters.cityName;
return db.collection('cities').doc(cityName).get()
.then( doc => {
var value = doc.data();
agent.add(`The population of ${cityName} is ${value.population}.`);
});
}
或add()
的问题。
您正在使用Dialogflow履行库,该库(按照惯例)将发送给处理程序的参数命名为“ agent”。向响应中添加消息类型的功能是ask()
。
还有另一个库,即“ actions-on-google”库,该库的工作原理与dialogflow-fillfillment库类似,并且可以一起使用。 a-o-g库的约定是将“ conv”参数与会话信息一起传递。向代理添加响应的功能是agent.add()
或conv.ask()
。
要添加一些困惑,如果您正在使用Actions(与其他代理之一相反),则可以通过调用conv.close()
从dialogflow-fulfillment库中获取aog“对话”对象。 Dialogflow可以使用)。
答案 1 :(得分:0)
我建议您看一下Google Actions提供的以下操作示例:https://github.com/actions-on-google/dialogflow-updates-nodejs
按照自述文件中的步骤进行操作,或者仅查看functions / index.js文件,您将看到该示例如何处理Firestore。