Rasa Core version:0.12.0
Python version: py3, py3.5, py3.6
Operating system (windows, osx, …):windows 10 , ubuntu
Issue:
Content of domain file (if used & relevant):
name:
 type: text
services:
 type: categorical
 values:
   - transit
   - civic service
actions:
  - utter_ask_civic_service
  - utter_ask_transit_services
templates:
  - utter_ask_civic_service
     - text: Select civic service type
  - utter_ask_transit_services
     - text: Select the transit support.
in the link  Slot Filling and Common Patterns — Rasa Core 0.9.8 documentation  it is explained how well a slot value can influence next utterance, but in latest docs it is not mentioned .
i am using Categorical slot  , and next utterance is regardless of slot value ,next utterance is randomized .
consider below two training snippets
 ## story 1
 * inform_service{"services":"transit"}
   - slot{"services":"transit"}
   - utter_ask_transit_services
## story 2
 * inform_service{"services":"civic service"}
   - slot{"services":"civic service"}
   - utter_ask_civic_service 
and now testing
test 1:
i send
  /inform_service{"services":"civic service"}
5 times
predicted action is randomly
- utter_ask_civic_service
 - utter_ask_transit_services
 
test 2:
i send
  /inform_service{"services":"transit"}
5 times
predicted action is randomly
- utter_ask_civic_service
 - utter_ask_transit_services
 
but expected was only utter_ask_transit_services
is this a known issue , any workaround is there for this ?