# Flux Vision Upscaler

> Flux Vision Upscaler. Upscale images with creative control up to 4x. Triggers: image upscaling, flux, enhance, super resolution, upscale

- Skill: `awesome-genmedia/flux-vision-upscaler` (Agent Skill)
- Install (CLI): `npx skillmds@latest add awesome-genmedia/flux-vision-upscaler`
- Raw SKILL.md: https://api.skillmd.com/api/skills/awesome-genmedia/flux-vision-upscaler/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: awesome-genmedia (https://skillmd.com/u/awesome-genmedia)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/awesome-genmedia/flux-vision-upscaler

---


# Flux Vision Upscaler

Upscale images up to 4x with configurable creativity and guidance controls. Balance between faithful upscaling and creative enhancement.

## Quick Start

> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).

```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "flux-vision-upscaler",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/low-res-image.jpg",
      "upscale_factor": 2,
      "creativity": 0.3
    }
  }'
```

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| creativity | number | 0.3 | The creativity level. Higher values add more model-generated detail. |
| enable_safety_checker | boolean | true | Whether to enable the safety checker. |
| guidance | number | 1 | CFG/guidance scale (0-20). Controls how closely the model follows guidance. |
| image_url | string | | The URL of the image to upscale. |
| seed | string | | The seed for reproducible results. |
| steps | integer | 20 | Number of inference steps (4-50). |
| upscale_factor | number | 2 | The upscale factor (1-4x). |

## Examples

**High-fidelity 4x upscale:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "flux-vision-upscaler",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/thumbnail.jpg",
      "upscale_factor": 4,
      "creativity": 0.2,
      "steps": 30,
      "guidance": 2
    }
  }'
```

**Creative enhancement:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "flux-vision-upscaler",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/old-photo.jpg",
      "upscale_factor": 2,
      "creativity": 0.6,
      "steps": 25,
      "seed": "42"
    }
  }'
```

## Related Models

- [Topaz Upscale Video](../topaz-upscale-video/) - Video upscaling
- [Topaz Upscale Image](../topaz-upscale-image/) - Alternative image upscaler

## Documentation

- [each::labs Docs](https://docs.eachlabs.ai)
- [API Reference](https://docs.eachlabs.ai/api/overview)

