A conversational AI , built using Rasa open source framework, with a purpose to solve educational queries.
Hers is a demo video ~ Video link
python3 -m venv venv
source venv/bin/activate
(Linux/UNIX)
venv\Scripts\activate
(Windows)
pip install -r requirements.txt
python3 -m rasa train
python3 -m rasa shell
python3 -m rasa interactive
Clone this repository and run the following command in the terminal -
rasa run actions
python3 -m rasa run --enable-api --cors="*"
Run the index.html file in Frontend-Widget.
- intent: new_intent_name
examples: |
- some intent examples
- make sure the examples help train the AI
- and has all necessary keywords as well as variations of the keywords
- minimum 5 examples are recommended
- these examples all correspond to the same intent and will be mapped to a particular response so kindly do not club various examples together.
intents:
- existing_intent_name
- new_intent_name
.
.
.
responses:
utter_new_intent_name:
- text: "The response to new_intent_name"
- image: "https://image.com/image.png" # optional
- rule: Do action when asked about intent
steps:
- intent: new_intent_name
action: utter_new_intent_name