# Presets

To simplify image enhancements preset parameter can be used.

```json
{
    "url": "image_url",
    "preset": "real_estate"
}
```

## Preset description

<table><thead><tr><th width="298">Preset name</th><th>Description</th></tr></thead><tbody><tr><td>auto_enhance</td><td><pre class="language-json"><code class="lang-json">{
      "max_length": 4096,
      "enhancements": [
        "denoise",
        "face_enhance",
        "deblur",
        "color",
        "light",
        "white_balance",
        "exposure_correction"
      ],
      "light_parameters": {
        "type": "hdr_light_advanced",
        "level": 1.0
      },
      "color_parameters": {
        "type": "hdr_light",
        "level": 0.85
      },
      "white_balance_parameters": {
        "level": 0.5
      },
      "deblur_parameters": {
        "type": "v2"
      },
      "denoise_parameters": {
        "type": "v2"
      },
      "background": {
        "generate": {
          "description": "high quality",
          "adapter_type": "upscale"
        }
    }
}
</code></pre></td></tr><tr><td>real_estate</td><td><ul><li>enhancements: ["light", "color"]</li></ul></td></tr><tr><td>real_estate_upscaled</td><td><ul><li>enhancements: ["light", "color"]</li><li>width: "200%"</li></ul></td></tr><tr><td>ecommerce</td><td><ul><li>enhancements: ["light", "color"]</li></ul></td></tr><tr><td>ecommerce_upscaled</td><td><ul><li>enhancements: ["light", "color"]</li><li>width: 2048</li></ul></td></tr><tr><td>auto_enhance_generative</td><td><pre class="language-json"><code class="lang-json">{
      "max_length": 4096,
      "enhancements": [
        "denoise",
        "face_enhance",
        "deblur",
        "color",
        "light",
        "white_balance",
        "exposure_correction"
      ],
      "light_parameters": {
        "type": "hdr_light_advanced",
        "level": 1.0
      },
      "color_parameters": {
        "type": "hdr_light",
        "level": 0.85
      },
      "white_balance_parameters": {
        "level": 0.5
      },
      "deblur_parameters": {
        "type": "v2"
      },
      "denoise_parameters": {
        "type": "v2"
      },
      "background": {
        "generate": {
          "description": "high quality",
          "adapter_type": "upscale"
        }
    },
    "generative_upscale": true
}
</code></pre></td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.deep-image.ai/image-processing/presets.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
