https://beta.openai.com/docs/api-reference/images
Images
Given a prompt and/or an input image, the model will generate a new image.
프롬프트 and/or 입력 이미지가 주어지면 모델이 새 이미지를 생성합니다.
Related guide: Image generation
Create image
POST https://api.openai.com/v1/images/generations
Creates an image given a prompt.
프롬프트가 주어지면 이미지를 생성합니다.
Request body
A text description of the desired image(s). The maximum length is 1000 characters.
원하는 이미지에 대한 텍스트 설명입니다. 최대 길이는 1000자입니다.
The number of images to generate. Must be between 1 and 10.
생성할 이미지 수입니다. 1에서 10 사이여야 합니다.
The size of the generated images. Must be one of 256x256, 512x512, or 1024x1024.
생성된 이미지의 크기입니다. 256x256, 512x512 또는 1024x1024 중 하나여야 합니다.
The format in which the generated images are returned. Must be one of url or b64_json.
생성된 이미지가 반환되는 형식입니다. url 또는 b64_json 중 하나여야 합니다.
A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. Learn more.
OpenAI가 남용을 모니터링하고 탐지하는 데 도움이 될 수 있는 최종 사용자를 나타내는 고유 식별자입니다. 더 알아보기.
https://beta.openai.com/docs/api-reference/images/create-edit
Create image edit
POST https://api.openai.com/v1/images/edits
Creates an edited or extended image given an original image and a prompt.
원본 이미지와 프롬프트가 주어지면 편집되거나 확장된 이미지를 생성합니다.
Request body
The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask.
편집할 이미지입니다. 유효한 PNG 파일이어야 하며 4MB 미만의 정사각형이어야 합니다. 마스크를 제공하지 않으면 이미지에 투명도가 있어야 마스크로 사용됩니다.
An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where image should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as image.
완전히 투명한 영역(예: 알파가 0인 경우)이 있는 추가 이미지는 이미지를 편집해야 하는 위치를 나타냅니다. 4MB 미만의 유효한 PNG 파일이어야 하며 이미지와 크기가 같아야 합니다.
A text description of the desired image(s). The maximum length is 1000 characters.
원하는 이미지에 대한 텍스트 설명입니다. 최대 길이는 1000자입니다.
The number of images to generate. Must be between 1 and 10.
생성할 이미지 수입니다. 1에서 10 사이여야 합니다.
The size of the generated images. Must be one of 256x256, 512x512, or 1024x1024.
생성된 이미지의 크기입니다. 256x256, 512x512 또는 1024x1024 중 하나여야 합니다.
The format in which the generated images are returned. Must be one of url or b64_json.
생성된 이미지가 반환되는 형식입니다. url 또는 b64_json 중 하나여야 합니다.
A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. Learn more.
OpenAI가 남용을 모니터링하고 탐지하는 데 도움이 될 수 있는 최종 사용자를 나타내는 고유 식별자입니다. 더 알아보기.
https://beta.openai.com/docs/api-reference/images/create-variation
Create image variation
POST https://api.openai.com/v1/images/variations
Creates a variation of a given image.
주어진 이미지의 변형을 만듭니다.
Request body
The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square.
변형의 기초로 사용할 이미지입니다. 유효한 PNG 파일이어야 하며 4MB 미만의 정사각형이어야 합니다.
The number of images to generate. Must be between 1 and 10.
생성할 이미지 수입니다. 1에서 10 사이여야 합니다.
The size of the generated images. Must be one of 256x256, 512x512, or 1024x1024.
생성된 이미지의 크기입니다. 256x256, 512x512 또는 1024x1024 중 하나여야 합니다.
The format in which the generated images are returned. Must be one of url or b64_json.
생성된 이미지가 반환되는 형식입니다. url 또는 b64_json 중 하나여야 합니다.
A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. Learn more.
OpenAI가 남용을 모니터링하고 탐지하는 데 도움이 될 수 있는 최종 사용자를 나타내는 고유 식별자입니다. 더 알아보기.
'Open AI > API REFERENCE' 카테고리의 다른 글
Engines - openai.Engine.list(), (0) | 2023.01.17 |
---|---|
Moderations - openai.Moderation.create() (0) | 2023.01.17 |
Fine-tunes : openai.FineTune.create(), list(), retrieve(), cancel(), list_events(), delete() (0) | 2023.01.17 |
Files - openai.File.list(), create(), delete(), retrieve(), download() (0) | 2023.01.17 |
Embeddings - openai.Embedding.create() (0) | 2023.01.17 |
Edits - openai.Edit.create() (0) | 2023.01.17 |
Completions - openai.Completion.create() (0) | 2023.01.17 |
Models - openai.Model.list(), openai.Model.retrieve() (0) | 2023.01.16 |
Making Request - Open AI API 에 요청 하기 : curl (0) | 2023.01.16 |
Authentication - Open AI API 사용을 위한 인증 받기 : openai.api_key = os.getenv("OPENAI_API_KEY) (0) | 2023.01.16 |