注册

Replicate Flux Fill Pro 功能

POST https://api.quickrouter.ai/replicate/v1/models/black-forest-labs/flux-fill-pro/predictions 在线调试 →
Authorization

在 Header 添加参数 Authorization,其值为 Bearer 之后拼接 Token

示例: Authorization: Bearer ********************

请求参数

Header 参数
Authorization string
可选
示例: Bearer {{YOUR_API_KEY}}
Content-Type string
可选
示例: application/json
Body 参数 application/json
input object
可选
模型输入参数
mask string
可选
一张黑白图片,用于描述图片中需要修复的部分。黑色区域将被保留,白色区域将被修复。必须与图片大小相同。如果您在原始图片中提供了 Alpha 蒙版,则此参数可选。必须为 jpeg、png、gif 或 webp 格式。
image string
必需
待修复的图片。可以包含 Alpha 蒙版。必须为 jpeg、png、gif 或 webp 格式。
steps integer
可选
扩散步骤数。值越高,细节越精细,但处理时间也越长。默认值:50。最小值:15,最大值:50。
prompt string
必需
您想要生成的内容的文本描述,或有关如何编辑给定图像的说明。
guidance integer
可选
控制文本提示的遵循度与图像质量/多样性之间的平衡。值越高,输出结果越接近提示,但可能会降低整体图像质量。值越低,输出结果的创作自由度就越大,但可能与提示的相关性较低。默认值:60。最小值:1.5,最大值:100。
outpaint string
可选
用于对输入图像进行快速修复的选项。蒙版将被忽略。默认值:"None"
output_format string
可选
输出图像的格式。默认值:"jpg"。
safety_tolerance integer
可选
安全容差,1 表示最严格,6 表示最宽松。默认值:2。
prompt_upsampling boolean
可选
自动修改提示,生成更多创意。默认值:false。
示例
{
    "input": {
        "mask": "https://replicate.delivery/pbxt/M0gpLCYdCLbnhcz95Poy66q30XW9VSCN65DoDQ8IzdzlQonw/kill-bill-mask.png",
        "image": "https://replicate.delivery/pbxt/M0gpKVE9wmEtOQFNDOpwz1uGs0u6nK2NcE85IihwlN0ZEnMF/kill-bill-poster.jpg",
        "steps": 50,
        "prompt": "movie poster says "FLUX FILL"",
        "guidance": 60,
        "outpaint": "None",
        "output_format": "jpg",
        "safety_tolerance": 2,
        "prompt_upsampling": false
    }
}

请求示例代码

curl --location --request POST 'https://api.quickrouter.ai/replicate/v1/models/black-forest-labs/flux-fill-pro/predictions' --header 'Authorization: Bearer YOUR_API_KEY' --header 'Content-Type: application/json' --data-raw '{
    "input": {
        "mask": "https://replicate.delivery/pbxt/M0gpLCYdCLbnhcz95Poy66q30XW9VSCN65DoDQ8IzdzlQonw/kill-bill-mask.png",
        "image": "https://replicate.delivery/pbxt/M0gpKVE9wmEtOQFNDOpwz1uGs0u6nK2NcE85IihwlN0ZEnMF/kill-bill-poster.jpg",
        "steps": 50,
        "prompt": "movie poster says "FLUX FILL"",
        "guidance": 60,
        "outpaint": "None",
        "output_format": "jpg",
        "safety_tolerance": 2,
        "prompt_upsampling": false
    }
}'
var myHeaders = new Headers();
myHeaders.append("Authorization", "Bearer YOUR_API_KEY");
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
  "input": {
    "mask": "https://replicate.delivery/pbxt/M0gpLCYdCLbnhcz95Poy66q30XW9VSCN65DoDQ8IzdzlQonw/kill-bill-mask.png",
    "image": "https://replicate.delivery/pbxt/M0gpKVE9wmEtOQFNDOpwz1uGs0u6nK2NcE85IihwlN0ZEnMF/kill-bill-poster.jpg",
    "steps": 50,
    "prompt": "movie poster says "FLUX FILL"",
    "guidance": 60,
    "outpaint": "None",
    "output_format": "jpg",
    "safety_tolerance": 2,
    "prompt_upsampling": false
  }
});

var requestOptions = {
  method: 'POST',
  headers: myHeaders,
  body: raw,
  redirect: 'follow'
};

fetch("https://api.quickrouter.ai/replicate/v1/models/black-forest-labs/flux-fill-pro/predictions", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));
import http.client
import json

conn = http.client.HTTPSConnection("api.quickrouter.ai")
payload = json.dumps({
  "input": {
    "mask": "https://replicate.delivery/pbxt/M0gpLCYdCLbnhcz95Poy66q30XW9VSCN65DoDQ8IzdzlQonw/kill-bill-mask.png",
    "image": "https://replicate.delivery/pbxt/M0gpKVE9wmEtOQFNDOpwz1uGs0u6nK2NcE85IihwlN0ZEnMF/kill-bill-poster.jpg",
    "steps": 50,
    "prompt": "movie poster says "FLUX FILL"",
    "guidance": 60,
    "outpaint": "None",
    "output_format": "jpg",
    "safety_tolerance": 2,
    "prompt_upsampling": False
  }
})
headers = {
  'Authorization': 'Bearer YOUR_API_KEY',
  'Content-Type': 'application/json'
}
conn.request("POST", "/replicate/v1/models/black-forest-labs/flux-fill-pro/predictions", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))

返回响应

响应参数 application/json
id string
可选
任务ID
status string
可选
任务状态
output string
可选
任务输出
示例
{
    "id": "26t3agjpx9rme0crb4es5cbxx4",
    "status": "starting"
}