图片补全
Action
GenerateCompletion
简介
⚠️
该接口已过时,不再维护。
此接口用于图片补全
请求
参数名 | 类型 | 描述信息 | 必填 |
---|---|---|---|
Action | String | 对应的 API 指令名称,当前 API 为 GenerateCompletion | ✓ |
PublicKey | String | 用户公钥,可从 用户中心 (opens in a new tab) 获取 | ✓ |
Signature | String | 根据公钥及 API 指令生成的用户签名,参见 签名算法 | ✓ |
request_uuid | String | 请求uuid,采用uuid生成方式随机生成 | |
ModelType | String | 模型类型,参考值:combined_model 、custom_model 。使用PICPIK提供的官方模型需填写combined_model ,使用自训练或上传的模型需填写custom_model | ✓ |
MainModelId | Int | 主模型ID若ModelType为combined_model ,则填写SystemPreInstallModels 的Id,否则填写则填写SelfMainModels 的Id | ✓ |
SubModelIds | []int | 子模型列表,若ModelType为combined_model 则不填写 | |
SubModelParams | []SubModelParam | 子模型参数,若使用,SubModelIds,则可通过此参数控制子模型的权重 | |
BatchSize | Int | 批量出图大小1~16 | ✓ |
Steps | Int | 迭代步数1~150 | ✓ |
CfgScale | Float | 提示词指导程度0~30 | ✓ |
Seed | Int | 随机数种子 | ✓ |
Sampler | String | 采样器,参考采样器列表 | ✓ |
Width | Int | 图片生成宽度,最大值: 1440,最小值16 | ✓ |
Height | Int | 图片生成高度,最大值: 1440 | ✓ |
ClipSkip | Int | ClipSkip | ✓ |
TranslatePrompt | Bool | 是否将提示词翻译成英文 | ✓ |
PositivePrompts | []String | 正面提示词 | |
NegativePrompts | []String | 反面提示词 | |
ReferenceImage | String | 参考源图Base64 | ✓ |
TransparentImg | String | 黑白遮罩的Base64,其中白色部分是重绘部分,遮罩图片需避免经过第三方工具压缩 | ✓ |
CompletionControlWeight | Float | 补全权重 | ✓ |
CompletionStrengthenPrompt | Bool | 是否提示词优先 | ✓ |
CompletionSigma | Float | 透明边缘羽化半径 | ✓ |
EnableControlNet | Bool | 是否开启controlNet | |
ControlNetParams | []ControlNetParam | ControlNet参数列表(最多三个) | |
UseCustomMainModelVae | Bool | 是否使用主模型VAE,true为使用主模型自带VAE,默认false |
ControlNetParam
参数名 | 类型 | 描述信息 | 必填 |
---|---|---|---|
ControlNetImg | String | ControlNet图片base64 | |
ControlPreSetId | String | ControlNet预设参数Id,0:自定义,1:简笔涂鸦,2:人物姿势,3:动漫线稿,4: 空间线稿 | |
ControlWeight | Float | ControlNet权重 0~2 | |
ModelId | Int | ControlNet模型Id | |
PreProcessorId | Int | ControlNet预处理器Id | |
StartingControlStep | Float | ControlNet开始介入步数 | |
EndingControlStep | Float | ControlNet结束介入步数 | |
ControlMode | String | 控制模式,参考值: Balanced、MyPromptIsMoreImportant、ControlNetIsMoreImportant | |
ResizeMode | String | 缩放模式,参考值:JustResize、CropAndResize、ResizeAndFill | |
PreProcessorResolution | Int | PreProcessorResolution | |
Param1Value | Float | 参数1 | |
Param2Value | Float | 参数2 |
注: ControlPreSetId 若填写非0,则只需填写ControlNetImg与ControlWeight参数即可。反之则需要填写所有参数。参数参见获取ControlNet模型列表。
SubModelParam
参数名 | 类型 | 描述信息 | 必填 |
---|---|---|---|
SubModelId | Int | 子模型id | |
ControlWeight | Float | 子模型控制权重(Lora权重) |
请求示例
{
"Action": "GenerateCompletion",
"PublicKey": "ALLak9M4cNdHXKOJAJJ4k8Hh1hZS2EgJF1D0FlPwfl",
"request_uuid": "b91fcfbe-bb35-47ce-a168-bd6252c75270",
"Signature": "743c5804b6ab6e5ac0e4e606d38a222272ad1739",
"ModelType": "combined_model",
"MainModelId": 1,
"BatchSize": 2,
"Steps": 20,
"CfgScale": 8,
"Seed": -1,
"Sampler": "Euler a",
"ClipSkip": 1,
"Width": 1230,
"Height": 750,
"PositivePrompts": [],
"NegativePrompts": [],
"TranslatePrompt": true,
"CompletionControlWeight": 1,
"CompletionStrengthenPrompt": false,
"CompletionSigma": 10,
"TransparentImg": "data:image/jpeg;base64,xxx",
"ReferenceImage": "data:image/jpeg;base64,xxx"
}
响应
参数名 | 类型 | 描述信息 | 必填 |
---|---|---|---|
RetCode | Int | 返回状态码,为 0 则为成功返回,非 0 为失败 | ✓ |
Action | String | 操作指令名称 | ✓ |
Message | String | 返回错误消息,当 RetCode 非 0 时提供详细的描述信息 | |
TaskUID | String | 任务UID,用于查询任务详情与获取结果 | ✓ |
响应示例
{
"Action":"",
"RetCode":0,
"Message":"",
"TaskUID":"cjr997tleg738lelk3n0"
}