进步
GET
/v2/progress该接口提供图像生成结果的查询,可以是正在进行中、失败或成功。如果成功,它将返回生成图像的 s3 URL。
请求参数
Query 参数
task_id
string
任务ID
Header 参数
Authorization
string
必需
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
CodeNormal=0 CodeInternalError=-1 CodeInvalidJSON=1 CodeModelNotExist=2 CodeTaskIdNotExist=3 CodeInvalidAuth=4 CodeHostUnavailable=5 CodeParamRangeOutOfLimit=6 CodeCostBalanceFailure=7 CodeSamplerNotExist=8 CodeTimeout=9 CodeNotSupport=10
msg
string
必需
data
object
必需
status
integer
可选
生成状态: - 0 = 正在初始化 - 1 = 正在进行 - 2 = 成功 - 3 = 失败 - 4 = 超时。
progress
integer
可选
生成图像的进度,取值范围为[0, 1]。
eta_relative
integer
可选
估计剩余时间(以秒为单位)。
imgs
array[string]
可选
生成图像的S3地址。
failed_reason
string
可选
如果 status = 3 或 4,则返回失败原因。
current_images
array[string]
可选
与稳定扩散类似,也会返回图像生成过程中的预览图像。为了方便开发者,目前预览图是按照batch_size来划分的。
submit_time
string
任务提交时间。
execution_time
string
开始任务执行时间。
txt2img_time
string
可选
由稳定扩散时间生成的图像。
finish_time
string
可选
图片上传至存储时间。
info
string
可选
Stable Diffusion 的 info 信息以 JSON 字符串形式返回。
enable_nsfw_detection
boolean
必需
是否启用 nsfw 检测。
nsfw_detection_result
array [object {2}]
可选
debug_info
object
可选
示例
{
"code": 0,
"msg": "",
"data": {
"status": 2,
"progress": 1,
"eta_relative": 0,
"imgs": [
"https://stars-test.s3.amazonaws.com/free/859d452b-f682-45fc-b0e7-5bd7b61a107d-0.png",
"https://stars-test.s3.amazonaws.com/free/859d452b-f682-45fc-b0e7-5bd7b61a107d-1.png",
"https://stars-test.s3.amazonaws.com/free/859d452b-f682-45fc-b0e7-5bd7b61a107d-2.png",
"https://stars-test.s3.amazonaws.com/free/859d452b-f682-45fc-b0e7-5bd7b61a107d-3.png"
],
"failed_reason": "",
"current_images": [
""
],
"submit_time": "2024-01-24 15:08:17",
"execution_time": "2024-01-24 15:08:17",
"txt2img_time": "2024-01-24 15:08:22",
"finish_time": "2024-01-24 15:08:22",
"info": "",
"enable_nsfw_detection": true,
"nsfw_detection_result": [
{
"valid": true,
"confidence": 57.62467
},
{
"valid": true,
"confidence": 3.908125
},
{
"valid": true,
"confidence": 99.84468
},
{
"valid": true,
"confidence": 2.440833
}
],
"debug_info": {
"submit_time_ms": 1706080097101,
"execution_time_ms": 1706080097369,
"txt2img_time_ms": 1706080102333,
"finish_time_ms": 1706080102479
}
}
}
最后修改时间: 1 年前