
Description
This Node uses a Large Language Model (LLM) to extract entities, such as product codes, booking codes, or customer IDs, frominput.text of the Input object.
The Node supports both chat and voice use cases by processing text and transcribed speech inputs.
Before using this Node, set the LLM provider in the Settings.
You can configure the Node to either use the default model defined in the Settings or choose a specific configured LLM.
To view the extracted entity in the Interaction Panel, activate debug mode.
To output the extracted entity, add a Say Node below the LLM Entity Extract Node in the Flow editor. In the Text field of the Say Node, use the key you specified in the Storage Options section, for example, {{input.extractedEntity}}.
Parameters
| Parameter | Type | Description |
|---|---|---|
| Large Language Model | List | Select a model or use the default one. |
| Entity Name | CognigyScript | The name of the entity to extract. For example, customerID. |
| Entity Description | CognigyScript | A sentence that describes the entity. For example, An alphanumeric string of 6 characters, e.g., ABC123 or 32G5FD. |
| Example Input | Text | Examples of text inputs. For example, My ID is AB54EE, is that ok?, That would be ah bee see double 4 three, I guess it's 49 A B 8 K. Alternatively, you can click Show JSON Editor and add input examples in the code field. |
| Extracted Entity | CognigyScript | Examples of extracted entities. For example, AB54EE, ABC443, 49AB8K. |
Advanced
Advanced
| Parameter | Type | Description |
|---|---|---|
| Temperature | Indicator | The appropriate sampling temperature for the model. Higher values mean the model will take more risks. |
| Timeout | Number | The maximum number of milliseconds to wait for a response from the LLM provider. |
| Response Format | Select | Choose the format for the model’s output result. You can select one of the following options:
|
Storage Options
Storage Options
| Parameter | Type | Description |
|---|---|---|
| How to handle the result | Select | Determine how to handle the prompt result:
|
| Input Key to store Result | CognigyScript | The parameter appears when Store in Input is selected. The result is stored in the extractedEntity Input object by default. You can specify another key. |
| Context Key to store Result | CognigyScript | The parameter appears when Store in Context is selected. The result is stored in the extractedEntity Context object by default. You can specify another key. |
Debugging Options
Debugging Options
When using the Interaction Panel, you can trigger two types of debug logs. These logs are only available when using the Interaction Panel and aren’t intended for production debugging. You can also combine both log types.
| Parameter | Type | Description |
|---|---|---|
| Show Token Count | Toggle | Send a debug message containing the input, output, and total token count. The message appears in the Interaction Panel when debug mode is activated. Cognigy.AI uses the GPT-3 tokenizer, so actual token usage may vary depending on the model. The parameter is inactive by default. |
| Log Request and Completion | Toggle | Send a debug message containing the LLM provider and the subsequent completion. The message appears in the Interaction Panel when Debug Mode is enabled. The parameter is inactive by default. |
Examples
Extract a Booking Code from User Input
Extract a Booking Code from User Input
The user input is stored under LLM Entity Extract Node configuration:
input.text:- Entity Name:
bookingCode - Entity Description:
An alphanumeric booking code of 6 characters, e.g., XYZ123 or ABC987 - Example Input:
My booking code is XYZ123.It’s X Y Z 1 2 3.
- Extracted Entity:
XYZ123
input.extractedEntity:Extract a Product Code from User Input
Extract a Product Code from User Input
The user input is stored under LLM Entity Extract Node configuration:
input.text:- Entity Name:
productCode - Entity Description:
An alphanumeric product code, e.g., P12A3B or X45K2Q - Example Input:
The product code is P12A3B.That would be P 1 2 A 3 B.
- Extracted Entity:
P12A3B
input.extractedEntity: