Changes between Version 14 and Version 15 of dialogmanager
- Timestamp:
- 02/01/23 13:37:29 (21 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dialogmanager
v14 v15 3 3 NOTICE this page describes dialogmanager 1.4.1 (rev. 105). 4 4 The latest dialogmanager 2.0.0 extends the evaluation functionality and json format is slightly different. 5 6 5 7 6 8 The dialog manager is a tool to create and execute dialogs with a human user. … … 16 18 String answer = get answer fitting state.getOption.getAnswerType(); 17 19 state = state.with(answer); 20 }}} 21 22 == Dependency 23 {{{ 24 <dependency> 25 <groupId>tudelft.utilities</groupId> 26 <artifactId>dialogmanager</artifactId> 27 <version>2.0.1</version> 28 </dependency> 29 }}} 30 31 also add 32 {{{ 33 <repositories> 34 <repository> 35 <id>artifactory.ewi.tudelft.nl</id> 36 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url> 37 <snapshots> 38 <enabled>false</enabled> 39 </snapshots> 40 </repository> 41 </repositories> 18 42 }}} 19 43