Skip to content

Commit e203a47

Browse files
committed
finish adding references
1 parent 95f82ac commit e203a47

File tree

10 files changed

+62
-37
lines changed

10 files changed

+62
-37
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Prompt shields and protected text and code models are optional and on by default
2525
> 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: [Azure OpenAI Limited Access Review: Modified Content Filters](https://ncv.microsoft.com/uEfCgnITdR). At this time, it is not possible to become a managed customer.
2626
2727
> [!IMPORTANT]
28-
> The GPT-image-1 model does not support content filtering configuration: only the default content filter is used.
28+
> The GPT-image-1 series models do not support content filtering configuration: only the default content filter is used.
2929
3030
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).
3131

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ OpenAI's image generation models create images from user-provided text prompts a
2424
- An Azure subscription. You can [create one for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?icid=ai-services).
2525
- An Azure OpenAI resource created in a supported region. See [Region availability](/azure/ai-foundry/openai/concepts/models#model-summary-table-and-region-availability).
2626
- 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).
27-
- 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+
- 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).
2828

2929

3030
## Call the image generation API
@@ -284,7 +284,7 @@ The Image Edit API enables you to modify existing images based on text prompts y
284284
> The input image must be less than 50 MB in size and must be a PNG or JPG file.
285285
286286
> [!IMPORTANT]
287-
> `gpt-image-1-mini` does not support image edits.
287+
> `gpt-image-1-mini` does not currently support image edits.
288288
289289
Send a POST request to:
290290

@@ -346,7 +346,10 @@ The *image* value indicates the image file you want to edit.
346346

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

349-
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.
349+
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.
350+
351+
> [!IMPORTANT]
352+
> Input fidelity is not supported by the `gpt-image-1-mini` model.
350353
351354

352355
#### Mask

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ The responses API is currently available in the following regions:
5555
- `gpt-4.1-nano` (Version: `2025-04-14`)
5656
- `gpt-4.1-mini` (Version: `2025-04-14`)
5757
- `gpt-image-1` (Version: `2025-04-15`)
58+
- `gpt-image-1-mini` (Version: `2025-10-06`)
5859
- `o1` (Version: `2024-12-17`)
5960
- `o3-mini` (Version: `2025-01-31`)
6061
- `o3` (Version: `2025-04-16`)
@@ -1265,7 +1266,7 @@ Compared to the standalone Image API, the Responses API offers several advantage
12651266
* **Flexible inputs**: Accept image File IDs as inputs, in addition to raw image bytes.
12661267

12671268
> [!NOTE]
1268-
> 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`.
1269+
> The image generation tool in the Responses API is only supported by the `gpt-image-1` seires models. However, you can 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`.
12691270

12701271
Use the Responses API if you want to:
12711272

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use this guide to get started calling the Azure OpenAI in Azure AI Foundry Model
1818
- <a href="https://www.python.org/" target="_blank">Python 3.8 or later version</a>.
1919
- The following Python libraries installed: `os`, `requests`, `json`.
2020
- An Azure OpenAI resource created in a supported region. See [Region availability](/azure/ai-foundry/openai/concepts/models#model-summary-table-and-region-availability).
21-
- 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).
21+
- 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).
2222

2323
## Setup
2424

0 commit comments

Comments
 (0)