Text Node
Last updated
Last updated
The text node allows you to write text to send to downstream nodes. Use a text node when you want to input raw text that does not change between runs into your pipeline.
Text: The text to send to downstream nodes
Type: Text
Note: You can write text directly in the editable text field and/or use variables to reference text from other nodes (reference variables by typing “{{” in the field).
The text node does not have any parameters.
Text: The text to send to downstream nodes
Type: Text
Example Usage: {{text_0.text}}
Common use cases for the Text node:
Templating: A pipeline that writes custom emails. However, the email always has the same content except for one sentence that is generated by the LLM. You use the text node to store the template and use a variable for the generated sentence.
Static data: Link to the same website URL that you want to scrape with each run
Pipeline to generate custom emails with a text node storing an email template.