> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orisu.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Human Review

> Pause the workflow and present an asset for approval before it continues.

Human Review pauses execution and presents the connected asset for a person to approve before the workflow continues. The approved asset passes through unchanged, so downstream nodes receive the same data type as the input.

## When to use

* Quality assurance before publishing
* Compliance review
* Creative approval gates

Common patterns: `generate_image → human_review → export`, or `generate_text → human_review`.

## Inputs

<ParamField body="Asset" type="dynamic" required>
  The asset to review. Required, accepts multiple inputs and an array. Its type determines the output type.
</ParamField>

## Outputs

<ParamField body="Asset" type="dynamic">
  The reviewed asset, passed through after approval.
</ParamField>

## Configuration

<ParamField body="instructions" type="string" default="">
  Guidance shown to the reviewer describing what to check.
</ParamField>

<Note>
  Human Review does not run a model and does not consume credits.
</Note>
