【ComfyUI的API接口调用示例】

news2024/11/11 14:51:52

ComfyUI的API接口调用示例


本文目的

本文调用接口示例主要指导需要调用ComfyUI的开发者如何调用ComfyUI官方的API接口提交任务、查询历史、获取绘画视频结果等。

阅读本文的前提是你本地已经安装了ComfyUI,并且对工作流绘画和生成视频已经有所了解。注意如图右边栏目保存API格式的工作流。
在这里插入图片描述

ComfyUI的测试地址

本地comfyui测试地址:http://127.0.0.1:8188

POST /upload/mask

POST /upload/mask

上传蒙版图片接口,一般用于局部重绘

Body 请求参数

image: file://C:\Users\dourungeng\Pictures\640.png
type: input
subfolder: clipspace
original_ref: "{“filename”:”640.png”,”type”:”input”,”subfolder”:”clipspace”}"

请求参数

名称位置类型必选说明
bodybodyobjectnone
» imagebodystring(binary)图片将以二进制格式发送到服务器
» typebodystring上传图片的目标文件夹
» subfolderbodystring上传图片的目标子文件夹
» original_refbodystringnone

返回成功示例

{
  "name": "640.png",
  "subfolder": "clipspace",
  "type": "input"
}

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» namestringtruenonenone
» subfolderstringtruenonenone
» typestringtruenonenone

POST /upload/image

POST /upload/image

上传图片接口

Body 请求参数

image: string

请求参数

名称位置类型必选说明
bodybodyobjectnone
» imagebodystring(binary)图片将以二进制格式发送到服务器

返回成功示例

{
  "name": "0e9f-hiixpup5792613.jpg",
  "subfolder": "",
  "type": "input"
}

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» namestringtruenonenone
» subfolderstringtruenonenone
» typestringtruenonenone

POST /prompt

POST /prompt

绘图任务的下发接口,此接口只做任务下发,返回任务ID信息。

Body 请求参数

{
  "client_id": "533ef3a3-39c0-4e39-9ced-37d290f371f8",
  "prompt": {
    "3": {
      "inputs": {
        "seed": 0,
        "steps": 20,
        "cfg": 2.5,
        "sampler_name": "euler",
        "scheduler": "karras",
        "denoise": 1,
        "model": [
          "14",
          0
        ],
        "positive": [
          "12",
          0
        ],
        "negative": [
          "12",
          1
        ],
        "latent_image": [
          "12",
          2
        ]
      },
      "class_type": "KSampler",
      "_meta": {
        "title": "K采样器"
      }
    },
    "8": {
      "inputs": {
        "samples": [
          "3",
          0
        ],
        "vae": [
          "15",
          2
        ]
      },
      "class_type": "VAEDecode",
      "_meta": {
        "title": "VAE解码"
      }
    },
    "12": {
      "inputs": {
        "width": 1024,
        "height": 576,
        "video_frames": 14,
        "motion_bucket_id": 32,
        "fps": 6,
        "augmentation_level": 0,
        "clip_vision": [
          "15",
          1
        ],
        "init_image": [
          "23",
          0
        ],
        "vae": [
          "15",
          2
        ]
      },
      "class_type": "SVD_img2vid_Conditioning",
      "_meta": {
        "title": "SVD_图像到视频_条件"
      }
    },
    "14": {
      "inputs": {
        "min_cfg": 1,
        "model": [
          "15",
          0
        ]
      },
      "class_type": "VideoLinearCFGGuidance",
      "_meta": {
        "title": "线性CFG引导"
      }
    },
    "15": {
      "inputs": {
        "ckpt_name": "svd_xt_1_1.safetensors"
      },
      "class_type": "ImageOnlyCheckpointLoader",
      "_meta": {
        "title": "Checkpoint加载器(仅图像)"
      }
    },
    "23": {
      "inputs": {
        "image": "C:\\Users\\dourungeng\\Pictures\\elephant1.png [input]",
        "upload": "image"
      },
      "class_type": "LoadImage",
      "_meta": {
        "title": "加载图像"
      }
    },
    "24": {
      "inputs": {
        "frame_rate": 6,
        "loop_count": 0,
        "filename_prefix": "SVD_img2vid",
        "format": "image/gif",
        "pingpong": false,
        "save_output": true,
        "images": [
          "8",
          0
        ]
      },
      "class_type": "VHS_VideoCombine",
      "_meta": {
        "title": "合并为视频"
      }
    }
  }
}

请求参数

名称位置类型必选说明
bodybodyobjectnone
» client_idbodystringnone
» promptbodyobjectnone

返回成功示例

{
  "prompt_id": "3604be44-eb6b-4d54-b82d-62d31a6c0b36",
  "number": 8,
  "node_errors": {}
}

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» prompt_idstringtruenonenone
» numberintegertruenonenone
» node_errorsobjecttruenonenone

GET /prompt

GET /prompt

获取服务器当前剩余任务列队的数量

返回成功示例

{
  "exec_info": {
    "queue_remaining": 0
  }
}

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» exec_infoobjecttruenonenone
»» queue_remainingintegertruenonenone

GET /view

GET /view

图片的在线预览接口(上传图像,生图图像,蒙蔽图像,均通过该接口预览)

请求参数

名称位置类型必选说明
filenamequerystring图片名称
typequerystring图片存放位置的文件夹(input为长传图片,output为生成的图片)
subfolderquerystring子文件夹(没有可不填)
previewquerystring预览
channelquerystringnone

返回示例

成功

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

GET /queue

GET /queue

获取任务队列数量

返回示例

成功

{
  "queue_running": [],
  "queue_pending": []
}

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» queue_running[string]truenonenone
» queue_pending[string]truenonenone

POST /queue

POST /queue

清除列队/无返回信息则为成功

Body 请求参数

{
  "clear": true
}

请求参数

名称位置类型必选说明
bodybodyobjectnone

返回示例

200 Response

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

POST /interrupt

POST /interrupt

取消当前任务/不需任何参数

返回示例

200 Response

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

GET /history/{prompt_id}

GET /history/39d61fa4-58a4-4f61-a547-caab0f4c3a53

获取历史任务数据(根据任务prompt_id获取历史数据)

返回成功示例

{
  "39d61fa4-58a4-4f61-a547-caab0f4c3a53": {
    "prompt": [
      10,
      "39d61fa4-58a4-4f61-a547-caab0f4c3a53",
      {
        "3": {
          "inputs": {
            "seed": 687973405480854,
            "steps": 30,
            "cfg": 8,
            "sampler_name": "dpmpp_2m",
            "scheduler": "karras",
            "denoise": 1,
            "model": [
              "4",
              0
            ],
            "positive": [
              "6",
              0
            ],
            "negative": [
              "7",
              0
            ],
            "latent_image": [
              "5",
              0
            ]
          },
          "class_type": "KSampler",
          "_meta": {
            "title": "K采样器"
          }
        },
        "4": {
          "inputs": {
            "ckpt_name": "sdxl-动漫二次元_2.0.safetensors"
          },
          "class_type": "CheckpointLoaderSimple",
          "_meta": {
            "title": "Checkpoint加载器(简易)"
          }
        },
        "5": {
          "inputs": {
            "width": 512,
            "height": 512,
            "batch_size": 1
          },
          "class_type": "EmptyLatentImage",
          "_meta": {
            "title": "空Latent"
          }
        },
        "6": {
          "inputs": {
            "text": "1girl,flower,outdoors,solo,dress,long hair,closed eyes,sky,holding,smile,cloud,open mouth,field,blush,day,blue sky,white flower,holding flower,flower field,short sleeves,teeth,blue dress,petals,:d,facing viewer,grey hair,floating hair,wind,happy,^_^,daisy,upper teeth only,white dress,",
            "clip": [
              "4",
              1
            ]
          },
          "class_type": "CLIPTextEncode",
          "_meta": {
            "title": "CLIP文本编码器"
          }
        },
        "7": {
          "inputs": {
            "text": "(worst quality, low quality),deformed,distorted,disfigured,doll,poorly drawn,bad anatomy,wrong anatomy,",
            "clip": [
              "4",
              1
            ]
          },
          "class_type": "CLIPTextEncode",
          "_meta": {
            "title": "CLIP文本编码器"
          }
        },
        "8": {
          "inputs": {
            "samples": [
              "3",
              0
            ],
            "vae": [
              "4",
              2
            ]
          },
          "class_type": "VAEDecode",
          "_meta": {
            "title": "VAE解码"
          }
        },
        "9": {
          "inputs": {
            "filename_prefix": "ComfyUI",
            "images": [
              "8",
              0
            ]
          },
          "class_type": "SaveImage",
          "_meta": {
            "title": "保存图像"
          }
        }
      },
      {
        "client_id": "533ef3a3-39c0-4e39-9ced-37d290f371f8"
      },
      [
        "9"
      ]
    ],
    "outputs": {
      "9": {
        "images": [
          {
            "filename": "ComfyUI_00138_.png",
            "subfolder": "",
            "type": "output"
          }
        ]
      }
    },
    "status": {
      "status_str": "success",
      "completed": true,
      "messages": [
        [
          "execution_start",
          {
            "prompt_id": "39d61fa4-58a4-4f61-a547-caab0f4c3a53"
          }
        ],
        [
          "execution_cached",
          {
            "nodes": [],
            "prompt_id": "39d61fa4-58a4-4f61-a547-caab0f4c3a53"
          }
        ]
      ]
    }
  }
}

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» 39d61fa4-58a4-4f61-a547-caab0f4c3a53objecttruenone下发任务prompt_id
»» prompt[object]truenone下发任务的api工作流的原始提交参数
»» outputs[object]truenone输出的结果
»» status[object]truenone任务状态

GET /history

GET /history

获取历史任务列表

返回成功示例

{
    "d40751e8-3e96-472f-a818-90d36d06faf1": {
        "prompt": [
            0,
            "d40751e8-3e96-472f-a818-90d36d06faf1", {
                "3": {
                    "inputs": {
                        "seed": 0,
                        "steps": 30,
                        "cfg": 8,
                        "sampler_name": "dpmpp_2m",
                        "scheduler": "karras",
                        "denoise": 1,
                        "model": [
                            "4",
                            0
                        ],
                        "positive": [
                            "6",
                            0
                        ],
                        "negative": [
                            "7",
                            0
                        ],
                        "latent_image": [
                            "5",
                            0
                        ]
                    },
                    "class_type": "KSampler",
                    "_meta": {
                        "title": "K采样器"
                    }
                },
                "4": {
                    "inputs": {
                        "ckpt_name": "sdxl-动漫二次元_2.0.safetensors"
                    },
                    "class_type": "CheckpointLoaderSimple",
                    "_meta": {
                        "title": "Checkpoint加载器(简易)"
                    }
                },
                "5": {
                    "inputs": {
                        "width": 512,
                        "height": 512,
                        "batch_size": 1
                    },
                    "class_type": "EmptyLatentImage",
                    "_meta": {
                        "title": "空Latent"
                    }
                },
                "6": {
                    "inputs": {
                        "text": "1girl,flower,outdoors,solo,dress,long hair,closed eyes,sky,holding,smile,cloud,open mouth,field,blush,day,blue sky,white flower,holding flower,flower field,short sleeves,teeth,blue dress,petals,:d,facing viewer,grey hair,floating hair,wind,happy,^_^,daisy,upper teeth only,white dress,",
                        "clip": [
                            "4",
                            1
                        ]
                    },
                    "class_type": "CLIPTextEncode",
                    "_meta": {
                        "title": "CLIP文本编码器"
                    }
                },
                "7": {
                    "inputs": {
                        "text": "(worst quality, low quality),deformed,distorted,disfigured,doll,poorly drawn,bad anatomy,wrong anatomy,",
                        "clip": [
                            "4",
                            1
                        ]
                    },
                    "class_type": "CLIPTextEncode",
                    "_meta": {
                        "title": "CLIP文本编码器"
                    }
                },
                "8": {
                    "inputs": {
                        "samples": [
                            "3",
                            0
                        ],
                        "vae": [
                            "4",
                            2
                        ]
                    },
                    "class_type": "VAEDecode",
                    "_meta": {
                        "title": "VAE解码"
                    }
                },
                "9": {
                    "inputs": {
                        "filename_prefix": "ComfyUI",
                        "images": [
                            "8",
                            0
                        ]
                    },
                    "class_type": "SaveImage",
                    "_meta": {
                        "title": "保存图像"
                    }
                }
            }, {
                "extra_pnginfo": {
                    "workflow": {
                        "last_node_id": 9,
                        "last_link_id": 9,
                        "nodes": [{
                                "id": 5,
                                "type": "EmptyLatentImage",
                                "pos": [
                                    473,
                                    609
                                ],
                                "size": {
                                    "0": 315,
                                    "1": 106
                                },
                                "flags": {},
                                "order": 0,
                                "mode": 0,
                                "outputs": [{
                                        "name": "LATENT",
                                        "type": "LATENT",
                                        "links": "[Object]",
                                        "slot_index": 0,
                                        "label": "Latent"
                                    }
                                ],
                                "properties": {
                                    "Node name for S&R": "EmptyLatentImage"
                                },
                                "widgets_values": [
                                    512,
                                    512,
                                    1
                                ]
                            }, {
                                "id": 8,
                                "type": "VAEDecode",
                                "pos": [
                                    1209,
                                    188
                                ],
                                "size": {
                                    "0": 210,
                                    "1": 46
                                },
                                "flags": {},
                                "order": 5,
                                "mode": 0,
                                "inputs": [{
                                        "name": "samples",
                                        "type": "LATENT",
                                        "link": 7,
                                        "label": "Latent"
                                    }, {
                                        "name": "vae",
                                        "type": "VAE",
                                        "link": 8,
                                        "label": "VAE"
                                    }
                                ],
                                "outputs": [{
                                        "name": "IMAGE",
                                        "type": "IMAGE",
                                        "links": "[Object]",
                                        "slot_index": 0,
                                        "label": "图像"
                                    }
                                ],
                                "properties": {
                                    "Node name for S&R": "VAEDecode"
                                }
                            }, {
                                "id": 9,
                                "type": "SaveImage",
                                "pos": [
                                    1451,
                                    189
                                ],
                                "size": {
                                    "0": 210,
                                    "1": 58
                                },
                                "flags": {},
                                "order": 6,
                                "mode": 0,
                                "inputs": [{
                                        "name": "images",
                                        "type": "IMAGE",
                                        "link": 9,
                                        "label": "图像"
                                    }
                                ],
                                "properties": {},
                                "widgets_values": [
                                    "ComfyUI"
                                ]
                            }, {
                                "id": 4,
                                "type": "CheckpointLoaderSimple",
                                "pos": [
                                    26,
                                    474
                                ],
                                "size": {
                                    "0": 315,
                                    "1": 98
                                },
                                "flags": {},
                                "order": 1,
                                "mode": 0,
                                "outputs": [{
                                        "name": "MODEL",
                                        "type": "MODEL",
                                        "links": "[Object]",
                                        "slot_index": 0,
                                        "label": "模型"
                                    }, {
                                        "name": "CLIP",
                                        "type": "CLIP",
                                        "links": "[Object]",
                                        "slot_index": 1,
                                        "label": "CLIP"
                                    }, {
                                        "name": "VAE",
                                        "type": "VAE",
                                        "links": "[Object]",
                                        "slot_index": 2,
                                        "label": "VAE"
                                    }
                                ],
                                "properties": {
                                    "Node name for S&R": "CheckpointLoaderSimple"
                                },
                                "widgets_values": [
                                    "sdxl-动漫二次元_2.0.safetensors"
                                ]
                            }, {
                                "id": 6,
                                "type": "CLIPTextEncode",
                                "pos": [
                                    250,
                                    70
                                ],
                                "size": {
                                    "0": 422.84503173828125,
                                    "1": 164.31304931640625
                                },
                                "flags": {},
                                "order": 2,
                                "mode": 0,
                                "inputs": [{
                                        "name": "clip",
                                        "type": "CLIP",
                                        "link": 3,
                                        "label": "CLIP"
                                    }
                                ],
                                "outputs": [{
                                        "name": "CONDITIONING",
                                        "type": "CONDITIONING",
                                        "links": "[Object]",
                                        "slot_index": 0,
                                        "label": "条件"
                                    }
                                ],
                                "properties": {
                                    "Node name for S&R": "CLIPTextEncode"
                                },
                                "widgets_values": [
                                    "1girl,flower,outdoors,solo,dress,long hair,closed eyes,sky,holding,smile,cloud,open mouth,field,blush,day,blue sky,white flower,holding flower,flower field,short sleeves,teeth,blue dress,petals,:d,facing viewer,grey hair,floating hair,wind,happy,^_^,daisy,upper teeth only,white dress,"
                                ]
                            }, {
                                "id": 7,
                                "type": "CLIPTextEncode",
                                "pos": [
                                    340,
                                    290
                                ],
                                "size": {
                                    "0": 425.27801513671875,
                                    "1": 180.6060791015625
                                },
                                "flags": {},
                                "order": 3,
                                "mode": 0,
                                "inputs": [{
                                        "name": "clip",
                                        "type": "CLIP",
                                        "link": 5,
                                        "label": "CLIP"
                                    }
                                ],
                                "outputs": [{
                                        "name": "CONDITIONING",
                                        "type": "CONDITIONING",
                                        "links": "[Object]",
                                        "slot_index": 0,
                                        "label": "条件"
                                    }
                                ],
                                "properties": {
                                    "Node name for S&R": "CLIPTextEncode"
                                },
                                "widgets_values": [
                                    "(worst quality, low quality),deformed,distorted,disfigured,doll,poorly drawn,bad anatomy,wrong anatomy,"
                                ]
                            }, {
                                "id": 3,
                                "type": "KSampler",
                                "pos": [
                                    863,
                                    186
                                ],
                                "size": {
                                    "0": 315,
                                    "1": 262
                                },
                                "flags": {},
                                "order": 4,
                                "mode": 0,
                                "inputs": [{
                                        "name": "model",
                                        "type": "MODEL",
                                        "link": 1,
                                        "label": "模型"
                                    }, {
                                        "name": "positive",
                                        "type": "CONDITIONING",
                                        "link": 4,
                                        "label": "正面条件"
                                    }, {
                                        "name": "negative",
                                        "type": "CONDITIONING",
                                        "link": 6,
                                        "label": "负面条件"
                                    }, {
                                        "name": "latent_image",
                                        "type": "LATENT",
                                        "link": 2,
                                        "label": "Latent"
                                    }
                                ],
                                "outputs": [{
                                        "name": "LATENT",
                                        "type": "LATENT",
                                        "links": "[Object]",
                                        "slot_index": 0,
                                        "label": "Latent"
                                    }
                                ],
                                "properties": {
                                    "Node name for S&R": "KSampler"
                                },
                                "widgets_values": [
                                    0,
                                    "randomize",
                                    30,
                                    8,
                                    "dpmpp_2m",
                                    "karras",
                                    1
                                ]
                            }
                        ],
                        "links": [
                            [
                                1,
                                4,
                                0,
                                3,
                                0,
                                "MODEL"
                            ],
                            [
                                2,
                                5,
                                0,
                                3,
                                3,
                                "LATENT"
                            ],
                            [
                                3,
                                4,
                                1,
                                6,
                                0,
                                "CLIP"
                            ],
                            [
                                4,
                                6,
                                0,
                                3,
                                1,
                                "CONDITIONING"
                            ],
                            [
                                5,
                                4,
                                1,
                                7,
                                0,
                                "CLIP"
                            ],
                            [
                                6,
                                7,
                                0,
                                3,
                                2,
                                "CONDITIONING"
                            ],
                            [
                                7,
                                3,
                                0,
                                8,
                                0,
                                "LATENT"
                            ],
                            [
                                8,
                                4,
                                2,
                                8,
                                1,
                                "VAE"
                            ],
                            [
                                9,
                                8,
                                0,
                                9,
                                0,
                                "IMAGE"
                            ]
                        ],
                        "groups": [],
                        "config": {},
                        "extra": {
                            "ds": {
                                "scale": 1,
                                "offset": {
                                    "0": 858,
                                    "1": 196
                                }
                            }
                        },
                        "version": 0.4,
                        "widget_idx_map": {
                            "3": {
                                "seed": 0,
                                "sampler_name": 4,
                                "scheduler": 5
                            }
                        }
                    }
                },
                "client_id": "a4ff6051dabe4c7d994460b62c6c8f14"
            },
            [
                "9"
            ]
        ],
        "outputs": {
            "9": {
                "images": [{
                        "filename": "ComfyUI_00131_.png",
                        "subfolder": "",
                        "type": "output"
                    }
                ]
            }
        },
        "status": {
            "status_str": "success",
            "completed": true,
            "messages": [
                [
                    "execution_start", {
                        "prompt_id": "d40751e8-3e96-472f-a818-90d36d06faf1"
                    }
                ],
                [
                    "execution_cached", {
                        "nodes": [],
                        "prompt_id": "d40751e8-3e96-472f-a818-90d36d06faf1"
                    }
                ]
            ]
        }
    }
}

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» d40751e8-3e96-472f-a818-90d36d06faf1objecttruenonenone
»» prompt[object]truenonenone
»» outputs[object]truenonenone
»» status[object]truenonenone

GET /system_stats

GET /system_stats

系统统计信息接口

返回成功示例

{
  "system": {
    "os": "nt",
    "python_version": "3.10.11 (tags/v3.10.11:7d4cc5a, Apr  5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]",
    "embedded_python": false
  },
  "devices": [
    {
      "name": "cuda:0 NVIDIA GeForce RTX 4070 Ti SUPER : cudaMallocAsync",
      "type": "cuda",
      "index": 0,
      "vram_total": 17170956288,
      "vram_free": 15702425600,
      "torch_vram_total": 67108864,
      "torch_vram_free": 33554432
    }
  ]
}

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» systemobjecttruenonenone
»» osstringtruenonenone
»» python_versionstringtruenonenone
»» embedded_pythonbooleantruenonenone
» devices[object]truenonenone
»» namestringfalsenonenone
»» typestringfalsenonenone
»» indexintegerfalsenonenone
»» vram_totalintegerfalsenonenone
»» vram_freeintegerfalsenonenone
»» torch_vram_totalintegerfalsenonenone
»» torch_vram_freeintegerfalsenonenone

GET /object_info/{node_class}

GET /object_info/KSampler

根据组件名称获取系统中组件参数

返回示例
成功

{
  "KSampler": {
    "input": {
      "required": {
        "model": [
          "MODEL"
        ],
        "seed": [
          "INT",
          {
            "default": 0,
            "min": 0,
            "max": 18446744073709552000
          }
        ],
        "steps": [
          "INT",
          {
            "default": 20,
            "min": 1,
            "max": 10000
          }
        ],
        "cfg": [
          "FLOAT",
          {
            "default": 8,
            "min": 0,
            "max": 100,
            "step": 0.1,
            "round": 0.01
          }
        ],
        "sampler_name": [
          [
            "euler",
            "euler_ancestral",
            "heun",
            "heunpp2",
            "dpm_2",
            "dpm_2_ancestral",
            "lms",
            "dpm_fast",
            "dpm_adaptive",
            "dpmpp_2s_ancestral",
            "dpmpp_sde",
            "dpmpp_sde_gpu",
            "dpmpp_2m",
            "dpmpp_2m_sde",
            "dpmpp_2m_sde_gpu",
            "dpmpp_3m_sde",
            "dpmpp_3m_sde_gpu",
            "ddpm",
            "lcm",
            "ddim",
            "uni_pc",
            "uni_pc_bh2"
          ]
        ],
        "scheduler": [
          [
            "normal",
            "karras",
            "exponential",
            "sgm_uniform",
            "simple",
            "ddim_uniform"
          ]
        ],
        "positive": [
          "CONDITIONING"
        ],
        "negative": [
          "CONDITIONING"
        ],
        "latent_image": [
          "LATENT"
        ],
        "denoise": [
          "FLOAT",
          {
            "default": 1,
            "min": 0,
            "max": 1,
            "step": 0.01
          }
        ]
      }
    },
    "output": [
      "LATENT"
    ],
    "output_is_list": [
      false
    ],
    "output_name": [
      "LATENT"
    ],
    "name": "KSampler",
    "display_name": "KSampler",
    "description": "",
    "category": "sampling",
    "output_node": false
  }
}

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» KSamplerobjecttruenonenone
»» inputobjecttruenonenone
»»» requiredobjecttruenonenone
»»»» model[string]truenonenone
»»»» seed[object]truenonenone

关注我,分享更多精彩内容。###

您也可以看我用apifox发布生成的api调用示例链接。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1916090.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

印刷企业如何判断数字工厂管理系统的实施周期

在数字化转型的浪潮中,印刷企业正积极拥抱新技术以提升生产效率、优化成本结构并增强市场竞争力。数字工厂管理系统的引入,作为这一转型的关键步骤,不仅能够实现生产流程的自动化、智能化监控,还能显著提升数据分析能力和决策效率…

VScode 格式化插件Prettier设置无效

VScode在配置格式化代码的插件的时候,可以选择Prettier或者ESlint等插件 比如选择Prettier格式化代码 在某文件修改代码之后,ctrls 保存代码,保存之后会自动格式化代码,但是我们发现控制台有报错 为什么已经设置了格式化插件为Pr…

软考《信息系统运行管理员》-3.2信息系统设施运维的环境管理

3.2信息系统设施运维的环境管理 1 计算机机房的选址要求 电子计算机机房地理位置 选择水源充足,电子比较稳定可靠,交通通信方便,自然环境清洁的地点要远离产生粉尘、油烟、有害气体以及生产或存储具有腐蚀性、易燃、易爆物品的工厂、仓库、…

Vue+SpringBoot实现仿网盘项目

目录 一、效果展示 二、前端代码 三、后端代码及核心解释 四、进阶开发与思路 一、效果展示 1.1读取文件夹内的文件 1.2删除功能 1.3 上传文件 1.4 文件下载 对应的网盘实际地址与对应下载内容: 二、前端代码 2.1 创建vue项目(需要有vuex与router&…

【C++】类和对象--类,实例化,this指针

文章目录 前言一、类1.1 类的定义1.2 类的书写和使用1.3 访问限定符1.4 类域 二、实例化2.1 实例化概念2.2 对象大小 三.this指针总结 前言 前面的几篇文章我们介绍了命名空间,inline,nullptr等C 中常见的的基础概念。今天的文章我们来介绍一些C中类与对…

一款24小时实时检测的六氟化硫气体泄漏报警系统

尽管当前工业生产模式越来越趋于自动化、智能化,但安全生产仍然是时下屡被提及的话题。在配电室等使用六氟化硫气体的众多领域中,由于气体泄漏而引发的中毒、火灾、爆炸、窒息事故仍高发频发。因此,安装六氟化硫气体泄漏报警监测系统仍是企业…

使用PEFT库进行ChatGLM3-6B模型的QLORA高效微调

PEFT库进行ChatGLM3-6B模型QLORA高效微调 QLORA微调ChatGLM3-6B模型安装相关库使用ChatGLM3-6B模型GPU显存占用准备数据集加载数据集数据处理数据集处理加载量化模型-4bit预处理量化模型配置LoRA适配器训练超参数配置开始训练保存LoRA模型模型推理合并模型使用微调后的模型 QLO…

UE5 本地化多语言方案

导入插件: https://www.unrealengine.com/marketplace/zh-CN/product/07e1d9bd9ced444c9b2a7e232161f74d​www.unrealengine.com/marketplace/zh-CN/product/07e1d9bd9ced444c9b2a7e232161f74d 打开测试关卡 打开插件下图目录,csv文件可以添加多个&…

MD5加密和注册页面的编写

MD5加密 1.导入包 npm install --save ts-md5 2.使用方式 import { Md5 } from ts-md5; //md5加密后的密码 const md5PwdMd5.hashStr("123456").toUpperCase(); 遇见的问题及用到的技术 注册页面 register.vue代码 <template><div class"wappe…

模型评估、交叉验证

目录 一、模型评估&#xff1a;二、交叉验证&#xff1a; 一、模型评估&#xff1a; 模型评估用来检验模型的预测精度。 首先数据集分为训练集和测试集两部分&#xff0c;使用训练集进行模型的训练&#xff0c;使用测试集进行模型的评估。 注意&#xff0c;模型评估阶段应该…

A股强反之后继续下单,难道是主力再使障眼法?

今天的A股太不对劲了&#xff0c;主力再使障眼法&#xff0c;很多散户都被成功迷惑&#xff0c;市场有望出现芙蓉出水&#xff0c;不废话&#xff0c;直奔主题&#xff1a; 1、今天两市低开再次探底&#xff0c;太不对劲了&#xff0c;昨天主力大幅流入&#xff0c;今天又跑了…

IT入门知识第十部分《IT职业发展》(10/10)

IT职业发展的深度解析&#xff1a;技能、路径与规划 在当今这个快速发展的数字化时代&#xff0c;IT行业不仅是技术革新的前沿阵地&#xff0c;也是职业发展和个人成长的沃土。本文将深入探讨IT行业的职业发展&#xff0c;包括职业路径的选择、技能提升的策略、以及职业规划的…

FastAPI 学习之路(三十七)元数据和文档 URL

实现前的效果 那么如何实现呢&#xff0c;第一种方式如下&#xff1a; from routers.items import item_router from routers.users import user_router""" 自定义FastApi应用中的元数据配置Title&#xff1a;在 OpenAPI 和自动 API 文档用户界面中作为 API 的…

迅为3A5000LoongArch架构核心主板支持国产麒麟、统信、以及实时系统翼辉SylixOS

性能强 采用全国产龙芯3A5000处理器&#xff0c;基于龙芯自主指令系统 (LoongArch)的LA464微结构&#xff0c;并进一步提升频率&#xff0c;降低功耗&#xff0c;优化性能。 桥片 采用龙芯 7A2000&#xff0c;支持PCIE 3.0、USB 3.0和 SATA 3.0.显示接口2 路、HDMI 和1路 VGA&a…

昆法尔The Quinfall在Steam上怎么搜索 Steam上叫什么名字

昆法尔The Quinfall是一款全新的MMORPG&#xff0c;在中世纪的深处&#xff0c;参与独特的战斗和沉浸式的故事&#xff0c;有几十个不同的职业。而游戏中的战斗系统更是丰富多彩&#xff0c;无论是陆地激战、海上鏖战还是城堡围攻&#xff0c;都能让玩家感受到前所未有的刺激和…

pytorch实现水果2分类(蓝莓,苹果)

1.数据集的路径&#xff0c;结构 dataset.py 目的&#xff1a; 输入&#xff1a;没有输入&#xff0c;路径是写死了的。 输出&#xff1a;返回的是一个对象&#xff0c;里面有self.data。self.data是一个列表&#xff0c;里面是&#xff08;图片路径.jpg&#xff0c;标签&…

如何分辨AI生成的内容?AI生成内容检测工具对比实验

检测人工智能生成的文本对各个领域的组织都提出了挑战&#xff0c;包括学术界和新闻界等。生成式AI与大语言模型根据短描述来进行内容生成的能力&#xff0c;产生了一个问题&#xff1a;这篇文章/内容/作业/图像到底是由人类创作的&#xff0c;还是AI创作的&#xff1f;虽然 LL…

【数据库】Redis主从复制、哨兵模式、集群

目录 一、Redis的主从复制 1.1 主从复制的架构 1.2 主从复制的作用 1.3 注意事项 1.4 主从复制用到的命令 1.5 主从复制流程 1.6 主从复制实现 1.7 结束主从复制 1.8 主从复制优化配置 二、哨兵模式 2.1 哨兵模式原理 2.2 哨兵的三个定时任务 2.3 哨兵的结构 2.4 哨…

MT3047 区间最大值

思路&#xff1a; 使用哈希表map和set&#xff08;去重&#xff09;维护序列 代码&#xff1a; #include <bits/stdc.h> using namespace std; const int N 1e5 10; int n, k, A[N]; map<int, int> mp; // 元素出现的次数 set<int> s; // 维护出现…

Android平台GB28181记录仪在电网巡检抢修中的应用和技术实现

技术背景 在探讨Android平台GB28181设备接入端在电网巡检抢修优势之前&#xff0c;我们已经在执法记录仪、智能安全帽、智能监控、智慧零售、智慧教育、远程办公、明厨亮灶、智慧交通、智慧工地、雪亮工程、平安乡村、生产运输、车载终端等场景有了丰富的经验积累&#xff0c;…