# Models Overview

> Available models and capabilities

Weyl supports multiple model families for image and video generation.

## Active Models

| Family   | Modality | Models           | Best For                    |
|----------|----------|------------------|-----------------------------|
| `flux`   | image    | dev2, dev, schnell | General purpose, quality  |
| `zimage` | image    | turbo            | Speed, iteration             |

## FLUX Family

**Black Forest Labs - State of the art image generation**

- **dev2** - FLUX.2 Dev (32B parameters) - Best quality
- **dev** - FLUX.1 Dev (12B parameters) - Balanced
- **schnell** - FLUX.1 Schnell (12B, 4 steps) - Fastest

### Example

```bash
curl -X POST "https://sync.render.weyl.ai/image/flux/schnell/t2i?format=1024" \
  -H "Authorization: Bearer $WEYL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"prompt": "portrait, natural lighting"}' \
  -o output.webp
```

## Z-Image Family

**Alibaba Tongyi Lab - Ultra-fast generation**

- **turbo** - Z-Image Turbo (6B parameters) - Sub-second generation

### Example

```bash
curl -X POST "https://sync.render.weyl.ai/image/zimage/turbo/t2i?format=512" \
  -H "Authorization: Bearer $WEYL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"prompt": "portrait"}' \
  -o output.webp
```