question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Slot filling not working if slot already has same value

See original GitHub issue

Rasa version: 1.4.6

Rasa SDK version (if used & relevant):

Rasa X version (if used & relevant):

Python version: 3.6.9 (anaconda)

Operating system (windows, osx, …): RHEL 7 (CentOS)

Issue: If you try and set a slot with the same value that’s already in the slot, the results are unpredictable. Sometime I get a fallback action, sometimes I get a different value or no value in the slot, even though the debug information shows the slot contains the right value.

I have an intent where I display 3 buttons for the tester to choose the profile he wants to test. The bot responds differently depending on the profile set. The show_profile intent is called by the buttons like this (for the three buttons):

  • /show_profile{“profile”: “vip”}
  • /show_profile{“profile”: “standard”}
  • /show_profile{“profile”: “anonymous”}

Just /show_profile will show me the currently set profile. This was made based on a blank “rasa init”

If I set the same profile twice in a row, I get unpredictable results. Here’s a sample conversation (debug version below):

Your input ->  who am i?                                                                                                                                                                                                                      
No profile set
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
I'm VIP
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
Fallback... Didn't understand.
Your input ->  /show_profile                                                                                                                                                                                                                  
I'm VIP
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
No profile set
Your input ->  /show_profile                                                                                                                                                                                                                  
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
I'm VIP
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
Fallback... Didn't understand.
Your input ->  /show_profile                                                                                                                                                                                                                  
I'm VIP
Your input ->  

Error (including full traceback):

$ rasa shell --debug
2019-12-20 10:54:13 DEBUG    rasa.model  - Extracted model to '/tmp/tmpwmm_pckd'.
2019-12-20 10:54:13 DEBUG    rasa.cli.utils  - Parameter 'endpoints' not set. Using default location 'endpoints.yml' instead.
2019-12-20 10:54:13 DEBUG    rasa.cli.utils  - Parameter 'credentials' not set. Using default location 'credentials.yml' instead.
2019-12-20 10:54:13 DEBUG    rasa.model  - Extracted model to '/tmp/tmp30m1luqh'.
2019-12-20 10:54:14 INFO     root  - Connecting to channel 'cmdline' which was specified by the '--connector' argument. Any other channels will be ignored. To connect to all given channels, omit the '--connector' argument.
2019-12-20 10:54:14 DEBUG    sanic.root  - CORS: Configuring CORS with resources: {'/*': {'origins': [''], 'methods': 'DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT', 'allow_headers': ['.*'], 'expose_headers': None, 'supports_credentials': True, 'max_age': None, 'send_wildcard': False, 'automatic_options': True, 'vary_header': True, 'resources': {'/*': {'origins': ''}}, 'intercept_exceptions': True, 'always_send': True}}
2019-12-20 10:54:14 DEBUG    rasa.core.utils  - Available web server routes: 
/webhooks/rest                                     GET                            custom_webhook_CmdlineInput.health
/webhooks/rest/webhook                             POST                           custom_webhook_CmdlineInput.receive
/                                                  GET                            hello
2019-12-20 10:54:14 INFO     root  - Starting Rasa server on http://localhost:5005
2019-12-20 10:54:14 INFO     root  - Enabling coroutine debugging. Loop id 94800492976808.
2019-12-20 10:54:14 DEBUG    rasa.model  - Extracted model to '/tmp/tmpd_ww121o'.
2019-12-20 10:54:14 INFO     numexpr.utils  - NumExpr defaulting to 2 threads.
2019-12-20 10:54:17 INFO     absl  - Entry Point [tensor2tensor.envs.tic_tac_toe_env:TicTacToeEnv] registered with id [T2TEnv-TicTacToeEnv-v0]
2019-12-20 10:54:18 DEBUG    rasa.core.tracker_store  - Connected to MongoTrackerStore.
2019-12-20 10:54:18 DEBUG    rasa.core.lock_store  - Connected to lock store 'InMemoryLockStore'.
2019-12-20 10:54:18 DEBUG    rasa.model  - Extracted model to '/tmp/tmpddmvmvj4'.
2019-12-20 10:54:18 DEBUG    pykwalify.compat  - Using yaml library: /home/sscudder/anaconda3/envs/Especialista/lib/python3.6/site-packages/ruamel/yaml/__init__.py
Bot loaded. Type a message and press enter (use '/stop' to exit): 
Your input ->  who am i?                                                                                              
2019-12-20 10:58:43 DEBUG    rasa.core.processor  - Received user message 'who am i?' with intent '{'name': 'show_profile', 'confidence': 0.9996775388717651}' and entities '[]'
2019-12-20 10:58:43 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 2 events
2019-12-20 10:58:43 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:58:43 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:58:43 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '17'
2019-12-20 10:58:44 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:58:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:58:44 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_none' with confidence 1.00.
2019-12-20 10:58:44 DEBUG    rasa.core.processor  - Action 'utter_slot_none' ended with events '['BotUttered(text: No profile set, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:58:44 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:58:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_none': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 10:58:44 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '0'
2019-12-20 10:58:44 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:58:44 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:58:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:58:44 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:58:44 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:58:44 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
No profile set
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Current slot values: 
	profile: vip
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 7 events
2019-12-20 10:58:59 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:58:59 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:58:59 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_vip' with confidence 0.99.
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Action 'utter_slot_vip' ended with events '['BotUttered(text: I\'m VIP, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:58:59 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_slot_vip': 1.0}]
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_vip': 1.0}]
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:58:59 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:58:59 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:58:59 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:58:59 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm VIP
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Current slot values: 
	profile: vip
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 12 events
2019-12-20 10:59:19 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:19 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:19 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:59:19 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:19 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:59:19 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:59:19 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile                                                                                          
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Received user message '/show_profile' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[]'
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 16 events
2019-12-20 10:59:28 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:28 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:28 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '19'
2019-12-20 10:59:28 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:28 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_vip' with confidence 1.00.
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Action 'utter_slot_vip' ended with events '['BotUttered(text: I\'m VIP, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:59:28 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:28 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_slot_vip': 1.0}]
2019-12-20 10:59:28 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '0'
2019-12-20 10:59:28 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:59:28 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:28 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:59:28 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm VIP
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Current slot values: 
	profile: standard
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 21 events
2019-12-20 10:59:36 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:36 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:36 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 1.00.
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:59:36 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:36 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:59:36 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:36 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:59:36 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Current slot values: 
	profile: standard
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 26 events
2019-12-20 10:59:44 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:44 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_none' with confidence 0.75.
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Action 'utter_slot_none' ended with events '['BotUttered(text: No profile set, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:59:44 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_utter_slot_none': 1.0}]
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_none': 1.0}]
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:44 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:59:44 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:59:44 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
No profile set
Your input ->  /show_profile                                                                                          
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Received user message '/show_profile' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[]'
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 30 events
2019-12-20 10:59:50 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:50 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '18'
2019-12-20 10:59:50 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:50 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 1.00.
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:59:50 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 10:59:50 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '0'
2019-12-20 10:59:50 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:59:50 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:50 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:59:50 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Current slot values: 
	profile: standard
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 35 events
2019-12-20 11:00:08 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:08 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:08 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 0.70.
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:08 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:08 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:08 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:08 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:08 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Current slot values: 
	profile: standard
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 40 events
2019-12-20 11:00:11 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:11 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:11 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:11 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:11 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:11 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:11 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Current slot values: 
	profile: standard
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 45 events
2019-12-20 11:00:14 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:14 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:14 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 0.70.
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:14 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:14 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:14 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:14 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:14 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Current slot values: 
	profile: standard
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 50 events
2019-12-20 11:00:16 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:16 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:16 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 0.71.
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:16 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:16 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:16 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:16 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:16 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Current slot values: 
	profile: standard
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 55 events
2019-12-20 11:00:19 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:19 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:19 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:19 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:19 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:19 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:19 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Current slot values: 
	profile: standard
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 60 events
2019-12-20 11:00:21 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:21 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:21 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 0.70.
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:21 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:21 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:21 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:21 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:21 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Current slot values: 
	profile: standard
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 65 events
2019-12-20 11:00:25 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:25 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:25 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 0.71.
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:25 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:25 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:25 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:25 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:25 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Current slot values: 
	profile: vip
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 70 events
2019-12-20 11:00:34 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:34 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:34 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_vip' with confidence 1.00.
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Action 'utter_slot_vip' ended with events '['BotUttered(text: I\'m VIP, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:34 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_slot_vip': 1.0}]
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_vip': 1.0}]
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:34 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:34 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:34 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:34 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm VIP
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Current slot values: 
	profile: vip
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 75 events
2019-12-20 11:00:44 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:44 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:44 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:44 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:44 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Current slot values: 
	profile: vip
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 80 events
2019-12-20 11:00:46 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:46 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:46 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:46 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:46 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:46 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:46 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 11:00:47 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 11:00:47 DEBUG    rasa.core.processor  - Current slot values: 
	profile: vip
2019-12-20 11:00:47 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 85 events
2019-12-20 11:00:47 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:47 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:47 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:48 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:48 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:48 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:48 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:48 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:48 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:48 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:48 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:48 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:48 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Current slot values: 
	profile: vip
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 90 events
2019-12-20 11:00:50 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:50 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:50 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:50 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:50 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:50 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:50 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile                                                                                          
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Received user message '/show_profile' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[]'
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 94 events
2019-12-20 11:00:56 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:56 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:56 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '19'
2019-12-20 11:00:56 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:56 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_vip' with confidence 1.00.
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Action 'utter_slot_vip' ended with events '['BotUttered(text: I\'m VIP, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:56 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:56 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_slot_vip': 1.0}]
2019-12-20 11:00:56 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '0'
2019-12-20 11:00:56 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:56 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:56 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:56 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm VIP
Your input ->  

Command or request that led to error:

rasa shell

Content of configuration file (config.yml) (if relevant):

# Configuration for Rasa NLU.
# https://rasa.com/docs/rasa/nlu/components/
language: pt
pipeline:
  - name: "WhitespaceTokenizer"
  - name: "RegexFeaturizer"
  - name: "CRFEntityExtractor"
  - name: "EntitySynonymMapper"
  - name: "CountVectorsFeaturizer"
    strip_accents: "unicode"
    analyzer: "char_wb"
    min_ngram: 1
    max_ngram: 4
  - name: "EmbeddingIntentClassifier"
    random_seed: 2614

# Configuration for Rasa Core.
# https://rasa.com/docs/rasa/core/policies/
policies:
  - name: FormPolicy
  - name: AugmentedMemoizationPolicy
    max_history: 1
  - name: KerasPolicy
    validation_split: 0.2
    batch_size: 32
    epochs: 200
  - name: MappingPolicy
  - name: FallbackPolicy
    nlu_threshold: 0.7
    core_threshold: 0.7
    fallback_action_name: "utter_default"

Content of domain file (domain.yml) (if relevant):

intents:
  - greet
  - goodbye
  - affirm
  - deny
  - mood_great
  - mood_unhappy
  - bot_challenge
  - define_slots
  - show_profile

actions:
- utter_greet
- utter_cheer_up
- utter_did_that_help
- utter_happy
- utter_goodbye
- utter_iamabot
- utter_default
- utter_slot_vip
- utter_slot_standard
- utter_slot_anonimous
- utter_slot_none
- utter_setslot

entities:
  - profile

slots:
  profile:
    type: categorical
    values:
    - vip
    - standard
    - anonimous

templates:
  utter_greet:
  - text: "Hi! How are you feeling today?"

  utter_cheer_up:
  - text: "Here is something to cheer you up:"
    image: "https://i.imgur.com/nGF1K8f.jpg"

  utter_did_that_help:
  - text: "Did that help you?"

  utter_happy:
  - text: "Great, carry on!"

  utter_goodbye:
  - text: "Bye"

  utter_iamabot:
  - text: "I am a bot, powered by Rasa."

  utter_default:
  - text: "Fallback... Didn't understand."

  utter_setslot:
    - text: Selecione Perfil
      buttons:
      - title: vip
        payload: '/show_profile{"profile" : "vip"}'
      - title: standard
        payload: '/show_profile{"profile" : "standard"}'
      - title: anonimous
        payload: '/show_profile{"profile" : "anonimous"}'

  utter_slot_vip:
    - text: I'm VIP

  utter_slot_standard:
    - text: I'm standard

  utter_slot_anonimous:
    - text: I'm anonimous

  utter_slot_none:
    - text: "No profile set"

Content of nlu file (nlu.md):

## intent:greet
- hey
- hello
- hi
- good morning
- good evening
- hey there

## intent:goodbye
- bye
- goodbye
- see you around
- see you later

## intent:affirm
- yes
- indeed
- of course
- that sounds good
- correct

## synonym:yes
- sim
- correto
- right
- absolutely
- righto

## intent:deny
- no
- never
- "I don't think so"
- "don't like that"
- no way
- not really

## intent:mood_great
- perfect
- very good
- great
- amazing
- wonderful
- I am feeling very good
- I am great
- "I'm good"

## intent:mood_unhappy
- sad
- very sad
- unhappy
- bad
- very bad
- awful
- terrible
- not very good
- extremely sad
- so sad

## intent:bot_challenge
- are you a bot?
- are you a human?
- am I talking to a bot?
- am I talking to a human?

## intent:define_slots
- I want to change my profile
- I want to alter my profile
- change profile
- swap my profile
- set profile
- choose profile

## intent:show_profile
- who am I?
- what am I?
- show me slots
- show profile
- let me see my profile
- display profile

Content of stories file (stories.md):

## happy path
* greet
  - utter_greet
* mood_great
  - utter_happy

## sad path 1
* greet
  - utter_greet
* mood_unhappy
  - utter_cheer_up
  - utter_did_that_help
* affirm
  - utter_happy

## sad path 2
* greet
  - utter_greet
* mood_unhappy
  - utter_cheer_up
  - utter_did_that_help
* deny
  - utter_goodbye

## say goodbye
* goodbye
  - utter_goodbye

## bot challenge
* bot_challenge
  - utter_iamabot

## set_slots
* define_slots
  - utter_setslot

## show_profile_vip
* show_profile
  - slot{"profile" : "vip"}
  - utter_slot_vip

## show_profile_standard
* show_profile
  - slot{"profile" : "standard"}
  - utter_slot_standard

## show_profile_anonimous
* show_profile
  - slot{"profile" : "anonimous"}
  - utter_slot_anonimous

## show_profile
* show_profile
  - utter_slot_none

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:9 (6 by maintainers)

github_iconTop GitHub Comments

3reactions
erohmensingcommented, Jan 2, 2020

You can check the difference using https://onlineyamltools.com/convert-yaml-to-json:

Screenshot 2020-01-02 at 18 01 06 Screenshot 2020-01-02 at 18 00 58

Also right now you have use_entitities instead of use_entities, I just noticed

0reactions
erohmensingcommented, Jan 13, 2020

Closing as this should have fixed the issue, feel free to reopen if you still are having issues.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Slot filling not working for large number of slot values for an ...
Hi everyone, I am new in RASA. And I have an issue with slot filling. I have created an intent in nlu file...
Read more >
Slot-filling fills multiple slots at once and makes a mess with ...
There are a couple of things in play here. The first is that "1:00" isn't a number. What it is depends on how...
Read more >
Slots filled by Text | Rasa Tutorial - YouTube
Rasa slots can be filled by entities, but they can also store information from other sources. In this lesson, we will fill slot...
Read more >
Dialog Interface Reference | Alexa Skills Kit - Amazon Developer
The slots that must be filled with valid values in order to fulfill the intent. ... if the intent has four slots and...
Read more >
Slot filling for values > 5000 - Power Platform Community
There is a scenario where bot asks : What is customer name you are looking information for?. If the user has already provided...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found