Short Text
A input to receive short text to launch the workflow
What does this node do?
Creates an input field that users fill in when running the workflow. Essential for workflows that need user-provided short text data.
Configuration
label string required Display label for the input field.
placeholder string Placeholder text shown in empty field.
default_value string Pre-filled default value.
required boolean default: true Whether the field must be filled.
Output
{
"value": "User entered text"
}
Access the value
Use {{Text_0.value}} in other nodes to access the input.
Example
Short text input for workflow:
graph LR
A[Short Text: Search Query] --> B[Web Scraper]
B --> C[LLM Analysis]