Skip to content

Commit 9ec4ede

Browse files
Merge pull request #279950 from PatrickFarley/gh-issues-address
Gh issues address
2 parents fa5cc56 + 05e405f commit 9ec4ede

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

articles/ai-services/computer-vision/concept-model-customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ The following table describes the limits on the scale of your custom model proje
8080
| Max # training images | 1,000,000 | 200,000 |
8181
| Max # evaluation images | 100,000 | 100,000 |
8282
| Min # training images per category | 2 | 2 |
83-
| Max # tags per image | multiclass: 1 | NA |
84-
| Max # regions per image | NA | 1,000 |
83+
| Max # tags per image | 1 | N/A |
84+
| Max # regions per image | N/A | 1,000 |
8585
| Max # categories | 2,500 | 1,000 |
8686
| Min # categories | 2 | 1 |
8787
| Max image size (Training) | 20 MB | 20 MB |

articles/ai-services/content-safety/overview.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ This documentation contains the following article types:
3030

3131
The following are a few scenarios in which a software developer or team would require a content moderation service:
3232

33+
- User prompts submitted to a generative AI service.
34+
- Content produced by generative AI models.
3335
- Online marketplaces that moderate product catalogs and other user-generated content.
3436
- Gaming companies that moderate user-generated game artifacts and chat rooms.
3537
- Social messaging platforms that moderate images and text added by their users.

articles/ai-services/openai/how-to/gpt-with-vision.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The following command shows the most basic way to use the GPT-4 Turbo with Visio
3030

3131
#### [REST](#tab/rest)
3232

33-
Send a POST request to `https://{RESOURCE_NAME}.openai.azure.com/openai/deployments/{DEPLOYMENT_NAME}/chat/completions?api-version=2023-12-01-preview` where
33+
Send a POST request to `https://{RESOURCE_NAME}.openai.azure.com/openai/deployments/{DEPLOYMENT_NAME}/chat/completions?api-version=2024-02-15-preview` where
3434

3535
- RESOURCE_NAME is the name of your Azure OpenAI resource
3636
- DEPLOYMENT_NAME is the name of your GPT-4 Turbo with Vision model deployment
@@ -88,12 +88,12 @@ The following is a sample request body. The format is the same as the chat compl
8888
api_base = '<your_azure_openai_endpoint>' # your endpoint should look like the following https://YOUR_RESOURCE_NAME.openai.azure.com/
8989
api_key="<your_azure_openai_key>"
9090
deployment_name = '<your_deployment_name>'
91-
api_version = '2023-12-01-preview' # this might change in the future
91+
api_version = '2024-02-15-preview' # this might change in the future
9292

9393
client = AzureOpenAI(
9494
api_key=api_key,
9595
api_version=api_version,
96-
base_url=f"{api_base}openai/deployments/{deployment_name}/extensions",
96+
base_url=f"{api_base}openai/deployments/{deployment_name}",
9797
)
9898
```
9999

@@ -265,7 +265,7 @@ The **object grounding** integration brings a new layer to data analysis and use
265265
266266
#### [REST](#tab/rest)
267267

268-
Send a POST request to `https://{RESOURCE_NAME}.openai.azure.com/openai/deployments/{DEPLOYMENT_NAME}/extensions/chat/completions?api-version=2023-12-01-preview` where
268+
Send a POST request to `https://{RESOURCE_NAME}.openai.azure.com/openai/deployments/{DEPLOYMENT_NAME}/chat/completions?api-version=2024-02-15-preview` where
269269

270270
- RESOURCE_NAME is the name of your Azure OpenAI resource
271271
- DEPLOYMENT_NAME is the name of your GPT-4 Turbo with Vision model deployment
@@ -577,7 +577,7 @@ To use a User assigned identity on your Azure AI Services resource, follow these
577577
578578
#### [REST](#tab/rest)
579579
580-
1. Prepare a POST request to `https://{RESOURCE_NAME}.openai.azure.com/openai/deployments/{DEPLOYMENT_NAME}/extensions/chat/completions?api-version=2023-12-01-preview` where
580+
1. Prepare a POST request to `https://{RESOURCE_NAME}.openai.azure.com/openai/deployments/{DEPLOYMENT_NAME}/chat/completions?api-version=2024-02-15-preview` where
581581
582582
- RESOURCE_NAME is the name of your Azure OpenAI resource
583583
- DEPLOYMENT_NAME is the name of your GPT-4 Vision model deployment

0 commit comments

Comments
 (0)