jovo-slu-lex
TypeScript icon, indicating that this package has built-in type declarations

3.6.1 • Public • Published

Amazon Lex SLU Integration

To view this page on the Jovo website, visit https://v3.jovo.tech/marketplace/jovo-slu-lex

Learn how to use Amazon Lex as SLU (Spoken Language Understanding, which combines speech recognition and natural language understanding) integration with the Jovo Framework.

Installation

npm install --save jovo-slu-lex
// @language=javascript

// src/app.js
const { LexSlu } = require('jovo-slu-lex');

platform.use(
  new LexSlu({
    credentials: {
      region: 'yourRegion',
      secretAccessKey: 'yourSecretAccessKey',
      accessKeyId: 'yourAccessKeyId',
    },
  }),
);

// @language=typescript

// src/app.ts
import { LexSlu } from 'jovo-slu-lex';

platform.use(
  new LexSlu({
    credentials: {
      region: 'yourRegion',
      secretAccessKey: 'yourSecretAccessKey',
      accessKeyId: 'yourAccessKeyId',
    },
  }),
);

Dependencies (2)

Dev Dependencies (13)

Package Sidebar

Install

npm i jovo-slu-lex

Weekly Downloads

1

Version

3.6.1

License

Apache-2.0

Unpacked Size

28.8 kB

Total Files

13

Last publish

Collaborators

  • jovotech