This repository was archived by the owner on Aug 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Home
Paul edited this page Oct 6, 2016
·
4 revisions
Recast.AI official SDK in Python
This module is a wrapper around the Recast.AI API, and allows you to:
pip install recastai
You can find the full documentation here.
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 ;)