create_image {openai} | R Documentation |
Create image
Description
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 |
size |
required; defaults to |
response_format |
required; defaults to |
user |
optional; defaults to |
openai_api_key |
required; defaults to |
openai_organization |
optional; defaults to |
Details
For arguments description please refer to the official documentation.
Value
Returns a list, an element of which contain either a link to the generated image or the generated image decoded in Base64.
See Also
Other image functions:
create_image_edit()
,
create_image_variation()
Examples
## Not run:
create_image("An astronaut riding a horse in a photorealistic style")
## End(Not run)