https://github.com/mramshaw/rasa_with_botium
Getting familiar with Rasa and Botium
https://github.com/mramshaw/rasa_with_botium
botium natural-language-processing natural-language-understanding nlp nlu rasa voice voice-ux vui
Last synced: 3 months ago
JSON representation
Getting familiar with Rasa and Botium
- Host: GitHub
- URL: https://github.com/mramshaw/rasa_with_botium
- Owner: mramshaw
- Created: 2019-05-02T12:13:27.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-08T16:58:38.000Z (over 6 years ago)
- Last Synced: 2025-03-04T03:44:35.620Z (over 1 year ago)
- Topics: botium, natural-language-processing, natural-language-understanding, nlp, nlu, rasa, voice, voice-ux, vui
- Language: HTML
- Size: 127 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rasa with Botium
Having created a [slackbot with GCP](http://github.com/mramshaw/GCP-Slackbot), [Alexa Skills](http://github.com/mramshaw/Alexa-Stuff),
and [Google Assistant Apps](http://github.com/mramshaw/Google-Assistant), it was time to look at [Rasa](http://rasa.com/) and
[Botium](http://www.botium.at/).
Rasa and Botium are both Open-Source.
Rasa is a general chatbot framework, while Botium is a generic chatbot testing framework.
Both can be added into existing frameworks via [webhooks](http://en.wikipedia.org/wiki/Webhook).
## Contents
The contents are as follows:
* [Rasa](#rasa)
* [Botium](#botium)
* [Privacy](#privacy)
* [Reference](#reference)
* [Why Rasa](#why-rasa)
* [Rasa Docs](#rasa-docs)
* [Rasa Changelog](#rasa-changelog)
* [Rasa Blog](#rasa-blog)
* [Botium Blog](#botium-blog)
* [Botium testing with BDD](#botium-testing-with-bdd)
* [To Do](#to-do)
## Rasa

Rasa describes itself as "Built for developers, by developers".
One innovation of the Rasa Stack is that it depends upon an over-arching concept called a story:
http://rasa.com/docs/core/stories/
Other frameworks have roughly similiar approaches, but they are never as explicit.
Check out my Rasa testing with [Docker](./Docker/README.md).
## Botium

Botium describes itself as "The Selenium for Chatbots".
It offers a number of integrations (which it refers to as "connectors"),
both for testing Alexa Skills as well as Dialogflow apps.
## Privacy
For my slackbot I used __Wit.ai__ - which is owned by __Facebook__.
For my Alexa Skills I used __Alexa__ - which is owned by __Amazon__.
For my Google Assistant Apps I used __Dialogflow__ - which is owned by __Google__.
While I have not personally used it, there is also [LUIS](http://www.luis.ai) - which is owned by
[Microsoft](http://azure.microsoft.com/en-us/services/cognitive-services/language-understanding-intelligent-service/).
For anyone remotely concerned about privacy, being able to track user data and
how it is processed via Open-Source code is definitely worth considering.
## Reference
A selection of useful references follows.
#### Why Rasa
For a good summary of "Why Rasa?" the following article is worth a read:
http://medium.com/rasa-blog/do-it-yourself-nlp-for-bot-developers-2e2da2817f3d
[The article also has some details on the underpinnings of Rasa.]
And the Rasa Blog version:
http://blog.rasa.com/do-it-yourself-nlp-for-bot-developers/
[The [Medium.com](http://medium.com/) version some interesting comments - which the Rasa Blog version does not.]
#### Rasa Docs
The documentation for Rasa may be found here:
http://rasa.com/docs/
#### Rasa Changelog
The changelog for Rasa may be found here:
http://rasa.com/docs/rasa/changelog/
#### Rasa Blog
Some useful articles on Rasa and chatbots can be found on their blog:
http://blog.rasa.com
#### Botium Blog
Some useful articles on Botium can be found on their blog:
http://www.botium.at/blog.html
#### Botium testing with BDD
The following article seems to give a good grounding on BDD with Cucumber & Gherkin:
http://www.sitepoint.com/bdd-javascript-cucumber-gherkin/
## To Do
- [x] Investigate Rasa
- [ ] More testing with Rasa
- [ ] Test Botium Connector for Alexa
- [ ] Test Botium Connector for Dialogflow
- [ ] Investigate [Botium BDD Samples](http://github.com/codeforequity-at/botium-bdd-samples)