What's the difference between ActionsSdkApp and DialogflowApp for Google Assistant

前端 未结 2 1080
被撕碎了的回忆
被撕碎了的回忆 2021-02-15 00:56

In order to build a Google Assistant app, Google provides two different APIs as part of their node.js actions-on-google library :

  • ActionsSdkApp
  • Dialogflow
2条回答
  •  后悔当初
    2021-02-15 01:53

    IN SIMPLE TERMS

    Use the Actions SDK for one-shot apps. These are apps that provide the required answer directly after being invoked and then stop. They give you just this one result. A typical example would be setting a timer to ten minutes.

    Use the Dialogflow for all other apps, for those that are really conversational, where there are multiple paths to follow and where you want your user to provide more information during the conversation.

提交回复
热议问题