/** * Represents the url or the content of an image generated by the OpenAI API. */ export type Image = { /** * The base64-encoded JSON of the generated image, if `response_format` is `b64_json`. */ b64_json?: string; /** * The URL of the generated image, if `response_format` is `url` (default). */ url?: string; };