actions-on-google-dialogflow-session-entities-plugin
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

Dialogflow Session Entities for Actions on Google plugin

This plugin makes it easier to use Dialogflow Session Entities in the Actions on Google library.

This plugin supports only Actions built with Dialogflow.

NPM Version

Setup Instructions

Install the plugin with npm install actions-on-google-dialogflow-session-entities-plugin.

Usage

This plugin adds a new method to the conv object to let you provide a single or set of entities along with their synonyms.

You can use CRUD operations add, get, set, and clear to modify the array of session entities you will be using. Call the send method to add these session entities to the conversation response.

Typescript developers can import the SessionEntity interface for type-safety.

const { dialogflow } = require('actions-on-google')
const { sessionEntitiesHelper } = require('actions-on-google-dialogflow-session-entities-plugin')
 
const app = dialogflow()
    .use(sessionEntitiesHelper())
 
app.intent('Default Welcome Intent', async (conv) => {
    // Get session entities through some method
    conv.ask('How can I help?')
    const entities = await asyncDatabaseCall()
    conv.sessionEntities.add(...entities)
    conv.sessionEntities.send()
})

References & Issues

Make Contributions

Please read and follow the steps in the CONTRIBUTING.md.

License

See LICENSE.

Terms

Your use of this sample is subject to, and by using or downloading the sample files you agree to comply with, the Google APIs Terms of Service.

Readme

Keywords

none

Package Sidebar

Install

npm i actions-on-google-dialogflow-session-entities-plugin

Weekly Downloads

13

Version

1.0.1

License

Apache-2.0

Unpacked Size

20.4 kB

Total Files

11

Last publish

Collaborators

  • assistant