This repository has been archived by the owner on May 30, 2023. It is now read-only.
Features
- Supports Slot unit
"slots": {
"temperature": {
"name": "temperature",
"value": "26.5",
"unit": "°C"
}
}
@IntentMapping("SlotValueUnit")
CEKResponse handleSlotValueUnit(SlotValueUnit<Double, Temperature.Unit> temperature) {
System.out.println(temperature); // value: 26.5 unit: Unit.C
return CEKResponse.empty();
}
see SlotUnitHandlerTest.java more details