Skip to content

Commit 3c39fc1

Browse files
authored
Merge pull request #284756 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 3d96be8 + ac4c7cf commit 3c39fc1

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

articles/ai-services/openai/includes/api-versions/latest-inference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Get a vector representation of a given input that can be easily consumed by mach
164164

165165
| Name | Type | Description | Required | Default |
166166
|------|------|-------------|----------|---------|
167-
| input | string or array | Input text to get embeddings for, encoded as a string. To get embeddings for multiple inputs in a single request, pass an array of strings. Each input must not exceed 2048 tokens in length.<br>Unless you're embedding code, we suggest replacing newlines (\n) in your input with a single space, as we have observed inferior results when newlines are present. | Yes | |
167+
| input | string or array | Input text to get embeddings for, encoded as a string. To get embeddings for multiple inputs in a single request, pass an array of strings. Each array must not exceed 2048 inputs in length.<br>Unless you're embedding code, we suggest replacing newlines (\n) in your input with a single space, as we have observed inferior results when newlines are present. | Yes | |
168168
| user | string | A unique identifier representing your end-user, which can help monitoring and detecting abuse. | No | |
169169
| input_type | string | input type of embedding search to use | No | |
170170
| encoding_format | string | The format to return the embeddings in. Can be either `float` or `base64`. Defaults to `float`. | No | |

articles/azure-resource-manager/bicep/bicep-config-linter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The following example shows the rules that are available for configuration.
116116
"maxAllowedAgeInDays": 730
117117
},
118118
"use-recent-module-versions": {
119-
"level": "warning",
119+
"level": "warning"
120120
},
121121
"use-resource-id-functions": {
122122
"level": "warning"

articles/azure-resource-manager/bicep/data-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ param emptyArray array = []
8383
param numberArray array = [1, 2, 3]
8484
8585
output foo bool = empty(emptyArray) || emptyArray[0] == 'bar'
86-
output bar bool = length(numberArray) >= 3 || numberArray[3] == 4
86+
output bar bool = length(numberArray) <= 3 || numberArray[3] == 4
8787
```
8888

8989
## Booleans

articles/openshift/delete-cluster.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,19 @@ In previous articles for [creating](create-cluster.md) and [connecting](connect-
3535

3636
```bash
3737
RESOURCEGROUP=yourresourcegroup
38+
CLUSTER=clustername
3839
```
3940

40-
Using this value, delete your cluster:
41+
Using these values, delete your cluster:
4142

4243
```azurecli
43-
az group delete --name $RESOURCEGROUP
44+
az aro delete --resource-group $RESOURCEGROUP --name $CLUSTER
4445
```
46+
You'll then be prompted to confirm if you are sure you want to perform this operation. After you confirm with `y`, it will take several minutes to delete the cluster. When the command finishes, the cluster will be deleted and all the managed objects.
4547

46-
You'll then be prompted to confirm if you are sure you want to perform this operation. After you confirm with `y`, it will take several minutes to delete the cluster. When the command finishes, the entire resource group and all resources inside it, including the cluster and the virtual network, will be deleted.
48+
> [!NOTE]
49+
> User-created objects such as virtual network and subnets must be manually deleted accordingly.
4750
4851
## Next steps
4952

50-
Learn more about using OpenShift with the official [Red Hat OpenShift documentation](https://docs.openshift.com/container-platform/4.6/welcome/index.html).
53+
Learn more about using OpenShift with the official [Red Hat OpenShift documentation](https://docs.openshift.com/container-platform/4.14/welcome/index.html).

articles/search/search-create-service-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ A second service isn't required for high availability. High availability for que
190190
Azure AI Search restricts the [number of search services](search-limits-quotas-capacity.md#subscription-limits) you can initially create in a subscription. If you exhaust your maximum limit, you can request more quota.
191191

192192
You must have Owner or Contributor permissions on the subscription to request quota.
193+
Depending on region and datacenter capacity, you can automatically request more quota to add services to your subscription. If the request fails, you should either decrease the number or file a support ticket. For an large increase in quota, such as more than 30 extra services, you should expect a one-month turnaround.
193194

194-
Maximum quota for a given tier and region combination is an extra 100 search services over the baseline quota (which means 106, 108, or 116 [depending on the tier](search-limits-quotas-capacity.md#subscription-limits)). For more than 100, file a support ticket. You can't increase quota for the Free tier.
195195

196196
1. Sign in to the Azure portal, search for "quotas" in your dashboard, and then select the **Quotas** service.
197197

0 commit comments

Comments
 (0)