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

# Midjourney 重塑

使用 Midjourney 重塑功能，对已生成图像进行重新创作和调整。支持强烈调整和细微调整两种模式，通过新的提示词对指定图片进行重塑处理。该接口采用异步处理方式，客户端需要通过 task\_id 查询最终生成结果。

## 请求头

<ParamField header="Content-Type" type="string" required={true}>
  枚举值: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer 身份验证格式: Bearer \{\{API 密钥}}。
</ParamField>

## 请求体

<ParamField body="image_no" type="integer" required={true}>
  图片编号，用于指定要进行重塑的图片。

  取值范围：0\~3
</ParamField>

<ParamField body="task_id" type="string" required={true}>
  原始图像生成任务的唯一标识符。
</ParamField>

<ParamField body="remix_prompt" type="string" required={true}>
  新提示词，用于描述重塑后图像的期望内容和风格。

  长度限制：1-8192 个字符。
</ParamField>

<ParamField body="mode" type="integer" required={true}>
  Remix 模式，控制重塑的强度和程度。

  * `0`: 强烈调整 - 对图像进行较大幅度的重塑和改变
  * `1`: 细微调整 - 对图像进行轻微的调整和优化
</ParamField>

## 响应信息参数

<ResponseField name="task_id" type="string" required={true}>
  异步任务的 task\_id。您应该使用该 task\_id 请求 [查询任务结果 API](/docs/models/reference-get-async-task-result) 以获取生成结果
</ResponseField>
