Google 相当于 Alexa 的助手告诉 [skill] 到

Google Assistant equivalent of Alexa tell [skill] to

使用 Amazon Alexa 可以通过两种方式调用技能的意图:

  1. "Alexa start [skill name]." 然后继续询问该技能的特定意图。
  2. "Alexa tell [skill name] to [specific intent]."

使用 Google 助手我只知道通过以下方式调用操作:

  1. "Okay Google talk to [action name]." 然后针对特定意图继续询问该操作。

是否存在直接使用 Google 助手从操作中调用特定意图的等效调用?

是的,您可以 "Hey google, ask [action name] to [invocation phrase]" 作为 explicit invocation 的一部分。文档有时将其称为 "deep link".

如果您使用的是 Actions SDK,将触发与 invocation phrase 匹配的 Intent。

如果您使用的是 Dialogflow,则需要创建一个与 invocation phrase 匹配的 Intent,并将其设置为操作的 Invocations 选项卡中的附加欢迎 Intent。