我在dialogflow上用我的webhook弄错了。我也看不到筹码。但是普通文字来了。所有其他内容以及匹配的意图和参数都可以正常工作。
关于如何解决此问题的任何建议?
MalformedResponse expected_inputs[0].input_prompt.rich_initial_prompt: 'item[2]' must not be empty.
MalformedResponse expected_inputs[0].input_prompt.rich_initial_prompt: 'item[3]' must not be empty.
MalformedResponse expected_inputs[0].input_prompt.rich_initial_prompt: 'item[4]' must not be empty.
MalformedResponse expected_inputs[0].input_prompt.rich_initial_prompt: 'item[5]' must not be empty.
这是我的代码。
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 convert(agent) {
let conv = agent.conv();
let toConvert = conv.parameters["convert"]
if (toConvert.length > 60) {
conv.ask(`To long`)
} else {
conv.ask(`"${toConvert}" secret ${textConvert(toConvert)} secret`)
conv.ask(`Secret`)
}
conv.ask(new Suggestion(`text`))
conv.ask(new Suggestion(`text`))
conv.ask(new Suggestion(`1`))
conv.ask(new Suggestion(`Secret`))
agent.add(conv);
}
let intentMap = new Map();
intentMap.set('Convert', convert)
agent.handleRequest(intentMap);
答案 0 :(得分:3)
Suggestions
对象应该是要提出的文本建议的数组。您不应(也不能)发送多个Suggestions
对象。
所以您的代码应该看起来像这样:
conv.ask( new Suggestions([
`text`,
`text`,
`1`,
`secret`
]);
答案 1 :(得分:2)
碰巧您正在使用的实现来自先前提到的文档已弃用的旧版SDK,所以您应该做的第一件事是将代码迁移到新的AoG SDK。您可以在此处找到迁移指南:
然后,您可以使用新的库来处理建议芯片,这应该可以解决您的问题:
conv.ask(new Suggestions(['suggestion 1', 'suggestion 2']));
别忘了签出图书馆: