Skip to content

Commit 9d21242

Browse files
authored
Merge pull request #7521 from PatrickFarley/imagen
Imagen
2 parents c3a95a0 + f3f8457 commit 9d21242

File tree

11 files changed

+67
-42
lines changed

11 files changed

+67
-42
lines changed

articles/ai-foundry/openai/concepts/default-safety-policies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Text models in the Azure OpenAI can take in and generate both text and code. The
5353

5454
### Image generation models
5555

56-
#### [GPT-image-1](#tab/gpt-image-1)
56+
#### [GPT-image-1 series](#tab/gpt-image-1)
5757

5858
| Risk Category | Prompt/Completion | Severity Threshold |
5959
|---------------------------------------------------|------------------------|---------------------|

articles/ai-foundry/openai/how-to/content-filters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Prompt shields and protected text and code models are optional and on by default
2626
> All customers have the ability to modify the content filters and configure the severity thresholds (low, medium, high). Approval is required for turning the content filters partially or fully off. Managed customers only may apply for full content filtering control via this form: [Limited Access Review: Modified Content Filters](https://ncv.microsoft.com/uEfCgnITdR). At this time, it is not possible to become a managed customer.
2727
2828
> [!IMPORTANT]
29-
> The GPT-image-1 model does not support content filtering configuration: only the default content filter is used.
29+
> The GPT-image-1 series models do not support content filtering configuration: only the default content filter is used.
3030
3131
Content filters can be configured at the resource level. Once a new configuration is created, it can be associated with one or more deployments. For more information about model deployment, see the [resource deployment guide](create-resource.md).
3232

articles/ai-foundry/openai/how-to/dall-e.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ OpenAI's image generation models create images from user-provided text prompts a
2424

2525
- An Azure subscription. You can [create one for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?icid=ai-services).
2626
- An Azure OpenAI resource created in a supported region. See [Region availability](/azure/ai-foundry/openai/concepts/models#model-summary-table-and-region-availability).
27-
- Deploy a `dall-e-3` or `gpt-image-1` model with your Azure OpenAI resource. For more information on deployments, see [Create a resource and deploy a model with Azure OpenAI](/azure/ai-foundry/openai/how-to/create-resource).
28-
- GPT-image-1 is the newer model and features a number of improvements over DALL-E 3. It's available in limited access: apply for access with [this form](https://aka.ms/oai/gptimage1access).
27+
- Deploy a `dall-e-3` or `gpt-image-1` series model with your Azure OpenAI resource. For more information on deployments, see [Create a resource and deploy a model with Azure OpenAI](/azure/ai-foundry/openai/how-to/create-resource).
28+
- GPT-image-1 models are newer and feature a number of improvements over DALL-E 3. They are available in limited access: apply for access with [this form](https://aka.ms/oai/gptimage1access).
2929

3030
## Overview
3131

@@ -337,6 +337,9 @@ The Image Edit API enables you to modify existing images based on text prompts y
337337
> [!IMPORTANT]
338338
> The input image must be less than 50 MB in size and must be a PNG or JPG file.
339339
340+
> [!IMPORTANT]
341+
> `gpt-image-1-mini` does not currently support image edits.
342+
340343
Send a POST request to:
341344

342345
```
@@ -397,7 +400,10 @@ The *image* value indicates the image file you want to edit.
397400

398401
The *input_fidelity* parameter controls how much effort the model puts into matching the style and features, especially facial features, of input images.
399402

400-
This parameter lets you make subtle edits to an image without changing unrelated areas. When you use high input fidelity, faces are preserved more accurately than in standard mode.
403+
This parameter lets you make subtle edits to an image without changing unrelated areas. When you use high input fidelity, faces are preserved more accurately than in standard mode.
404+
405+
> [!IMPORTANT]
406+
> Input fidelity is not supported by the `gpt-image-1-mini` model.
401407
402408

403409
#### Mask

articles/ai-foundry/openai/how-to/responses.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ The responses API is currently available in the following regions:
5858
- `gpt-4.1-nano` (Version: `2025-04-14`)
5959
- `gpt-4.1-mini` (Version: `2025-04-14`)
6060
- `gpt-image-1` (Version: `2025-04-15`)
61+
- `gpt-image-1-mini` (Version: `2025-10-06`)
6162
- `o1` (Version: `2024-12-17`)
6263
- `o3-mini` (Version: `2025-01-31`)
6364
- `o3` (Version: `2025-04-16`)
@@ -1268,7 +1269,7 @@ Compared to the standalone Image API, the Responses API offers several advantage
12681269
* **Flexible inputs**: Accept image File IDs as inputs, in addition to raw image bytes.
12691270

12701271
> [!NOTE]
1271-
> The image generation tool in the Responses API is only supported by the `gpt-image-1` model. You can however call this model from this list of supported models - `gpt-4o`, `gpt-4o-mini`, `gpt-4.1`, `gpt-4.1-mini`, `gpt-4.1-nano`, `o3`, and `gpt-5` series models.<br><br>The Responses API image generation tool does not currently support streaming mode. To use streaming mode and generate partial images, call the [image generation API](./dall-e.md) directly outside of the Responses API.
1272+
> The image generation tool in the Responses API is only supported by the `gpt-image-1` series models. You can however call this model from this list of supported models - `gpt-4o`, `gpt-4o-mini`, `gpt-4.1`, `gpt-4.1-mini`, `gpt-4.1-nano`, `o3`, and `gpt-5` series models.<br><br>The Responses API image generation tool does not currently support streaming mode. To use streaming mode and generate partial images, call the [image generation API](./dall-e.md) directly outside of the Responses API.
12721273

12731274
Use the Responses API if you want to build conversational image experiences with GPT Image.
12741275

articles/ai-foundry/openai/includes/dall-e-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Use this guide to get started calling the Azure OpenAI in Azure AI Foundry Model
1919
- <a href="https://www.python.org/" target="_blank">Python 3.8 or later version</a>.
2020
- The following Python libraries installed: `os`, `requests`, `json`.
2121
- An Azure OpenAI resource created in a supported region. See [Region availability](/azure/ai-foundry/openai/concepts/models#model-summary-table-and-region-availability).
22-
- Then, you need to deploy a `gpt-image-1` or `dalle3` model with your Azure resource. For more information, see [Create a resource and deploy a model with Azure OpenAI](../how-to/create-resource.md).
22+
- Then, you need to deploy a `gpt-image-1`-series or `dalle3` model with your Azure resource. For more information, see [Create a resource and deploy a model with Azure OpenAI](../how-to/create-resource.md).
2323

2424
## Setup
2525

0 commit comments

Comments
 (0)