2019-11-12 10:15:47 DEBUG rasa.core.policies.memoization - Current tracker state [None, None, None, {}, {'intent_book': 1.0, 'prev_action_listen': 1.0, 'entity_location': 1.0}]
2019-11-12 10:15:47 DEBUG rasa.core.policies.memoization - There is no memorised next action
2019-11-12 10:15:47 DEBUG rasa.core.policies.mapping_policy - There is no mapped action for the predicted intent, 'give_cabin_class'.
2019-11-12 10:15:47 DEBUG rasa.core.policies.form_policy - There is an active form 'book_form'
2019-11-12 10:15:47 DEBUG rasa.core.policies.two_stage_fallback - NLU confidence threshold met, confidence of fallback action set to core threshold (0.3).
2019-11-12 10:15:47 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_3_FormPolicy
2019-11-12 10:15:47 DEBUG rasa.core.processor - Predicted next action 'action_listen' with confidence 1.00.
2019-11-12 10:15:47 DEBUG rasa.core.processor - Action 'action_listen' ended with events '[]'
2019-11-12 10:15:47 DEBUG rasa.core.lock_store - Deleted lock for conversation '123'.
2019-11-12 10:15:53 DEBUG rasa.core.tracker_store - Recreating tracker for id '123'
2019-11-12 10:15:53 WARNING root - Could not parse timestamp 6bd9a488f5eb4e6eb0fb89a86a7026e7. Instead current UTC time will be passed to duckling. Error: invalid literal for int() with base 10: '6bd9a488f5eb4e6eb0fb89a86a7026e7'
2019-11-12 10:15:53 DEBUG rasa.core.processor - Received user message 'arrive faster' with intent '{'name': 'arrive_fast', 'confidence': 0.9331502318382263}' and entities '[]'
2019-11-12 10:15:53 DEBUG rasa.core.processor - Logged UserUtterance - tracker now has 101 events
2019-11-12 10:15:53 DEBUG rasa.core.policies.memoization - Current tracker state [None, None, None, {}, {'intent_book': 1.0, 'prev_action_listen': 1.0, 'entity_location': 1.0}]
2019-11-12 10:15:53 DEBUG rasa.core.policies.memoization - There is no memorised next action
2019-11-12 10:15:53 DEBUG rasa.core.policies.form_policy - There is an active form 'book_form'
2019-11-12 10:15:53 DEBUG rasa.core.policies.two_stage_fallback - NLU confidence threshold met, confidence of fallback action set to core threshold (0.3).
2019-11-12 10:15:53 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_3_FormPolicy
2019-11-12 10:15:53 DEBUG rasa.core.processor - Predicted next action 'book_form' with confidence 1.00.
2019-11-12 10:15:53 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'book_form'.
2019-11-12 10:15:53 DEBUG rasa.core.tracker_store - Creating a new tracker for id 'default'.
2019-11-12 10:15:53 DEBUG rasa.core.tracker_store - Recreating tracker for id 'default'
2019-11-12 10:15:53 DEBUG rasa.core.processor - Action 'utter_options_available' ended with events '['BotUttered(text: Let\'s see what options we have available, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": "default", "image": "default", "custom": null}, metadata: {})']'
2019-11-12 10:15:53 DEBUG rasa.core.lock_store - Deleted lock for conversation 'default'.
2019-11-12 10:15:53 DEBUG rasa.core.tracker_store - Recreating tracker for id 'default'
2019-11-12 10:15:56 DEBUG rasa.core.processor - Action 'book__form' ended with events '['BotUttered(text: .........']'
This is the only time in the middle of the conversation where it creates a new tracker.
My POST request looks like this:
def say_options_available(self):
headers = {
'Content-Type': 'application/json',
}
data = '{"name":"utter_options_available"}'
response = requests.post('http://localhost:5005/conversations/default/execute', headers=headers, data=data)
print(response)