Changes between Version 18 and Version 19 of dialogmanager


Ignore:
Timestamp:
02/01/23 15:43:09 (21 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • dialogmanager

    v18 v19  
    4848* 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.
    4949
     50== DialogState
     51The DialogState contains the full description of the current situation of the dialog.
     52
     53It contains two main components:
     541. The DialogSpecification which is the map of the possible dialogs (see below)
     552. The current Parameters containing all processed information given by the user (see below)
     56
     57This can be saved and later restored to pick up a dialog.
    5058
    5159== Dialog specification