This bot indexes all audio that you send to it and make it searchable by text.
Will make it answer "Pong!". Mostly used to check if the service is up when developing.
Every audio you send to this bot will trigger the recognition pipeline. You will receive some messages telling you which step of the pipeline we are currently at.
If you type any message that is not a command or audio/voice files, it will return the first matching result that is indexed.
We use Algolia to perform the text search. The bot is deployed on Heroku. To start developing:
$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ pip install -r requirements-dev.txt
To run the tests, simply execute:
$ python -m unittest discover -vb tests/