Skip to main content
Module

x/openai/mod.ts>ImageOptions

unofficial Deno wrapper for the Open Ai api
Extremely Popular
Go to Latest
interface ImageOptions
import { type ImageOptions } from "https://deno.land/x/openai@1.3.1/mod.ts";

Properties

prompt: string

A text description of the desired image(s). The maximum length is 1000 characters. https://platform.openai.com/docs/api-reference/images/create#images/create-prompt

optional
n: number

The number of images to generate. Must be between 1 and 10. https://platform.openai.com/docs/api-reference/images/create#images/create-n

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

The size of the generated images. Must be one of 256x256, 512x512, or 1024x1024. https://platform.openai.com/docs/api-reference/images/create#images/create-size

optional
responseFormat: "url" | "b64_json"

The format in which the generated images are returned. Must be one of url or b64_json. https://platform.openai.com/docs/api-reference/images/create#images/create-response_format

optional
user: string

A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. https://platform.openai.com/docs/api-reference/images/create#images/create-user