是否可以在 Google 智能家居中实施自定义意图?
Is it possible to implement custom intents in Google Smart Home?
我成功创建了一个基本应用程序,可以打开或关闭某个房间的灯。这使用内置意图 'turn everything in living room on/off'.
是否可以实现自定义意图?假设我想实现意图 'put the lights in party mode',内置意图未涵盖的意图。我怎样才能做到这一点?我可以将 Google 智能家居服务路由到 Dialogflow 意图吗?
smart home integration for the Google Assistant. However, if you want to have specific feature sets like "party mode", you can create a "SCENE" device in your SYNC
response that has the Scene 特征不支持作为概念的自定义意图。当用户说出类似 "activate party mode" 的内容时,您的云集成将获得针对该场景的 EXECUTE
意图,您可以通过任何方式处理它。
我成功创建了一个基本应用程序,可以打开或关闭某个房间的灯。这使用内置意图 'turn everything in living room on/off'.
是否可以实现自定义意图?假设我想实现意图 'put the lights in party mode',内置意图未涵盖的意图。我怎样才能做到这一点?我可以将 Google 智能家居服务路由到 Dialogflow 意图吗?
smart home integration for the Google Assistant. However, if you want to have specific feature sets like "party mode", you can create a "SCENE" device in your SYNC
response that has the Scene 特征不支持作为概念的自定义意图。当用户说出类似 "activate party mode" 的内容时,您的云集成将获得针对该场景的 EXECUTE
意图,您可以通过任何方式处理它。