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',
}),
);