recastai

Recast.AI official SDK in NodeJs

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
recastai
204.0.06 years ago8 years agoMinified + gzip package size for recastai in KB

Readme


| Installation | Sample Projects | Resources | Getting Started on Recast.AI | License | |---|---|---|---|---|
Recast.AI - SDK Node.js
Recast.AI official SDK in Node.js

Synospis

This module is a wrapper around the Recast.AI API API, and allows you to:

Installation

Install the package using npm, as shown below:
npm install --save recastai

You can now use the SDK in your code.

ES5

Using the entire SDK:
var recastai = require('recastai').default

var client = new recastai('YOUR_TOKEN')

Extracting one single API:
var recastai = require('recastai').default

var converse = new recastai.converse('YOUR_TOKEN')

ES6

Using the entire SDK:
import recastai from 'recastai'

const client = new recastai('YOUR_TOKEN')

Extracting one single API:
import { converse } from 'recastai'

const clientConverse = new converse('YOUR_TOKEN')

Sample projects

Check out our NodeJS starter-kit for a usage example of the SDK.

Resources

Author

Jérôme Houdan, jerome.houdan@recast.ai
You can follow us on Twitter at @recastai for updates and releases.

Getting started with Recast.AI

We build products to help enterprises and developers have a better understanding of user inputs.
  • NLP API: a unique API for text processing, and augmented training.
  • Bot Building Tools: all you need to create smart bots powered by Recast.AI's NLP API. Design even the most complex conversation flow, use all rich messaging formats and connect to external APIs and services.
  • Bot Connector API: standardizes the messaging format across all channels, letting you connect your bots to any channel in minutes.

Learn more about:
| API Documentation | Discover the platform | First bot tutorial | Advanced NodeJS tutorial | Advanced Python tutorial | |---|---|---|---|---|

License

Copyright (c) 2018 Recast.AI
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.