Skip to content

Commit c2b8978

Browse files
Learn Build Service GitHub AppLearn Build Service GitHub App
authored andcommitted
Merging changes synced from https://github.com/MicrosoftDocs/azure-docs-pr (branch live)
2 parents 8855f8e + b1a91c8 commit c2b8978

File tree

81 files changed

+1419
-340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+1419
-340
lines changed

.openpublishing.redirection.virtual-desktop.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,11 @@
369369
"source_path_from_root": "/articles/virtual-desktop/publish-applications.md",
370370
"redirect_url": "/azure/virtual-desktop/publish-applications-stream-remoteapp",
371371
"redirect_document_id": false
372+
},
373+
{
374+
"source_path_from_root": "/articles/virtual-desktop/autoscale-new-existing-host-pool.md",
375+
"redirect_url": "/azure/virtual-desktop/autoscale-scaling-plan",
376+
"redirect_document_id": true
372377
}
373378
]
374379
}

articles/ai-services/computer-vision/how-to/video-retrieval.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Azure AI Spatial Analysis Video Retrieval APIs are part of Azure AI Vision and e
2020
## Prerequisites
2121

2222
- Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services).
23-
- Once you have your Azure subscription, [create a Vision resource using the portal](/azure/cognitive-services/cognitive-services-apis-create-account). For this preview, you must create your resource in the East US region.
23+
- Once you have your Azure subscription, [create a Vision resource using the portal](/azure/cognitive-services/cognitive-services-apis-create-account). For this preview, you must create your resource in the one of the following regions - Australia East, Switzerland North, Sweden Central, or East US.
2424
- An Azure Storage resource - [Create one](/azure/storage/common/storage-account-create?tabs=azure-portal)
2525

2626
## Input requirements

articles/ai-services/document-intelligence/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metadata:
1212
ms.topic: landing-page
1313
author: laujan
1414
ms.author: lajanuar
15-
ms.date: 07/28/2023
15+
ms.date: 01/02/2024
1616
monikerRange: '<=doc-intel-4.0.0'
1717
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1818
# Limits: https://review.learn.microsoft.com/help/contribute/contribute-how-to-write-landing-page?branch=main#limits

articles/ai-services/language-service/concepts/model-lifecycle.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: azure-ai-language
99
ms.custom: event-tier1-build-2022
1010
ms.topic: conceptual
11-
ms.date: 12/19/2023
11+
ms.date: 01/16/2024
1212
ms.author: aahi
1313
---
1414

@@ -33,8 +33,7 @@ Preview models used for preview features do not maintain a minimum retirement pe
3333
By default, API and SDK requests will use the latest Generally Available model. You can use an optional parameter to select the version of the model to be used (not recommended).
3434

3535
> [!NOTE]
36-
> * If you are using a model version that is not listed in the table, then it was subjected to the expiration policy.
37-
> * Abstractive document and conversation summarization do not provide model versions other than the latest available.
36+
> If you are using a model version that is not listed in the table, then it was subjected to the expiration policy.
3837
3938
Use the table below to find which model versions are supported by each feature:
4039

@@ -49,7 +48,7 @@ Use the table below to find which model versions are supported by each feature:
4948
| Question answering | `latest*` | |
5049
| Text Analytics for health | `latest*` | `2022-08-15-preview`, `2023-01-01-preview**`|
5150
| Key phrase extraction | `latest*` | |
52-
| Document summarization - extractive only (preview) | |`2022-08-31-preview**` |
51+
| Summarization | `latest*` | |
5352

5453

5554
\* Latest Generally Available (GA) model version

articles/ai-services/openai/concepts/models.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ These models can only be used with Embedding API requests.
148148
| `text-embedding-ada-002` (version 2) | Australia East <br> Canada East <br> East US <br> East US2 <br> France Central <br> Japan East <br> North Central US <br> Norway East <br> South Central US <br> Sweden Central <br> Switzerland North <br> UK South <br> West Europe <br> West US |8,191 | Sep 2021 | 1,536 |
149149
| `text-embedding-ada-002` (version 1) | East US <br> South Central US <br> West Europe |2,046 | Sep 2021 | 1,536 |
150150

151+
> [!NOTE]
152+
> When sending an array of inputs for embedding, the max number of input items in the array per call to the embedding endpoint is 2048.
153+
151154
### DALL-E models (Preview)
152155

153156
| Model ID | Feature Availability | Max Request (characters) |

articles/ai-services/openai/how-to/embeddings.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Learn how to generate embeddings with Azure OpenAI
66
manager: nitinme
77
ms.service: azure-ai-openai
88
ms.topic: how-to
9-
ms.date: 11/06/2023
9+
ms.date: 01/16/2024
1010
author: mrbullwinkle
1111
ms.author: mbullwin
1212
recommendations: false
@@ -126,7 +126,9 @@ return $response.data.embedding
126126

127127
### Verify inputs don't exceed the maximum length
128128

129-
The maximum length of input text for our latest embedding models is 8192 tokens. You should verify that your inputs don't exceed this limit before making a request.
129+
- The maximum length of input text for our latest embedding models is 8192 tokens. You should verify that your inputs don't exceed this limit before making a request.
130+
- If sending an array of inputs in a single embedding request the max array size is 2048.
131+
130132

131133
## Limitations & risks
132134

articles/ai-services/openai/how-to/switching-endpoints.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.author: mbullwin
77
ms.service: azure-ai-openai
88
ms.custom: devx-track-python
99
ms.topic: how-to
10-
ms.date: 11/22/2023
10+
ms.date: 01/06/2023
1111
manager: nitinme
1212
---
1313

@@ -170,7 +170,7 @@ embedding = client.embeddings.create(
170170

171171
## Azure OpenAI embeddings multiple input support
172172

173-
OpenAI currently allows a larger number of array inputs with text-embedding-ada-002. Azure OpenAI currently supports input arrays up to 16 for text-embedding-ada-002 Version 2. Both require the max input token limit per API request to remain under 8191 for this model.
173+
OpenAI and Azure OpenAI currently support input arrays up to 2048 input items for text-embedding-ada-002. Both require the max input token limit per API request to remain under 8191 for this model.
174174

175175
<table>
176176
<tr>
@@ -194,7 +194,7 @@ embedding = client.embeddings.create(
194194
<td>
195195

196196
```python
197-
inputs = ["A", "B", "C"] #max array size=16
197+
inputs = ["A", "B", "C"] #max array size=2048
198198

199199
embedding = client.embeddings.create(
200200
input=inputs,

articles/ai-services/openai/includes/embeddings-python.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,8 @@ len(decode)
340340

341341
Now that we understand more about how tokenization works we can move on to embedding. It is important to note, that we haven't actually tokenized the documents yet. The `n_tokens` column is simply a way of making sure none of the data we pass to the model for tokenization and embedding exceeds the input token limit of 8,192. When we pass the documents to the embeddings model, it will break the documents into tokens similar (though not necessarily identical) to the examples above and then convert the tokens to a series of floating point numbers that will be accessible via vector search. These embeddings can be stored locally or in an [Azure Database to support Vector Search](../../../cosmos-db/mongodb/vcore/vector-search.md). As a result, each bill will have its own corresponding embedding vector in the new `ada_v2` column on the right side of the DataFrame.
342342

343+
In the example below we are calling the embedding model once per every item that we want to embed. When working with large embedding projects you can alternatively pass the model an array of inputs to embed rather than one input at a time. When you pass the model an array of inputs the max number of input items per call to the embedding endpoint is 2048.
344+
343345
# [OpenAI Python 0.28.1](#tab/python)
344346

345347
```python

articles/ai-services/openai/quotas-limits.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom:
1010
- ignite-2023
1111
- references_regions
1212
ms.topic: conceptual
13-
ms.date: 01/12/2024
13+
ms.date: 01/16/2024
1414
ms.author: mbullwin
1515
---
1616

@@ -37,8 +37,14 @@ The following sections provide you with a quick guide to the default quotas and
3737
| Max training job time (job will fail if exceeded) | 720 hours |
3838
| Max training job size (tokens in training file) x (# of epochs) | 2 Billion |
3939
| Max size of all files per upload (Azure OpenAI on your data) | 16 MB |
40+
| Max number or inputs in array with `/embeddings` | 2048 |
41+
| Max number of `/chat/completions` messages | 2048 |
42+
| Max number of `/chat/completions` functions | 128 |
43+
| Max number of `/chat completions` tools | 128 |
4044
| Maximum number of Provisioned throughput units per deployment | 100,000 |
4145

46+
47+
4248
## Regional quota limits
4349

4450
The default quota for models varies by model and region. Default quota limits are subject to change.

articles/ai-services/translator/index.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
manager: nitinme
1212
ms.service: azure-ai-translator
1313
ms.topic: landing-page
14-
ms.date: 12/17/2022
14+
ms.date: 01/16/2024
1515
ms.author: lajanuar
1616

1717

@@ -20,11 +20,11 @@ metadata:
2020

2121
landingContent:
2222
# Card 1
23-
- title: About Translator Service
23+
- title: About Azure AI Translator Service
2424
linkLists:
2525
- linkListType: overview
2626
links:
27-
- text: What is Translator Service?
27+
- text: What is Azure AI Translator Service?
2828
url: translator-overview.md
2929
- text: Language support
3030
url: language-support.md
@@ -34,7 +34,7 @@ landingContent:
3434
url: https://www.microsoft.com/translator/faq.aspx
3535
- linkListType: whats-new
3636
links:
37-
- text: What's new in Translator Service?
37+
- text: What's new in Azure AI Translator Service?
3838
url: whats-new.md
3939

4040
# Card 2

0 commit comments

Comments
 (0)