Installation | Sample Projects | Resources | Getting Started on Recast.AI | License |
---|
Recast.AI official SDK in Node.js
This module is a wrapper around the Recast.AI API API, and allows you to:
Install the package using npm, as shown below:
npm install --save recastai
You can now use the SDK in your code.
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')
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')
Check out our NodeJS starter-kit for a usage example of the SDK.
- Bot Builder Guide: Best practices and tips to use the Recast.AI platform
- API Documentation
- Your first bot - Build your first bot with Bot Builder
- Advanced chatbot tutorial(Moviebot) - Overview of how to get started building your bot's server
Jérôme Houdan, [email protected]
You can follow us on Twitter at @recastai for updates and releases.
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 |
---|
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.