You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 15, 2025. It is now read-only.
* move missing functions to library-Missing.lg
* move assign functions to library-Assign.lg
* separate choose and help from library.lg
* separate read fact/form from library.lg
* remove unused functions from library.lg
- Required response for @{property} should be in @{dialogClass.schema.properties[property].$units}.
10
+
- ELSE:
11
+
- Unit for @{property} is not defined in the schema.
12
+
13
+
# setObjectPropertyMessage(property, val)
14
+
- IF: @{contains($expectedProperties, property)}
15
+
-
16
+
- ELSEIF: @{dialog[property]}
17
+
- @{name(property)} is changed from @{join(foreach(dialogClass.schema.properties[property].required, subproperty, subFact(property, subproperty)), ' ')} to @{val}.
- Enter a number for @{name(property)} between @{dialogClass.schema.properties[property].minimum} and @{dialogClass.schema.properties[property].maximum}
- The value of @{toLower(property)} is @{join(foreach(dialogClass.schema.properties[property].required, subproperty, subFact(property, subproperty)), ' ')}.
15
+
- ELSE:
16
+
- The value of @{toLower(property)} is @{dialog[property]}.
- Enter a number for @{name(property)} between @{dialogClass.schema.properties[property].minimum} and @{dialogClass.schema.properties[property].maximum}
Please choose a value for @{name(property)} from \[@{join(foreach(turn.dialogEvent.value.entity.value, val, enumEntityValue(property, val)), ', ')}\]
97
-
```
98
-
99
32
# cancel
100
33
- Do you want to end the conversation? (yes/no)
101
34
102
-
# setObjectPropertyMessage(property, val)
103
-
- IF: @{contains($expectedProperties, property)}
104
-
-
105
-
- ELSEIF: @{dialog[property]}
106
-
- @{name(property)} is changed from @{join(foreach(dialogClass.schema.properties[property].required, subproperty, subFact(property, subproperty)), ' ')} to @{val}.
- The value of @{toLower(property)} is @{join(foreach(dialogClass.schema.properties[property].required, subproperty, subFact(property, subproperty)), ' ')}.
148
-
- ELSE:
149
-
- The value of @{toLower(property)} is @{dialog[property]}.
150
-
151
35
# confirmChangeProperty(property)
152
36
- IF: @{dialog[property]}
153
37
- Do you want to change the value of @{toLower(property)}? (yes or no)
154
38
- ELSE:
155
39
- Do you want to add a value for @{toLower(property)}? (yes or no)
0 commit comments