-
Notifications
You must be signed in to change notification settings - Fork 208
Closed
Labels
Description
@matt-kruse @dblock There seems to be a bug in the server generation of utterance permutations. For example the following:
"utterances": ['{to|} set temperature to {64-80|number}']
generates utterances as follows:
setTempsIntent to set temperature to {sixty four|number}
setTempsIntent set temperature to {sixty five|number}
setTempsIntent to set temperature to {sixty six|number}
setTempsIntent set temperature to {sixty seven|number}
...
but what I believe should be generated is:
setTempsIntent to set temperature to {sixty four|number}
setTempsIntent set temperature to {sixty four|number}
setTempsIntent to set temperature to {sixty five|number}
setTempsIntent set temperature to {sixty five|number}
setTempsIntent to set temperature to {sixty six|number}
setTempsIntent set temperature to {sixty six|number}
setTempsIntent to set temperature to {sixty seven|number}
setTempsIntent set temperature to {sixty seven|number}
...
Reactions are currently unavailable