列出所有型号
GET
/v1/models返回可用模型的列表。您可以列出所有可用模型,或列出特定系列或管道的模型。
请求参数
Query 参数
family
string
可选
该列表将被过滤以仅包含具有匹配family属性的模型。
pipeline
string
可选
该列表将被过滤以仅包含具有匹配pipeline属性的模型
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
array of:
id
string
必需
name
string
必需
family
string
必需
pipelines
array[string]
必需
base_resolution
object
必需
width
integer
必需
height
integer
必需
price
number
必需
created_at
string
必需
示例
[
{
"id": "stable-diffusion-v1-5",
"name": "Stable Diffusion v1.5",
"family": "stable-diffusion",
"pipelines": [
"text-to-image",
"image-to-image",
"controlnet"
],
"base_resolution": {
"width": 512,
"height": 512
},
"price": 0.00045,
"created_at": "2023-05-23T18:51:22.297Z"
},
{
"id": "realistic-vision-v1-3",
"name": "Realistic Vision v1.3",
"family": "stable-diffusion",
"pipelines": [
"text-to-image",
"image-to-image",
"controlnet"
],
"base_resolution": {
"width": 512,
"height": 512
},
"price": 0.00045,
"created_at": "2023-05-23T18:51:22.297Z"
}
]
最后修改时间: 10 个月前