Output Node
Last updated
Last updated
The output node allows you to pass data out of your pipeline.
Output: the data you are looking to output from the pipeline.
The available types for this field are Text, Streamed Text, File, Image, Audio, and JSON depending on what you choose for the Type parameter (see right below).
Type: The data type that the output node will output. Use the Type dropdown to signify the data type. The available types are: Text (default), Streamed Text, File, Image, Audio, and JSON.
Note: Streamed Text will display any text as soon as it is generated by a LLM as opposed to waiting for the entire output to finish generating before showing the output. To turn on streamed text, toggle to True the parameter “Stream Response” in the gear of any LLM node.
Format Output (Default True): only applicable to Text and Streamed Text. If toggled to True, it will format the text in mark down.
The output node does not have any node outputs.
In addition to passing data out of a pipeline, a common use case for output node is to debug workflows by connecting the Output node to intermediary nodes. This
The below example is a pipeline for chatting with a knowledge base. The LLM node is connected to the output node so the generated text can be shown to the user.