Creates an image given a prompt. See this page for details.
Usage
create_image(
prompt,
n = 1,
size = c("1024x1024", "256x256", "512x512"),
response_format = c("url", "b64_json"),
user = NULL,
openai_api_key = Sys.getenv("OPENAI_API_KEY"),
openai_organization = NULL
)Arguments
- prompt
required; a length one character vector.
- n
required; defaults to
1; a length one numeric vector with the integer value greater than0.- size
required; defaults to
"1024x1024"; a length one character vector, one among"256x256","512x512", and"1024x1024".- response_format
required; defaults to
"url"; a length one character vector, one among"url"and"b64_json".- user
optional; defaults to
NULL; a length one character vector.- openai_api_key
required; defaults to
Sys.getenv("OPENAI_API_KEY")(i.e., the value is retrieved from the.Renvironfile); a length one character vector. Specifies OpenAI API key.- openai_organization
optional; defaults to
NULL; a length one character vector. Specifies OpenAI organization.
Value
Returns a list, an element of which contain either a link to the generated image or the generated image decoded in Base64.
Details
For arguments description please refer to the official documentation.
See also
Other image functions:
create_image_edit(),
create_image_variation()
