Step Details | |
Introduced in Version | 9.10.0 |
Last Modified in Version | 9.12.0 |
Location | AI > Prompt Management |
The Split Long Text Into Chucks step is used to build chunks that an LLM can more easily use. The text to use and the size of the chunk are defined in the step's properties.
Prerequisites
This step requires the AI Common to be installed before it will be available in the toolbox.
Properties
Inputs
Property | Description | Data Type |
---|---|---|
Input Text | The string to break into smaller chunks | String |
Max Section Length | The maximum length a section can be as defined by an integer | Int32 |
Outputs
Property | Description | Data Type | |
---|---|---|---|
Done | |||
Output | New list of chuncks of text | List of String |
Example Inputs and Outputs
Input Text | Max Section Length | Output |
---|---|---|
12345678 | 4 | 0: 1234 1: 5678 |
Hello World | 5 | 0: Hello 1: Worl |
Related Information