Facing this issue - Circuit breaker tripped. Stopped predicting more actions, eventhough no custom actions were triggered
I suspect you have long stories and/or you may be using a lot of checkpoints. Can you share your bot repo.
Below are my stories. The behaviour is quite erratic and unpredicatble
-
story: Get count of projects steps:
- intent: get_count_projects
- action: action_get_project_count
-
story: Get count of defects steps:
- intent: get_count_defects
- action: action_set_intent
- slot_was_set:
- set_intent: set_intent
- set_entities: set_entities
- action: utter_ask_project_id
- intent: provide_project_id
- slot_was_set:
- project_id: ‘123’
- action: action_get_defect_count
- action: action_reset_slots
-
story: Get count of test cases steps:
- intent: get_count_test_cases
- action: action_set_intent
- slot_was_set:
- set_intent: set_intent
- set_entities: set_entities
- action: utter_ask_project_id
- intent: provide_project_id
- slot_was_set:
- project_id: ‘123’
- action: action_get_test_cases_count
- action: action_reset_slots
In some cases, the action action_get_test_cases_count/action_get_defect_count doesnt get triggered And in some cases, along with the response from, action_get_test_cases_count/action_get_defect_count, I get multiple fallback responses and then the circuit breaker is tripped.
I have no ruleset defined for this functionality
I answered a similar question here that should help you move away from stories and featurized slots to provide more reliable dialogue flow.