Skip to content
This repository was archived by the owner on Aug 12, 2022. It is now read-only.

Class MemoryEntity

thbeucher edited this page Mar 30, 2017 · 1 revision

An instance of the MemoryEntity class is instantiated by the Conversation.

Attributes

Attributes Description
name String: the name of the entity
raw String: the raw value extracted from the input
confidence Float: the detection score between 0 and 1 excluded
value Float: the value of the entity
Client client = new Client(YOUR_TOKEN);
Conversation conversation = client.textConverse(YOUR_TEXT)
MemoryEntity memoryEntity = conversation.getMemory().getEntities().get("entityName");

Clone this wiki locally