Updated: November 4, 2020
We've added the ShoppingList
natural language (NL) category, which allows users to create, update, and check a shopping list of items.
We've added a new overflow
key, which determines the behavior of hbox
content if the information extends past the container. You can choose to have content scroll or be hidden.
We've deprecated the min
and max
key within prompt
. To restrict the cardinality of the related input, you can use a boolean expression using the new required-value
and single-value
keys.
...
prompt (items) {
required-value (size(basket) == 0)
candidates (matches)
}
...
prompt (items) {
single-value (size(basket) == 1)
candidates (matches)
}
...
Deprecation Stages (learn more)
With this release, you can prepare your capsule for voice selection on specific views. This feature will be enabled in a future release.
As an example, whereas previously you could use ordinal selection, such as "the second one", to choose recipes, you can now say something like "basil fried rice" using voice selection.
Accordingly, we've relocated the top-level modal-prompt
keys, which, along with the new disable-voice-content-selection
key, are now available through the new overrides
key.
If your capsule has its own modeling to do voice selection, you have the option to opt out of voice selection, when it becomes available, for specific views.
Deprecation Stages (learn more)