sid8491
sid8491

Reputation: 6800

How to handle wit.ai bot using Python

How to connect to and handle Wit.ai actions and intents from local machine? i.e sending query to wit.ai using python api's and performing actions on local machine depend on json response. I cannot find any proper documentation regarding this. Almost all the tutorials are using node.js

Thanks in advance.

Upvotes: 2

Views: 5747

Answers (2)

dpac697
dpac697

Reputation: 11

The documentation of the wit.ai contains the Github repository for python Library pywit.

You can check those examples for better understanding of the python code needed to develop chatbot.

Since you asked for documentations and other useful materials, you can check these blogs and github repos

How to make a basic ChatBot (Wit.ai) Part-1

Fb Bot tutorial along with integration

Wit.ai API provides many kind of NLP services including Speech Recognition. Follow this link for more information.

Upvotes: 1

Franco
Franco

Reputation: 717

In fact, there is a Python SDK on the Wit.ai site.

There are also few examples that should help you get up to speed.

You may first want to check the quickstart.py example, that corresponds to the Build your first app tutorial on the Wit.ai site.

Upvotes: 1

Related Questions