创建任务-通过模型version(predictions)

POST /replicate/v1/predictions

MethodPOST
Path/replicate/v1/predictions
Typehttp
Status1
Module2102810
Folder62419371

说明

version models 支持以下 "ac732df83cea7fff18b8472768c88ad041fa750ff7682a21affe81863cbe77e4": "stability-ai/stable-diffusion", "7762fd07cf82c948538e41f63f77d685e02b063e37e496e96eefd46c929f9bdc": "stability-ai/sdxl", "95b7223104132402a9ae91cc677285bc5eb997834bd2349fa486f53910fd68b3": "stability-ai/stable-diffusion-inpainting", "15a3689ee13b0d2616e98820eca31d4c3abcd36672df6afce5cb6feb1d66087d": "stability-ai/stable-diffusion-img2img", "2a6b576af31790b470f0a8442e1e9791213fa13799cbb65a9fc1436e96389574": "lucataco/flux-schnell-lora", "091495765fa5ef2725a175a57b276ec30dc9d39c22d30410f2ede68a3eab66b3": "lucataco/flux-dev-lora", "ca1f5e306e5721e19c473e0d094e6603f0456fe759c10715fcd6c1b79242d4a5": "andreasjansson/stable-diffusion-animation", "beecf59c4aee8d81bf04f0381033dfa10dc16e845b4ae00d281e2fa377e48a9f": "lucataco/animate-diff", "153b0087c2576ad30d8cbddb35275b387d1a6bf986bda5499948f843f6460faf": "sujaykhandekar/object-removal", "fb8af171cfa1616ddcf1242c093f9c46bcada5ad4cf6f2fbe8b81b330ec5c003": "cjwbw/rembg" models 具体参数请前往 replicate.com 查看具体模型请求参数

概览

MethodPOST
Path/replicate/v1/predictions
Typehttp
Status1
Module2102810
Folder62419371

参数

{
  "query": [],
  "path": [],
  "cookie": [],
  "header": [
    {
      "required": false,
      "description": "",
      "type": "string",
      "id": "GTujCrB2It",
      "enable": true,
      "name": "Authorization",
      "sampleValue": "Bearer {{YOUR_API_KEY}}"
    }
  ]
}

请求体

{
  "type": "application/json",
  "parameters": [],
  "jsonSchema": {
    "type": "object",
    "properties": {
      "version": {
        "type": "string"
      },
      "input": {
        "type": "object",
        "properties": {
          "width": {
            "type": "integer",
            "description": "生成图像的宽度(以像素为单位)。需要为 64 的倍数。默认值:768。"
          },
          "height": {
            "type": "integer",
            "description": "生成图像的高度(以像素为单位)。需要为 64 的倍数。默认值:768。"
          },
          "prompt": {
            "type": "string",
            "description": "输入提示。"
          },
          "scheduler": {
            "type": "string",
            "description": "选择一个调度程序。默认值:“DPMSolverMultistep”。"
          },
          "num_outputs": {
            "type": "integer",
            "description": "要生成的图像数量。默认值:1。最小值:1,最大值:4。"
          },
          "guidance_scale": {
            "type": "number",
            "description": "无分类器引导尺度。默认值:7.5。最小值:1,最大值:20。"
          },
          "num_inference_steps": {
            "type": "integer",
            "description": "去噪步骤数。默认值:50。最小值:1,最大值:500。"
          }
        },
        "required": [
          "guidance_scale",
          "num_inference_steps"
        ],
        "x-apifox-orders": [
          "width",
          "height",
          "prompt",
          "scheduler",
          "num_outputs",
          "guidance_scale",
          "num_inference_steps"
        ]
      }
    },
    "x-apifox-orders": [
      "version",
      "input"
    ]
  },
  "mediaType": "",
  "examples": [
    {
      "value": "{\n    \"version\": \"stability-ai/stable-diffusion:ac732df83cea7fff18b8472768c88ad041fa750ff7682a21affe81863cbe77e4\",\n    \"input\": {\n      \"width\": 768,\n      \"height\": 768,\n      \"prompt\": \"an astronaut riding a horse on mars, hd, dramatic lighting\",\n      \"scheduler\": \"K_EULER\",\n      \"num_outputs\": 1,\n      \"guidance_scale\": 7.5,\n      \"num_inference_steps\": 50\n    }\n  }",
      "mediaType": "application/json",
      "description": ""
    }
  ],
  "oasExtensions": ""
}

响应

[
  {
    "id": 735151665,
    "name": "成功",
    "code": 200,
    "contentType": "json",
    "jsonSchema": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "model": {
          "type": "string"
        },
        "version": {
          "type": "string"
        },
        "input": {
          "type": "object",
          "properties": {
            "aspect_ratio": {
              "type": "string"
            },
            "input_image": {
              "type": "string"
            },
            "output_format": {
              "type": "string"
            },
            "prompt": {
              "type": "string"
            },
            "prompt_upsampling": {
              "type": "boolean"
            },
            "safety_tolerance": {
              "type": "integer"
            }
          },
          "required": [
            "aspect_ratio",
            "input_image",
            "output_format",
            "prompt",
            "prompt_upsampling",
            "safety_tolerance"
          ]
        },
        "logs": {
          "type": "string"
        },
        "output": {
          "type": "null"
        },
        "data_removed": {
          "type": "boolean"
        },
        "error": {
          "type": "null"
        },
        "status": {
          "type": "string"
        },
        "created_at": {
          "type": "string"
        },
        "urls": {
          "type": "object",
          "properties": {
            "cancel": {
              "type": "string"
            },
            "get": {
              "type": "string"
            },
            "stream": {
              "type": "string"
            },
            "web": {
              "type": "string"
            }
          },
          "required": [
            "cancel",
            "get",
            "stream",
            "web"
          ]
        }
      },
      "required": [
        "id",
        "model",
        "version",
        "input",
        "logs",
        "output",
        "data_removed",
        "error",
        "status",
        "created_at",
        "urls"
      ]
    },
    "itemSchema": {},
    "description": "",
    "mediaType": "",
    "headers": [],
    "oasExtensions": ""
  }
]

响应示例

[
  {
    "name": "Create image",
    "responseId": 735151665,
    "data": "{\n    \"created\": 1589478378,\n    \"data\": [\n        {\n            \"url\": \"https://...\"\n        },\n        {\n            \"url\": \"https://...\"\n        }\n    ]\n}",
    "description": "",
    "oasKey": "",
    "oasExtensions": "",
    "id": 651027777
  }
]