Hey,
we’re trying to implement our own action server within php application and getting a strange behavior with core fallback. Let’s have the following setup
- Rasa 2.0
- yaml Rasa Setup - Pastebin.com (we tried bigger models with more stories and intents as well, behaves the same)
Now, whenever a action_core_fallback
is predicted, custom action is being sent to our webhook url (correctly set in endpoints.yml)
The endpoint receives something like this
(
'next_action' => 'action_core_fallback',
'sender_id' => 'test_sender_1',
'version' => '2.0.6',
'tracker' => [...],
'domain' => [...]
)
Our webhook then responds with this 200 json
{
"events": [
{
"event": "bot",
"text": "fallback text"
}
]
}
but it doesn’t really matter, which actions or responses we use, the result is still the same. Rasa correctly receives the json, sends a message fallback text
to the user test_sender_1
to our callback channel but then, Rasa starts to keep predicting action_core_fallback
(see the log at the end). It’s keep hitting our action server up to 10 times, then dies on Circuit breaker tripped
. The result is that user receives 10 fallback messages in a row.
Expected behavior - Rasa should send the response to the callback channel and start listening for new input. Interesting is, that if an action server doesn’t send any events, Rasa behaves correctly and listens to another input.
Could you please suggest, what’s wrong?
Rasa log
W:\rasa\rasa2>rasa run --enable-api --log-file out.log -vv
2020-11-19 15:13:03 DEBUG rasa.cli.utils - Parameter 'endpoints' not set. Using default location 'endpoints.yml' instead.
2020-11-19 15:13:03 DEBUG rasa.cli.utils - Parameter 'credentials' not set. Using default location 'credentials.yml' instead.
2020-11-19 15:13:04 DEBUG rasa.core.utils - Available web server routes:
/conversations/<conversation_id:path>/messages POST add_message
/conversations/<conversation_id:path>/tracker/events POST append_events
/webhooks/callback GET callback_webhook.health
/webhooks/callback/webhook POST callback_webhook.webhook
/model/test/intents POST evaluate_intents
/model/test/stories POST evaluate_stories
/conversations/<conversation_id:path>/execute POST execute_action
/domain GET get_domain
/ GET hello
/model PUT load_model
/model/parse POST parse
/conversations/<conversation_id:path>/predict POST predict
/conversations/<conversation_id:path>/tracker/events PUT replace_events
/conversations/<conversation_id:path>/story GET retrieve_story
/conversations/<conversation_id:path>/tracker GET retrieve_tracker
/status GET status
/model/predict POST tracker_predict
/model/train POST train
/conversations/<conversation_id:path>/trigger_intent POST trigger_intent
/model DELETE unload_model
/version GET version
2020-11-19 15:13:04 INFO root - Starting Rasa server on http://localhost:5005
2020-11-19 15:13:04 DEBUG rasa.core.utils - Using the default number of Sanic workers (1).
2020-11-19 15:13:04 DEBUG rasa.model - Extracted model to 'C:\Users\mbuko\AppData\Local\Temp\tmp1_1oe2qa'.
2020-11-19 15:13:05 INFO root - Enabling coroutine debugging. Loop id 2208175704968.
2020-11-19 15:13:05 DEBUG rasa.model - Extracted model to 'C:\Users\mbuko\AppData\Local\Temp\tmpmtibjfl5'.
2020-11-19 15:13:06 DEBUG rasa.utils.tensorflow.models - Loading the model ...
2020-11-19 15:13:06 DEBUG rasa.nlu.classifiers.diet_classifier - Following metrics will be logged during training:
2020-11-19 15:13:06 DEBUG rasa.nlu.classifiers.diet_classifier - t_loss (total loss)
2020-11-19 15:13:06 DEBUG rasa.nlu.classifiers.diet_classifier - i_acc (intent acc)
2020-11-19 15:13:06 DEBUG rasa.nlu.classifiers.diet_classifier - i_loss (intent loss)
2020-11-19 15:13:08 DEBUG rasa.utils.tensorflow.models - Finished loading the model.
2020-11-19 15:13:08 DEBUG rasa.utils.tensorflow.models - Building tensorflow prediction graph...
2020-11-19 15:13:12 DEBUG rasa.utils.tensorflow.models - Finished building tensorflow prediction graph.
2020-11-19 15:13:12 DEBUG rasa.core.tracker_store - Connected to InMemoryTrackerStore.
2020-11-19 15:13:12 DEBUG rasa.core.lock_store - Connected to lock store 'InMemoryLockStore'.
2020-11-19 15:13:12 DEBUG rasa.model - Extracted model to 'C:\Users\mbuko\AppData\Local\Temp\tmpi6xviqw0'.
2020-11-19 15:13:12 DEBUG rasa.utils.tensorflow.models - Loading the model ...
2020-11-19 15:13:13 DEBUG rasa.utils.tensorflow.models - Finished loading the model.
2020-11-19 15:13:13 DEBUG rasa.utils.tensorflow.models - Building tensorflow prediction graph...
2020-11-19 15:13:15 DEBUG rasa.utils.tensorflow.models - Finished building tensorflow prediction graph.
2020-11-19 15:13:15 DEBUG rasa.core.nlg.generator - Instantiated NLG to 'TemplatedNaturalLanguageGenerator'.
2020-11-19 15:13:15 INFO root - Rasa server is up and running.
2020-11-19 15:13:23 DEBUG rasa.core.lock_store - Issuing ticket for conversation 'test_sender_1'.
2020-11-19 15:13:23 DEBUG rasa.core.lock_store - Acquiring lock for conversation 'test_sender_1'.
2020-11-19 15:13:23 DEBUG rasa.core.lock_store - Acquired lock for conversation 'test_sender_1'.
2020-11-19 15:13:23 DEBUG rasa.core.tracker_store - Creating a new tracker for id 'test_sender_1'.
2020-11-19 15:13:23 DEBUG rasa.core.processor - Starting a new session for conversation ID 'test_sender_1'.
2020-11-19 15:13:23 DEBUG rasa.core.processor - Action 'action_session_start' ended with events '[<rasa.shared.core.events.SessionStarted object at 0x0000020225B1B3C8>, <rasa.shared.core.events.ActionExecuted object at 0x0000020225AC8C88>]'.
2020-11-19 15:13:23 DEBUG rasa.core.processor - Received user message 'doesn't work' with intent '{'id': 1905598998369304258, 'name': 'Backend tech', 'confidence': 0.39097222685813904}' and entities '[]'
2020-11-19 15:13:23 DEBUG rasa.core.processor - Logged UserUtterance - tracker now has 4 events.
2020-11-19 15:13:23 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:23 DEBUG rasa.core.policies.memoization - There is a memorised next action 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'
2020-11-19 15:13:23 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:23 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:13:23 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_0_MemoizationPolicy
2020-11-19 15:13:23 DEBUG rasa.core.processor - Predicted next action 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76' with confidence 1.00.
2020-11-19 15:13:23 DEBUG rasa.core.processor - Action 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76' ended with events '[BotUttered('Awesome and more awesome', {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, {"template_name": "utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76"}, 1605795203.9966788)]'.
2020-11-19 15:13:26 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}]
2020-11-19 15:13:26 DEBUG rasa.core.policies.memoization - There is a memorised next action 'action_listen'
2020-11-19 15:13:26 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}]
2020-11-19 15:13:26 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:13:26 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_0_MemoizationPolicy
2020-11-19 15:13:26 DEBUG rasa.core.processor - Predicted next action 'action_listen' with confidence 1.00.
2020-11-19 15:13:26 DEBUG rasa.core.processor - Action 'action_listen' ended with events '[]'.
2020-11-19 15:13:26 DEBUG rasa.core.lock_store - Deleted lock for conversation 'test_sender_1'.
2020-11-19 15:13:48 DEBUG rasa.core.lock_store - Issuing ticket for conversation 'test_sender_1'.
2020-11-19 15:13:48 DEBUG rasa.core.lock_store - Acquiring lock for conversation 'test_sender_1'.
2020-11-19 15:13:48 DEBUG rasa.core.lock_store - Acquired lock for conversation 'test_sender_1'.
2020-11-19 15:13:48 DEBUG rasa.core.tracker_store - Recreating tracker for id 'test_sender_1'
#
# NOW I'VE SEND A MESSAGE TO PREDICT A FALLBACK ACTION
#
2020-11-19 15:13:48 DEBUG rasa.core.processor - Received user message 'now fallback' with intent '{'id': -2734617851034171858, 'name': 'What are you', 'confidence': 0.8146608471870422}' and entities '[]'
2020-11-19 15:13:48 DEBUG rasa.core.processor - Logged UserUtterance - tracker now has 8 events.
2020-11-19 15:13:48 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:48 DEBUG rasa.core.policies.memoization - There is no memorised next action
2020-11-19 15:13:48 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:48 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:13:48 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy
2020-11-19 15:13:48 DEBUG rasa.core.processor - Predicted next action 'action_core_fallback' with confidence 0.20.
2020-11-19 15:13:48 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_core_fallback'.
2020-11-19 15:13:49 DEBUG rasa.core.processor - Action 'action_core_fallback' ended with events '[BotUttered('fallback', {}, {}, 1605795229.6483705), <rasa.shared.core.events.ActionReverted object at 0x00000202253E7FC8>]'.
2020-11-19 15:13:51 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:51 DEBUG rasa.core.policies.memoization - There is no memorised next action
2020-11-19 15:13:51 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:51 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:13:51 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy
2020-11-19 15:13:51 DEBUG rasa.core.processor - Predicted next action 'action_core_fallback' with confidence 0.20.
2020-11-19 15:13:51 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_core_fallback'.
2020-11-19 15:13:51 DEBUG rasa.core.processor - Action 'action_core_fallback' ended with events '[BotUttered('fallback', {}, {}, 1605795231.7038443), <rasa.shared.core.events.ActionReverted object at 0x00000202262F0DC8>]'.
2020-11-19 15:13:53 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:53 DEBUG rasa.core.policies.memoization - There is no memorised next action
2020-11-19 15:13:53 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:53 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:13:53 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy
2020-11-19 15:13:53 DEBUG rasa.core.processor - Predicted next action 'action_core_fallback' with confidence 0.20.
2020-11-19 15:13:53 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_core_fallback'.
2020-11-19 15:13:53 DEBUG rasa.core.processor - Action 'action_core_fallback' ended with events '[BotUttered('fallback', {}, {}, 1605795233.7801652), <rasa.shared.core.events.ActionReverted object at 0x0000020222ADBBC8>]'.
2020-11-19 15:13:55 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:55 DEBUG rasa.core.policies.memoization - There is no memorised next action
2020-11-19 15:13:55 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:55 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:13:55 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy
2020-11-19 15:13:55 DEBUG rasa.core.processor - Predicted next action 'action_core_fallback' with confidence 0.20.
2020-11-19 15:13:55 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_core_fallback'.
2020-11-19 15:13:56 DEBUG rasa.core.processor - Action 'action_core_fallback' ended with events '[BotUttered('fallback', {}, {}, 1605795236.154833), <rasa.shared.core.events.ActionReverted object at 0x0000020222AB6488>]'.
2020-11-19 15:13:57 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:57 DEBUG rasa.core.policies.memoization - There is no memorised next action
2020-11-19 15:13:57 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:57 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:13:57 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy
2020-11-19 15:13:57 DEBUG rasa.core.processor - Predicted next action 'action_core_fallback' with confidence 0.20.
2020-11-19 15:13:57 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_core_fallback'.
2020-11-19 15:13:58 DEBUG rasa.core.processor - Action 'action_core_fallback' ended with events '[BotUttered('fallback', {}, {}, 1605795238.0718741), <rasa.shared.core.events.ActionReverted object at 0x00000202261ABF88>]'.
2020-11-19 15:13:59 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:59 DEBUG rasa.core.policies.memoization - There is no memorised next action
2020-11-19 15:13:59 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:13:59 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:13:59 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy
2020-11-19 15:13:59 DEBUG rasa.core.processor - Predicted next action 'action_core_fallback' with confidence 0.20.
2020-11-19 15:13:59 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_core_fallback'.
2020-11-19 15:14:00 DEBUG rasa.core.processor - Action 'action_core_fallback' ended with events '[BotUttered('fallback', {}, {}, 1605795240.163361), <rasa.shared.core.events.ActionReverted object at 0x0000020222B40EC8>]'.
2020-11-19 15:14:01 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:14:01 DEBUG rasa.core.policies.memoization - There is no memorised next action
2020-11-19 15:14:01 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:14:01 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:14:01 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy
2020-11-19 15:14:01 DEBUG rasa.core.processor - Predicted next action 'action_core_fallback' with confidence 0.20.
2020-11-19 15:14:01 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_core_fallback'.
2020-11-19 15:14:02 DEBUG rasa.core.processor - Action 'action_core_fallback' ended with events '[BotUttered('fallback', {}, {}, 1605795242.5156264), <rasa.shared.core.events.ActionReverted object at 0x0000020222B40B08>]'.
2020-11-19 15:14:04 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:14:04 DEBUG rasa.core.policies.memoization - There is no memorised next action
2020-11-19 15:14:04 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:14:04 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:14:04 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy
2020-11-19 15:14:04 DEBUG rasa.core.processor - Predicted next action 'action_core_fallback' with confidence 0.20.
2020-11-19 15:14:04 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_core_fallback'.
2020-11-19 15:14:05 DEBUG rasa.core.processor - Action 'action_core_fallback' ended with events '[BotUttered('fallback', {}, {}, 1605795245.0051792), <rasa.shared.core.events.ActionReverted object at 0x0000020222A7FD88>]'.
2020-11-19 15:14:06 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:14:06 DEBUG rasa.core.policies.memoization - There is no memorised next action
2020-11-19 15:14:06 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:14:06 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:14:06 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy
2020-11-19 15:14:06 DEBUG rasa.core.processor - Predicted next action 'action_core_fallback' with confidence 0.20.
2020-11-19 15:14:06 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_core_fallback'.
2020-11-19 15:14:08 DEBUG rasa.core.processor - Action 'action_core_fallback' ended with events '[BotUttered('fallback', {}, {}, 1605795248.0147989), <rasa.shared.core.events.ActionReverted object at 0x0000020222A979C8>]'.
2020-11-19 15:14:09 DEBUG rasa.core.policies.memoization - Current tracker state [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:14:09 DEBUG rasa.core.policies.memoization - There is no memorised next action
2020-11-19 15:14:09 DEBUG rasa.core.policies.rule_policy - Current tracker state: [{}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'action_listen'}}, {'user': {'intent': 'Backend tech'}, 'prev_action': {'action_name': 'utter_b8a7830281b4122a3b6d24776857e0bd1dc7ce76'}}, {'user': {'intent': 'What are you'}, 'prev_action': {'action_name': 'action_listen'}}]
2020-11-19 15:14:09 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2020-11-19 15:14:09 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy
2020-11-19 15:14:09 DEBUG rasa.core.processor - Predicted next action 'action_core_fallback' with confidence 0.20.
2020-11-19 15:14:09 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_core_fallback'.
2020-11-19 15:14:10 DEBUG rasa.core.processor - Action 'action_core_fallback' ended with events '[BotUttered('fallback', {}, {}, 1605795250.3087485), <rasa.shared.core.events.ActionReverted object at 0x0000020222A97C88>]'.
2020-11-19 15:14:11 WARNING rasa.core.processor - Circuit breaker tripped. Stopped predicting more actions for sender 'test_sender_1'.
2020-11-19 15:14:11 DEBUG rasa.core.lock_store - Deleted lock for conversation 'test_sender_1'.