Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 622 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 622 Bytes

RASA-Chatbots

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.

  1. Install python
  2. Create a new directory for developing a Virtual environment
    • mkdir rasa_directory.
    • cd rasa_directory.
  3. Create a Virtual Environment
    • apt install python3.10-venv
    • python3 -m venv ./venv
    • source ./venv/bin/activate
  4. Install rasa by using pip
    • sudo apt install python3-pip
    • pip install rasa
  5. Run rasa
    • rasa init
  6. Run rasa chatbot
    • rasa run -m models –enable-api –cors “*”