An Interactive command line tool that simplifies the process of creating image using the OpenAI Image Generation API.
You can install create-image-cli globally using npm:
npm install -g create-image-cli
Before using the CLI, make sure you have obtained an API key from OpenAI. You can sign up and get your key here.
Run the following command to set the API key.
export OPENAI_API_KEY=<YOUR_OPENAI_API_KEY>
create-image-cli start
This command will launch an interactive interface that guides you through the image generation process. You'll be prompted to enter the necessary information, such as the description or prompt for the image, and any additional options. Follow the on-screen instructions to customize the image generation according to your preferences.
create-image-cli generate --description "A serene sunset over a mountain lake"
-
--description, -d
(Required): Image description or prompt to generate. -
--model, -m
(Optional): Model to use for image generation.- Choices:
dall-e-2
,dall-e-3
- Default:
dall-e-2
- Choices:
-
--size, -s
(Optional): Size of the image.- dall-e-2 choices:
256x256
,512x512
,1024x1024
- dall-e-3 choices:
1024x1024
,1792x1024
,1024x1792
- Default:
1024x1024
- dall-e-2 choices:
-
--quality, -q
(Optional): Quality of the image. Supports ony fordall-e-3
- Choices:
standard
,hd
. - Default:
standard
- Choices:
-
--style
(Optional): Style of the image. Supports ony fordall-e-3
- Choices:
natural
,vivid
. - Default:
natural
- Choices: