Go to Studio

Paragraph

A input to receive paragraph to launch the workflow

What does this node do?

Creates a multi-line text input field that users fill in when running the workflow. Perfect for longer text content like descriptions, comments, articles, or detailed instructions.

Configuration

label string required

Display label for the paragraph input field.

placeholder string

Placeholder text shown in empty field.

default_value string

Pre-filled default text value.

required boolean default: true

Whether the field must be filled.

Output

{
  "value": "This is a longer text input that can span multiple lines and paragraphs. Users can enter detailed information here."
}

Access the value

Use {{Paragraph_0.value}} in other nodes to access the paragraph input.

Examples

Content generation workflow

Generate content based on user-provided description:

graph LR
    A[Paragraph: Content Description] --> B[LLM Content Generator]
    B --> C[SEO Optimizer]
    C --> D[Publish to CMS]

Article analysis

Analyze and summarize long-form content:

graph LR
    A[Paragraph: Article Text] --> B[Text Analyzer]
    B --> C[Sentiment Analysis]
    C --> D[Summary Generator]

Feedback processing

Process and categorize user feedback:

graph LR
    A[Paragraph: User Feedback] --> B[LLM Categorizer]
    B --> C[Sentiment Detection]
    C --> D[Database Storage]

Translation workflow

Translate long paragraphs to multiple languages:

graph LR
    A[Paragraph: Source Text] --> B[Language Detector]
    B --> C[Multi-language Translator]
    C --> D[Output Files]