Skip to content
This repository was archived by the owner on Aug 12, 2022. It is now read-only.
Paul edited this page Oct 6, 2016 · 4 revisions

Recast.AI - SDK Python

alt text

Recast.AI official SDK in Python

Synospis

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

Installation

pip install recastai

Documentation

You can find the full documentation here.

Specs

Classes

This module contains 7 classes, as follows:

  • Client is the client allowing you to make requests.
  • Response wraps the response from a call to Recast.AI API with the text_request or file_request Client methods.
  • Conversation wraps the response from a call to Recast.AI API with the text_converse Client method.
  • Action represents an action to do when using the text_converse method.
  • Intent represents an intent matched when using either the text_request, file_request or text_converse methods.
  • Entity represents an entity extracted from an input.
  • RecastError is the error returned by the module.

Don't hesitate to dive into the code, it's commented ;)

Clone this wiki locally