У нас вы можете посмотреть бесплатно Setting up Rasa Bot from Scratch 😃 или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video, I have shown in simple steps how you can create bots in rasa, just follow the below steps and get your bot up and running... 😉 Make sure you have installed rasa and rasa-sdk pip install rasa rasa-sdk Step1: Create a folder where you want to setup your bot Step2: let create our bot within this folder, run the below command to setup the project rasa init --no-prompt this command will automatically create all the required files for the bot and also it will train the NLU & Core Models Now our moodbot is ready, lets test it out use the below command to test the bot in shell rasa shell Now you can see our bot is working fine Step3: Now lets just add custom actions we will edit the actions.py file, just uncomment the code inside the actions.py file copy action_hello_world so that we can register it in domain.yml file, In the domain.yml, just add our custom action name under the actions label Step4: Now let us add the custom action in our stories go inside data- stories.md and just replace utter_greet with action_hello_world Step5: Now lets retrain our models, run the below command to retrain the model rasa train Step6: Now our model has been trained,so we will test our bot, before that we will start our custom action server,open another terminal and run the below command: rasa run actions now u can see our custom action server is running at port 5055, lets register our custom action endpoint in endpoints.yml file Step7: edit the endpoints.yml file, just uncomment the action_endpoint save it Step8: now let us start our rasa server rasa shell Now you can see our bot is working fine along with the custom actions Thanks for watching... 🤗