Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Release v1.2.0

Latest
Compare
Choose a tag to compare
@uich uich released this 24 Jun 04:36
· 2 commits to master since this release
5765908

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