Skip to content

Text

Provides a user-editable text field for workflows. Supports single-line and multi-line input and emits the entered content to downstream nodes. Useful for prompts, configuration strings, or any free-form text data.
Preview

Usage

Place this node at the beginning of a workflow when you need human-provided text. Connect its output to nodes that consume text (e.g., prompt processors, evaluators, message senders). It can also be used to quickly tweak parameters or content without editing node graphs.

Inputs

FieldRequiredTypeDescriptionExample
inputTrueSTRINGThe text value to pass into the workflow. Accepts multi-line content.Write a short, friendly welcome message for new users.

Outputs

FieldTypeDescriptionExample
output*The text value provided by the user, available for any downstream node expecting text or wildcard input.Welcome to our platform! Let me know how I can help you get started.

Important Notes

  • The input field supports multi-line text; line breaks are preserved in the output.
  • If no text is provided, the node outputs an empty string.
  • The node’s internal unique_id is auto-assigned and should not be modified.
  • Output is a wildcard type, allowing broad compatibility with downstream nodes.

Troubleshooting

  • Text not appearing downstream: Verify the node is connected to the correct input of the next node.
  • Unexpected empty output: Ensure the text field is not blank and the workflow run has been updated.
  • Line breaks not handled as expected: Confirm the downstream node supports multi-line text and does not trim or sanitize input.
  • UI not updating after changes: Save or re-run the workflow to refresh the displayed output.