文生图
接口:POST /v1/images/generations 归属:绘图模型/OpenAI Dall-e 格式 调用地址:Base URL https://api.allyang.cn(OpenAI 兼容前缀 https://api.allyang.cn/v1)+ 上述路径 鉴权:请求头 Authorization: Bearer <你的令牌>;令牌在控制台「令牌管理」创建 说明:下方为本接口契约。路径、字段名与枚举取值与线上接口一致;叙述文字已按本平台口径重写。价格、并发与限流等数值以控制台及实际返回为准,未确认处标注「待补」。
OpenAPI Specification
yaml
openapi: 3.0.1
info:
title: ''
description: ''
version: 1.0.0
paths:
/v1/images/generations:
post:
summary: 文生图
description: "给定提示词和/或输入图像,模型据此产出新图像;具体调用见下方契约。"
tags:
- 绘图模型/OpenAI Dall-e 格式
parameters:
- name: Authorization
in: header
description: ''
required: false
example: Bearer {{YOUR_API_KEY}}
schema:
type: string
default: Bearer {{YOUR_API_KEY}}
requestBody:
content:
application/json:
schema:
type: object
properties:
prompt:
type: string
title: ''
description: "所需图像的文本描述,最长 1000 字符。"
'n':
type: integer
title: ''
description: "要生成的图像数量,须介于 1 和 10 之间。"
size:
type: string
title: ''
description: "生成图像尺寸,必须为 256x256、512x512 或 1024x1024 之一。"
required:
- prompt
examples: {}
responses:
'200':
description: ''
content:
application/json:
schema:
type: object
properties:
created:
type: integer
data:
type: array
items:
type: object
properties:
url:
type: string
required:
- url
required:
- created
- data
example:
created: 1589478378
data:
- url: https://api.allyang.cn/<外部地址已按合规要求移除>
- url: https://api.allyang.cn/<外部地址已按合规要求移除>
headers: {}
security: []
components:
schemas: {}
securitySchemes: {}
servers: []
security: []