jovo-nlu-luis
TypeScript icon, indicating that this package has built-in type declarations

3.6.1 • Public • Published

Microsoft LUIS NLU Integration

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

Learn how to use Microsoft LUIS as NLU (Natural Language Understanding) integration with the Jovo Framework.

Installation

npm install --save jovo-nlu-luis
// @language=javascript

// src/app.js

const { LuisNlu } = require('jovo-nlu-luis');

platform.use(
  new LuisNlu({
    endpointKey: 'yourEndpointKey',
    endpointRegion: 'yourEndpointRegion',
    appId: 'yourAppid',
  }),
);

// @language=typescript

// src/app.ts

import { LuisNlu } from 'jovo-nlu-luis';

platform.use(
  new LuisNlu({
    endpointKey: 'yourEndpointKey',
    endpointRegion: 'yourEndpointRegion',
    appId: 'yourAppid',
  }),
);

/jovo-nlu-luis/

    Package Sidebar

    Install

    npm i jovo-nlu-luis

    Weekly Downloads

    1

    Version

    3.6.1

    License

    Apache-2.0

    Unpacked Size

    25.5 kB

    Total Files

    13

    Last publish

    Collaborators

    • jovotech