Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dialogflow/dialogflow-python-client
Python library for Dialogflow
https://github.com/dialogflow/dialogflow-python-client
Last synced: 4 days ago
JSON representation
Python library for Dialogflow
- Host: GitHub
- URL: https://github.com/dialogflow/dialogflow-python-client
- Owner: dialogflow
- License: apache-2.0
- Created: 2015-01-19T08:07:01.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2019-02-20T18:30:54.000Z (about 6 years ago)
- Last Synced: 2025-02-09T17:11:09.555Z (11 days ago)
- Language: Python
- Homepage:
- Size: 235 KB
- Stars: 557
- Watchers: 51
- Forks: 194
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# DEPRECATED api.ai: Python SDK for API.AI
| Deprecated |
|-------|
| This Dialogflow client library and Dialogflow API V1 [have been deprecated and will be shut down on October 23th, 2019](https://blog.dialogflow.com/post/migrate-to-dialogflow-api-v2/). Please migrate to Dialogflow API V2 and the [v2 client library](https://cloud.google.com/dialogflow-enterprise/docs/reference/libraries/python) |.. image:: https://badge.fury.io/py/apiai.svg
:target: http://badge.fury.io/py/apiai.. image:: https://travis-ci.org/api-ai/api-ai-python.svg
:target: https://travis-ci.org/api-ai/api-ai-pythonOverview
--------The API.AI Python SDK makes it easy to integrate speech recognition with API.AI natural language processing API. API.AI allows using voice commands and integration with dialog scenarios defined for a particular agent in API.AI.
Prerequsites
--------Create an `API.AI account `_.
Running examples
--------1. Find examples from 'examples' path.
2. Insert API key... code-block:: python
>>> CLIENT_ACCESS_TOKEN = ''
...Features
--------- Speech Recognition.
- Voice Activity Detection.
- Natural Language Processing.Installation
------------To install apiai, simply:
.. code-block:: bash
$ pip install apiai
or install it from repo:
.. code-block:: bash
$ pip install https://github.com/api-ai/api-ai-python.git
You might run into problems because some dependencies in your python environment are missing. You need to install numpy (which is available in almost all package managers). For running the examples you also need python audio.
In ubuntu the following will do the job:
.. code-block:: bash
$ apt-get install python-pyaudio python-numpy
$ pip install apiaiDocumentation
-------------Documentation is available at http://api.ai.
## How to make contributions?
Please read and follow the steps in the [CONTRIBUTING.md](CONTRIBUTING.md).## License
See [LICENSE](LICENSE).## Terms
Your use of this sample is subject to, and by using or downloading the sample files you agree to comply with, the [Google APIs Terms of Service](https://developers.google.com/terms/).This is not an official Google product.