Skip to content

1.1.0

Compare
Choose a tag to compare
@Sophietje Sophietje released this 15 Dec 11:03
· 692 commits to master since this release
  • NEW FEATURE ✨ The reasoner is added. It is disabled by default.
    • To enable it:
      • If you use the REST API: Add a property reasonerEnabled with value true to the POST /sc call to enable it for your smart connector's proactive interactions.
      • If you use the Java Developer API: Use the SmartConnector::setReasonerEnabled method.
    • ⚠️ BREAKING ⚠️ This might break some client code that depends on the response schema of GET /sc. The objects in the returned array now have a reasonerEnabled property that indicates whether the reasoner is enabled for that smart connector.
  • The REST API now consistently returns JSON.
    • ⚠️ BREAKING ⚠️ Clients need to be updated, most importantly, they need to make sure that the response of POST /sc/ki is interpreted as a JSON object instead of a plain text string.
  • If you use the distributed version of the Knowledge Engine, you can now (1) configure the URL at which your runtime is exposed to different runtimes, and (2) configure the URL at which your Knowledge Directory is exposed to the runtimes.
    • This means that it is now possible to place a reverse proxy in front of the Knowledge Engine and Knowledge Directory, allowing TLS-encrypted communication. 🔒
    • ⚠️ BREAKING ⚠️ The configuration has changed for this. Refer to the README for the latest examples.