Skip to content

jharrilim/voice

Repository files navigation

Voice

Playground for Rasa + Speech Recognition

Run Server

$ 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:

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

Headers:

Content-type: application/json

Body:

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

Releases

No releases published

Packages

No packages published