我无法在 Codelab Actions 级别 2 教程中重现步骤 4
I couldn't reproduce the step 4 at codelab actions level 2 tutorial
在 Codelab 教程级别 2 "Build Actions for the Google Assistant (Level 2)"。 (https://codelabs.developers.google.com/codelabs/actions-2/index.html#3)
我无法在模拟器中重现预期的输出 "Talk to my test app about banana"。
我有一个错误:"Failed to parse Dialogflow response into AppResponse because of empty speech response."
模拟器:
我跟教程一样的步骤
对话流:
您似乎错过了 "Define a custom fallback intent" 下的第 5 步。
We'll use the @sys.any
entity to tell Dialogflow to generalize the
expression to any grammar (not just "banana"). Double-click on
"banana" and filter for or select @sys.any
结果应该是 "banana" 训练短语将突出显示并且颜色应该与参数列表中的 @sys.any
相匹配。
这导致永远不会填充 any
参数,因此永远不会使用使用 $any
的结果短语。由于没有有效的响应,因此没有返回。
在 Codelab 教程级别 2 "Build Actions for the Google Assistant (Level 2)"。 (https://codelabs.developers.google.com/codelabs/actions-2/index.html#3)
我无法在模拟器中重现预期的输出 "Talk to my test app about banana"。
我有一个错误:"Failed to parse Dialogflow response into AppResponse because of empty speech response."
模拟器:
我跟教程一样的步骤
对话流:
您似乎错过了 "Define a custom fallback intent" 下的第 5 步。
We'll use the
@sys.any
entity to tell Dialogflow to generalize the expression to any grammar (not just "banana"). Double-click on "banana" and filter for or select@sys.any
结果应该是 "banana" 训练短语将突出显示并且颜色应该与参数列表中的 @sys.any
相匹配。
这导致永远不会填充 any
参数,因此永远不会使用使用 $any
的结果短语。由于没有有效的响应,因此没有返回。