An open API service indexing awesome lists of open source software.

https://github.com/jharrilim/voice


https://github.com/jharrilim/voice

rasa recognition speech tensorflow voice

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Voice

Playground for Rasa + Speech Recognition

## Run Server

```sh
$ rasa run
2019-08-17 19:05:23 INFO root - Starting Rasa server on http://localhost:5005
```

### Start Conversation

Send a message with the following:

POST:

```text
http://localhost:5005/webhooks/rest/webhook
```

Headers:

```text
Content-type: application/json
```

Body:

```json
{
"sender": "Rasa",
"message": "Hello there!"
}
```

```sh
curl -X POST \
http://localhost:5005/webhooks/rest/webhook \
-H 'Content-Type: application/json' \
-d '{
"sender": "Rasa",
"message": "Hello world!"
}'
```