create-image-cli
v1.0.2
Published
Tool to generate image using OpenAI's api.
Downloads
3
Readme
create-image-cli
Overview
An Interactive command line tool that simplifies the process of creating image using the OpenAI Image Generation API.
Installation
You can install create-image-cli globally using npm:
npm install -g create-image-cli
Usage
1. Generate an API key:
Before using the CLI, make sure you have obtained an API key from OpenAI. You can sign up and get your key here.
2. Configure API Key:
Run the following command to set the API key.
export OPENAI_API_KEY=<YOUR_OPENAI_API_KEY>
3. Create Image:
1. Interactive Way:
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.
Example:
2. Non Interactive Way:
create-image-cli generate --description "A serene sunset over a mountain lake"
Options:
--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: