Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/openai_deno/mod.ts>CreateImageEditParams

OpenAI API wrapper for deno.
Latest
interface CreateImageEditParams
Re-export
import { type CreateImageEditParams } from "https://deno.land/x/openai_deno@v0.9.8/mod.ts";

Properties

optional
mask: { file: string | BlobPart; name?: string; }

An additional image(or image path) 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.

optional
count: number

The number of images to generate. Must be between 1 and 10.

optional
size:
| "256x256"
| "512x512"
| "1024x1024"
| string

The size of the generated images. Must be one of 256x256, 512x512, or 1024x1024.

optional
responseFormat: "url" | "b64_json" | string

The format in which the generated images are returned. Must be one of url or b64_json.

optional
user: string

A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. Learn more.