AI Chatbots using RASA Frameworks
It is an easy way to create chatbots using RASA Frameworks. Here are the steps to follow for installing rasa in your system.
- Install python
- Create a new directory for developing a Virtual environment
- mkdir rasa_directory.
- cd rasa_directory.
- Create a Virtual Environment
- apt install python3.10-venv
- python3 -m venv ./venv
- source ./venv/bin/activate
- Install rasa by using pip
- sudo apt install python3-pip
- pip install rasa
- Run rasa
- rasa init
- Run rasa chatbot
- rasa run -m models –enable-api –cors “*”