https://github.com/jharrilim/voice
https://github.com/jharrilim/voice
rasa recognition speech tensorflow voice
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jharrilim/voice
- Owner: jharrilim
- Created: 2019-08-05T18:42:21.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-17T23:16:14.000Z (almost 7 years ago)
- Last Synced: 2025-05-31T20:56:36.129Z (about 1 year ago)
- Topics: rasa, recognition, speech, tensorflow, voice
- Language: Python
- Size: 1.13 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!"
}'
```