首页 文章

Dialogflow - 未获得在Fulfillment Inline Editor中配置的响应

提问于
浏览
0

我正在关注以下教程:https://dialogflow.com/docs/getting-started/integrate-services-actions-on-google

我已经设置了“名称”意图,配置了几个训练短语,还有一个响应 . 见下文 .

训练短语:

  • 你有名字吗?

  • 你叫什么名字?

回复:我的名字是Dialogflow!

然后,我进入了Fulfillment部分并启用了内联编辑器并粘贴了以下代码:

/**
 * Copyright 2018 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

const functions = require('firebase-functions')
const { dialogflow } = require('actions-on-google')

const app = dialogflow()

app.intent('Default Welcome Intent', conv => {
  conv.ask('Welcome to my agent!')
})

app.intent('Default Fallback Intent', conv => {
  conv.ask(`I didn't understand`)
  conv.ask(`I'm sorry, can you try again?`)
})

app.intent('Name', conv => {
  conv.ask('My name is Dialogflowwwww!')
})

exports.dialogflowFirebaseFulfillment = functions.https.onRequest(app)

然后单击Deploy .

然后转到“Name”意图,并向下滚动到Fulfillment部分并启用“为此意图启用webhook调用” .

再次访问Fulfillment并单击Deploy .

现在,在测试聊天窗口中,当我输入“你的名字是什么?”时,我得到了意图的响应 - 即“我的名字是Dialogflow!”

但是,我期待来自Fulfillment内联编辑器代码的回复 - 即“我的名字是Dialogflowwwww!” .

这可能是什么问题?

2 回答

  • 0

    从意图定义中的“默认”响应中删除响应

  • 1

    通过单击所示图像中的'google assistant'链接,在'Actions for Google console'中尝试此操作 .

    这是因为您已经使用Google帮助中的“操作谷歌”客户端库 .

    https://github.com/actions-on-google/actions-on-google-nodejs

相关问题