rasa-core

Can Rasa chatbot initiate a conversation?

不打扰是莪最后的温柔 提交于 2021-02-09 08:40:30
问题 I'm planning to deploy the bot based on rasa with a monitoring engine. So if something goes wrong, I would like bot to start the conversation with a specific user. Is that possible? 回答1: An easy way to do so, would be to send a user message from your monitoring system to your input channel. So you basically mimic the user initiating the conversation. Note that I directly specify the intent using the / as prefix. Start Rasa Core with the REST api exposed: python -m rasa_core.run -d models -

Can Rasa chatbot initiate a conversation?

六眼飞鱼酱① 提交于 2021-02-09 08:34:17
问题 I'm planning to deploy the bot based on rasa with a monitoring engine. So if something goes wrong, I would like bot to start the conversation with a specific user. Is that possible? 回答1: An easy way to do so, would be to send a user message from your monitoring system to your input channel. So you basically mimic the user initiating the conversation. Note that I directly specify the intent using the / as prefix. Start Rasa Core with the REST api exposed: python -m rasa_core.run -d models -

Can Rasa chatbot initiate a conversation?

浪子不回头ぞ 提交于 2021-02-09 08:32:12
问题 I'm planning to deploy the bot based on rasa with a monitoring engine. So if something goes wrong, I would like bot to start the conversation with a specific user. Is that possible? 回答1: An easy way to do so, would be to send a user message from your monitoring system to your input channel. So you basically mimic the user initiating the conversation. Note that I directly specify the intent using the / as prefix. Start Rasa Core with the REST api exposed: python -m rasa_core.run -d models -

Can Rasa chatbot initiate a conversation?

醉酒当歌 提交于 2021-02-09 08:30:31
问题 I'm planning to deploy the bot based on rasa with a monitoring engine. So if something goes wrong, I would like bot to start the conversation with a specific user. Is that possible? 回答1: An easy way to do so, would be to send a user message from your monitoring system to your input channel. So you basically mimic the user initiating the conversation. Note that I directly specify the intent using the / as prefix. Start Rasa Core with the REST api exposed: python -m rasa_core.run -d models -

Can Rasa chatbot initiate a conversation?

孤人 提交于 2021-02-09 08:29:17
问题 I'm planning to deploy the bot based on rasa with a monitoring engine. So if something goes wrong, I would like bot to start the conversation with a specific user. Is that possible? 回答1: An easy way to do so, would be to send a user message from your monitoring system to your input channel. So you basically mimic the user initiating the conversation. Note that I directly specify the intent using the / as prefix. Start Rasa Core with the REST api exposed: python -m rasa_core.run -d models -

how to handle rasa form confirmation or denying from actions.py

為{幸葍}努か 提交于 2021-01-29 22:21:06
问题 based on the story below: ## certif deny_repeat_affirm_stop * greet - utter_greet * request_certificate - certificate_form - form{"name": "certificate_form"} - form{"name": null} - utter_did_that_help * deny - utter_ask_again * request_certificate - certificate_form - form{"name": "certificate_form"} - form{"name": null} - utter_did_that_help * affirm - utter_noworries * goodbye - utter_goodbye - action_restart i need to post (rest api) the form to an service, how can i do that from actions

how to handle rasa form confirmation or denying from actions.py

烂漫一生 提交于 2021-01-29 21:37:36
问题 based on the story below: ## certif deny_repeat_affirm_stop * greet - utter_greet * request_certificate - certificate_form - form{"name": "certificate_form"} - form{"name": null} - utter_did_that_help * deny - utter_ask_again * request_certificate - certificate_form - form{"name": "certificate_form"} - form{"name": null} - utter_did_that_help * affirm - utter_noworries * goodbye - utter_goodbye - action_restart i need to post (rest api) the form to an service, how can i do that from actions

'rasa' is not recognized as an internal or external command, operable program or batch file

不羁的心 提交于 2020-05-15 10:54:10
问题 Unable to run the rasa init command and getting following error: 'rasa' is not recognized as an internal or external command, operable program or batch file. I have following version of RASA in my environment: rasa-core 0.13.2 rasa-core-sdk 0.12.2 rasa-nlu 0.14.6 rasa-sdk 1.2.0 回答1: Hopefully you got it working by now, but if not you can either 1) Try setting the Python path in Advanced System Settings > Environment Variables . (ideally we want it in a top-level folder) 2) Re-install Python

Problem in coding a Welcome Message along with options in RASA

血红的双手。 提交于 2020-04-18 05:49:44
问题 I read this answer on How to code a Welcome Message in RASA, accordingly, I did write a custom action but it is not displaying the message as soon as the session starts, instead, it replies after the user has sent a message. Below is my code for printing just the welcome message. I had put this in my "actions.py" file. Please help me to fix this problem. The image below is an example of How I want my bot to start, It would start up with a general message and then it would give options which

How to deploy rasa chatbot

半城伤御伤魂 提交于 2020-02-27 03:44:12
问题 I have build a chatbot using rasa framework. Now I want deploy it over my website but I dont want deploy it using chatterbot or Docker. I am googling but I am not getting it. How to deploy the chatbot on my website? 回答1: Install Rasa Core and Rasa using pip / anaconda as it is described here (Rasa Core) and here (Rasa NLU). Train your Core and NLU model Start NLU as server using python -m rasa_nlu.server --path projects (see here for the docs). Do this using a tool like nohup so that the