> ## 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.

# Rename Asset

> Attach a display name to an asset from a pattern and optional name parts.

Rename Asset passes an asset through unchanged and attaches a display name built from a pattern. The pattern can reference the original name and text values connected as name parts.

## When to use

* Normalize filenames before export
* Inject a campaign name into asset metadata

Common pattern: `generate_image → rename_asset → human_review`.

## Inputs

<ParamField body="Asset" type="any" required>
  The asset to rename. Required. Supports loop mode.
</ParamField>

<ParamField body="Name parts" type="text">
  Text values referenced in the pattern as `{0}`, `{1}`, and so on. Optional, accepts multiple inputs.
</ParamField>

## Outputs

<ParamField body="Asset" type="any">
  The asset, passed through with the new display name attached.
</ParamField>

## Configuration

<ParamField body="pattern" type="string" default="{original}">
  The naming template. Use `{original}` for the existing name and `{0}`, `{1}`, and so on for connected name parts.
</ParamField>
