Changes between Version 18 and Version 19 of dialogmanager
- Timestamp:
- 02/01/23 15:43:09 (21 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dialogmanager
v18 v19 48 48 * The Keywords parameters is useful if you want to do keyword matching. It contains a list of (case-insensitive) keywords. The distance to a list of words (eg another Keywords parameter or the words in a StringParameter) is the minimu distance of any of the words to any of the keywords. Here the Levenshtein distance is used to determine the distance between a word and a keyword. 49 49 50 == DialogState 51 The DialogState contains the full description of the current situation of the dialog. 52 53 It contains two main components: 54 1. The DialogSpecification which is the map of the possible dialogs (see below) 55 2. The current Parameters containing all processed information given by the user (see below) 56 57 This can be saved and later restored to pick up a dialog. 50 58 51 59 == Dialog specification