使用 lcm 将文本转为图像
POST
/v3/lcm-txt2img通过潜在一致性模型,图像生成速度提高 10 倍,通过几步推理即可合成高分辨率图像。您可以在此处获取指导:https://novita.ai/get-started/Basic_txt2img.html#_6-txt2img-request-with-lcm。
请求参数
Header 参数
Authorization
string
必需
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
prompt
string
必需
涂鸦的正面提示词,用“,”分隔。范围:[1, 1024]
height
integer
必需
图像的高度。范围:[128, 1024]
width
integer
必需
图像的宽度。范围:[128, 1024]
image_num
integer
必需
图像编号。范围:[1, 16]
steps
integer
必需
图像创建过程的迭代。范围:[1, 8]
guidance_scale
integer
必需
此设置表示模型将听取您的提示的程度。范围:[2.0,14.0]
示例
{
"prompt": "A dog",
"height": 1024,
"width": 1024,
"image_num": 1,
"steps": 8,
"guidance_scale": 8
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
array [oneOf]
可选
array[string]
可选
object
可选
image_file
string
可选
image_type
string
可选
integer
可选
string
可选
object
可选
task_id
string
可选
示例
[
[
{
"image_file": "",
"image_type": ""
}
],
500,
"INTERNAL",
"failed to exec task, err: failed to lcm-txt2img: failed to request API: invalid api status code: 500, body: {\"code\":2,\"message\":\"NoneType: None\\n\"}",
{
"task_id": "4788a484-9a17-4a6f-8441-743c9b6763b2"
}
]
最后修改时间: 1 年前