Important RASA commands
Important RASA commands
Use this as a cheat sheet that you can refer to…
The following are the most frequently used RASA commands:
- rasa init
This command is used to create the initial project structure of rasa.
2. rasa train
This command is used to train the chatbot on the nlu data and stories.
3. rasa shell
This command loads the trained model and lets us talk through the command line.
4. rasa interactive
This command starts an interactive session and new training data can be created by chatting with the chatbot.
5. rasa run
This is used to start a new server with the trained model.
6. rasa run actions
This is used to run the action server.
7. rasa visualize
It shows us a visual representation of the stories.
8. rasa enable api (CMD- rasa run -m models --enable-api --cors "*")
Or
rasa run --model models --enable-api --cors “*” --debug
-p $PORT
The challenge im facing is that im not able to run rasa run actions command together with the above command.
Im using this tutorial for refference Deploying Rasa Chatbot on Heroku Using Docker | by DLMade | Analytics Vidhya | Medium 10
Author - Atul
References - https://medium.com/
Comments
Post a Comment