Sobmit Docs

Prompt node

Prompt node card

The Prompt node holds a fixed block of text and feeds it into the flow. It is a floating input: it does not need an incoming edge — its text is evaluated once for the whole graph and can be wired into any node that accepts text instructions.

What it does

A Prompt node provides the instruction for a downstream node. The most common use is wiring it into an Agent’s prompt handle, an Image Generation node’s prompt handle, or a Video Generation node’s prompt handle.

Configuration

  • Text — the prompt content. May reference templates like {input.question} or {outputs.<node-id>}.

Example

Prompt text:

Summarize the following search results in three bullet points.

Wired into an Agent’s prompt handle, the Agent will follow this instruction instead of deriving its own prompt from the incoming payload.

Wiring tips

  • Wire the Prompt into the target’s prompt handle (not In) when the target also receives data you want to keep.
  • A prompt edge extends instructions — it does not replace the payload. This means a Web Search result on In and a fixed Prompt on prompt can coexist.
  • Without an incoming edge, the Prompt is a floating input available to the whole graph.

Related