https://github.com/riolaf05/chatbot_rasa
Example of chatbot build using Rasa framework
https://github.com/riolaf05/chatbot_rasa
chatbot docker docker-compose helm k8s k8s-cluster kubernetes python rasa rasa-core rasa-nlu rasa-tutorial rasa-x
Last synced: about 2 months ago
JSON representation
Example of chatbot build using Rasa framework
- Host: GitHub
- URL: https://github.com/riolaf05/chatbot_rasa
- Owner: riolaf05
- Created: 2021-04-02T15:48:26.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-12T16:33:54.000Z (about 5 years ago)
- Last Synced: 2025-03-14T22:09:25.931Z (over 1 year ago)
- Topics: chatbot, docker, docker-compose, helm, k8s, k8s-cluster, kubernetes, python, rasa, rasa-core, rasa-nlu, rasa-tutorial, rasa-x
- Language: Python
- Homepage:
- Size: 332 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Train the model locally
```console
rasa train --debug
rasa run actions&
rasa shell
```
### Deploy on Rasa X
1. **Prerequisites**
Kubernetes cluster with Helm3
2. Add secret to pull from Docker Registry:
```console
kubectl create secret docker-registry regcred --docker-server=https://index.docker.io/v2/ --docker-username= --docker-password=
```
3. **Install Rasa X**
```console
kubectl create namespace rasa
helm repo add rasa-x https://rasahq.github.io/rasa-x-helm
helm --namespace rasa install --values values.yml --version 1.8.0 rasax rasa-x/rasa-x
```
4. Add git repository from the **Rasa X** console, add the provided public key as a Deploy key in te repository.
Note: **Rasa X** default password is `welcome123`
### References
* [Example](https://github.com/RasaHQ/retail-demo)
* [ITA guide](https://www.qi-lab.it/2019/10/12/sviluppo-un-chatbot-framework-rasa/)
* [Rasa X Deploy](https://medium.com/swlh/build-your-first-a-i-chatbot-in-30-minutes-step-by-step-guide-to-rasa-x-installation-in-windows-10-e94174703472)
* [Spacy Italian language](https://spacy.io/models/it#it_core_news_md)
* [Deploy with Rasa](https://medium.com/front-end-weekly/how-to-build-awesome-rasa-chatbot-for-a-web-ce4a9acafd3b)
* [Guide to Rasa form](https://blog.rasa.com/how-to-build-your-first-rasa-form/)