UNPKG

node-nlp

Version:

Library for NLU (Natural Language Understanding) done in Node.js

25 lines (19 loc) 916 B
Activity schema for the Microsoft Bot Framework. - [Installing](#installing) - [Documentation](https://docs.microsoft.com/en-us/azure/bot-service/bot-service-overview-introduction?view=azure-bot-service-4.0) - [GitHub Repo](https://github.com/Microsoft/botbuilder-js) - [Report Issues](https://github.com/Microsoft/botbuilder-js/issues) ## Installing To add the preview version of this package to your bot be sure include the @preview tag: ```bash npm install --save botframework-schema@preview ``` While this package is in preview it's possible for updates to include build breaks. To avoid having any updates break your bot it's recommended that you update the dependency table of your bots `package.json` file to lock down the specific version of the package you're using: ```JSON { "dependencies": { "botbuilder": "4.0.0-preview1.2", "otframework-schema": "4.0.0-preview1.2" } } ```