> ## Documentation Index
> Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Images CLI

> CLI commands for image generation

## Overview

Generate images from text prompts using the command line.

## Commands

### Basic Image Generation

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai images "A sunset over mountains"
```

### With Model Selection

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai images "A blue circle" --model dall-e-2
```

### With Size

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai images "A landscape" --size 1792x1024
```

### With Quality (DALL-E 3)

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai images "A detailed portrait" --quality hd
```

### Save to File

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai images "A cat" --output cat.png
```

## Options

| Option      | Short | Default   | Description      |
| ----------- | ----- | --------- | ---------------- |
| `--model`   | `-m`  | dall-e-3  | Model to use     |
| `--size`    | `-s`  | 1024x1024 | Image size       |
| `--quality` | `-q`  | standard  | Image quality    |
| `--output`  | `-o`  | None      | Output file path |
| `--n`       |       | 1         | Number of images |

## Examples

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# Generate with DALL-E 3
praisonai images "A futuristic cityscape at night"

# Quick generation with DALL-E 2
praisonai images "A simple logo" -m dall-e-2 -s 256x256

# High quality image
praisonai images "A detailed oil painting" -q hd -o painting.png
```
