Skip to content

Commit aae7bee

Browse files
authored
Merge pull request #264167 from MicrosoftDocs/main
1/25 11:00 AM IST Publish
2 parents 6519e10 + 5456dbd commit aae7bee

File tree

57 files changed

+281
-378
lines changed

Some content is hidden

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

57 files changed

+281
-378
lines changed

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ Follow these steps to set up a video retrieval system and integrate it with your
311311
{
312312
"type": "AzureComputerVisionVideoIndex",
313313
"parameters": {
314-
"computerVisionBaseUrl": "<your_computer_vision_endpoint>",
314+
"endpoint": "<your_computer_vision_endpoint>",
315315
"computerVisionApiKey": "<your_computer_vision_key>",
316316
"indexName": "<name_of_your_index>",
317317
"videoUrls": ["<your_video_SAS_URL>"]
@@ -328,12 +328,7 @@ Follow these steps to set up a video retrieval system and integrate it with your
328328
{
329329
"type": "text",
330330
"text": "Describe this video:"
331-
}
332-
]
333-
},
334-
{
335-
"role": "user",
336-
"content": [
331+
},
337332
{
338333
"type": "acv_document_id",
339334
"acv_document_id": "<your_video_ID>"

articles/ai-services/openai/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ POST https://{your-resource-name}.openai.azure.com/openai/deployments/{deploymen
7777
| ```logprobs``` | integer | Optional | null | Include the log probabilities on the logprobs most likely tokens, as well the chosen tokens. For example, if logprobs is 10, the API will return a list of the 10 most likely tokens. the API will always return the logprob of the sampled token, so there might be up to logprobs+1 elements in the response. This parameter cannot be used with `gpt-35-turbo`. |
7878
| ```suffix```| string | Optional | null | The suffix that comes after a completion of inserted text. |
7979
| ```echo``` | boolean | Optional | False | Echo back the prompt in addition to the completion. This parameter cannot be used with `gpt-35-turbo`. |
80-
| ```stop``` | string or array | Optional | null | Up to four sequences where the API will stop generating further tokens. The returned text won't contain the stop sequence. |
80+
| ```stop``` | string or array | Optional | null | Up to four sequences where the API will stop generating further tokens. The returned text won't contain the stop sequence. For GPT-4 Turbo with Vision, up to two sequences are supported. |
8181
| ```presence_penalty``` | number | Optional | 0 | Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics. |
8282
| ```frequency_penalty``` | number | Optional | 0 | Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. |
8383
| ```best_of``` | integer | Optional | 1 | Generates best_of completions server-side and returns the "best" (the one with the lowest log probability per token). Results can't be streamed. When used with n, best_of controls the number of candidate completions and n specifies how many to return – best_of must be greater than n. Note: Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for max_tokens and stop. This parameter cannot be used with `gpt-35-turbo`. |

articles/aks/howto-deploy-java-liberty-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.author: edburns
77
ms.topic: how-to
88
ms.date: 12/21/2022
99
keywords: java, jakartaee, javaee, microprofile, open-liberty, websphere-liberty, aks, kubernetes
10-
ms.custom: devx-track-java, devx-track-javaee, devx-track-javaee-liberty, devx-track-javaee-liberty-aks, build-2023, devx-track-extended-java, devx-track-azurecli, linux-related-content
10+
ms.custom: devx-track-java, devx-track-javaee, devx-track-javaee-liberty, devx-track-javaee-liberty-aks, devx-track-javaee-websphere, build-2023, devx-track-extended-java, devx-track-azurecli, linux-related-content
1111
---
1212

1313
# Deploy a Java application with Open Liberty or WebSphere Liberty on an Azure Kubernetes Service (AKS) cluster

articles/aks/howto-deploy-java-quarkus-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: edburns
66
ms.service: azure-kubernetes-service
77
ms.topic: how-to
88
ms.date: 07/26/2023
9-
ms.custom: devx-track-java, devx-track-javaee, devx-track-javaee-quarkus-aks, devx-track-extended-java, devx-track-azurecli
9+
ms.custom: devx-track-java, devx-track-javaee, devx-track-javaee-quarkus, devx-track-javaee-quarkus-aks, devx-track-extended-java, devx-track-azurecli
1010
# external contributor: danieloh30
1111
---
1212

articles/azure-arc/resource-bridge/overview.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -98,25 +98,22 @@ In order to use Arc resource bridge in a region, Arc resource bridge and the Arc
9898

9999
Arc resource bridge supports the following Azure regions:
100100

101-
- * East US
102101
- East US
103102
- East US 2
104-
* West US 2
105-
* West US 3
103+
- West US 2
104+
- West US 3
106105
- Central US
107106
- North Central US
108-
109-
* South Central US
110-
* West Europe
111-
* North Europe
112-
* UK South
113-
* UK West
114-
* Sweden Central
115-
- * Canada Central
107+
- South Central US
108+
- Canada Central
116109
- Australia East
110+
- West Europe
111+
- North Europe
112+
- UK South
113+
- UK West
114+
- Sweden Central
117115
- Japan East
118-
119-
* Southeast Asia
116+
- Southeast Asia
120117
- East Asia
121118
- Central India
122119

articles/azure-functions/functions-create-first-quarkus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: azure-functions
77
ms.topic: quickstart
88
ms.date: 01/10/2023
99
ms.devlang: java
10-
ms.custom: devx-track-java, devx-track-javaee, devx-track-javaee-quarkus-functions, devx-track-javaee-quarkus-functions, devx-track-extended-java
10+
ms.custom: devx-track-java, devx-track-javaee, devx-track-javaee-quarkus, devx-track-javaee-quarkus-functions, devx-track-extended-java
1111
---
1212

1313
# Deploy serverless Java apps with Quarkus on Azure Functions

articles/azure-monitor/agents/agent-linux.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ ms.topic: conceptual
55
ms.custom: linux-related-content
66
ms.date: 06/01/2023
77
ms.reviewer: JeffWo
8+
ms.author: JeffWo
89
---
910

1011
# Install the Log Analytics agent on Linux computers

articles/azure-monitor/agents/azure-monitor-agent-migration.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,15 @@ The following features and services now have an Azure Monitor Agent version (som
9494
9595
| Service or feature | Migration recommendation | Current state | More information |
9696
| :--- | :--- | :--- | :--- |
97-
| [VM insights, Service Map, and Dependency agent](../vm/vminsights-overview.md) | Migrate to Azure Monitor Agent | Generally available | [Enable VM Insights](../vm/vminsights-enable-overview.md) |
97+
| [VM insights, Service Map, and Dependency agent](../vm/vminsights-overview.md) | Migrate to Azure Monitor Agent | Generally Available | [Enable VM Insights](../vm/vminsights-enable-overview.md) |
9898
| [Container insights](../containers/container-insights-overview.md) | Migrate to Azure Monitor Agent | **Linux**: Generally available<br>**Windows**:Public preview | [Enable Container Insights](../containers/container-insights-onboard.md) |
99-
| [Microsoft Sentinel](../../sentinel/overview.md) | Migrate to Azure Monitor Agent | Public preview | See [AMA migration for Microsoft Sentinel](../../sentinel/ama-migrate.md). |
100-
| [Change Tracking and Inventory](../../automation/change-tracking/overview-monitoring-agent.md) | Migrate to Azure Monitor Agent | Generally available | [Migration guidance from Change Tracking and inventory using Log Analytics to Change Tracking and inventory using Azure Monitoring Agent version](../../automation/change-tracking/guidance-migration-log-analytics-monitoring-agent.md) |
101-
| [Network Watcher](../../network-watcher/network-watcher-monitoring-overview.md) | Migrate to new service called Connection Monitor with Azure Monitor Agent | Generally available | [Monitor network connectivity using Azure Monitor agent with connection monitor](../../network-watcher/azure-monitor-agent-with-connection-monitor.md) |
102-
| Azure Stack HCI Insights | Migrate to Azure Monitor Agent | Generally available| [Monitor Azure Stack HCI with Insights](/azure-stack/hci/manage/monitor-hci-single) |
103-
| [Azure Virtual Desktop (AVD) Insights](../../virtual-desktop/insights.md) | Migrate to Azure Monitor Agent |Generally available | [Use Azure Virtual Desktop Insights to monitor your deployment](../../virtual-desktop/insights.md#session-host-data-settings) |
99+
| [Microsoft Sentinel](../../sentinel/overview.md) | Migrate to Azure Monitor Agent | Public Preview | See [AMA migration for Microsoft Sentinel](../../sentinel/ama-migrate.md). |
100+
| [Change Tracking and Inventory](../../automation/change-tracking/overview-monitoring-agent.md) | Migrate to Azure Monitor Agent | Generally Available | [Migration guidance from Change Tracking and inventory using Log Analytics to Change Tracking and inventory using Azure Monitoring Agent version](../../automation/change-tracking/guidance-migration-log-analytics-monitoring-agent.md) |
101+
| [Network Watcher](../../network-watcher/network-watcher-monitoring-overview.md) | Migrate to new service called Connection Monitor with Azure Monitor Agent | Generally Available | [Monitor network connectivity using Azure Monitor agent with connection monitor](../../network-watcher/azure-monitor-agent-with-connection-monitor.md) |
102+
| Azure Stack HCI Insights | Migrate to Azure Monitor Agent | Generally Available| [Monitor Azure Stack HCI with Insights](/azure-stack/hci/manage/monitor-hci-single) |
103+
| [Azure Virtual Desktop (AVD) Insights](../../virtual-desktop/insights.md) | Migrate to Azure Monitor Agent |Generally Available | [Use Azure Virtual Desktop Insights to monitor your deployment](../../virtual-desktop/insights.md#session-host-data-settings) |
104104
| [Container Monitoring Solution](../containers/containers.md) | Migrate to new service called Container Insights with Azure Monitor Agent | Generally Available | [Enable Container Insights](../containers/container-insights-transition-solution.md) |
105+
| [DNS Collector](../../sentinel/connect-dns-ama.md) | Use new Sentenil Connector | Generally Available | [Enable DNS Connnector](../../sentinel/connect-dns-ama.md)|
105106
106107
> [!NOTE]
107108
> Features and services listed above in preview **may not be available in Azure Government and China clouds**. They will be available typically within a month *after* the features/services become generally available.

articles/azure-vmware/concepts-vulnerability-management.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Concepts - How AVS Addresses Vulnerabilities in the Infrastructure
33
description: The process that AVS follows to address security vulnerabilities.
44
ms.topic: conceptual
55
ms.service: azure-vmware
6-
ms.date: 01/18/2024
6+
ms.date: 01/24/2024
77
ms.custom: engagement-fy24
88
---
99

@@ -22,7 +22,9 @@ AVS takes a defense in depth approach to vulnerability and risk management. We f
2222
- Details within the signal are adjudicated and assigned a CVSS score and risk rating according to compensating controls within the service.
2323
- The risk rating is used against internal bug bars, internal policies and regulations to establish a timeline for implementing a fix.
2424
- Internal engineering teams partner with appropriate parties to qualify and roll out any fixes, patches and other configuration updates necessary.
25-
- Communications are drafted and published according to the risk rating assigned.
25+
- Communications are drafted and published according to the risk rating assigned.
26+
>[!tip]
27+
>Communications are surfaced through [Azure Service Health Portal](/azure/service-health/service-health-portal-update), [Known Issues](/azure/azure-vmware/azure-vmware-solution-known-issues) and Email.
2628
2729
### Subset of regulations governing vulnerability and risk management
2830

articles/communication-services/concepts/known-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Firefox desktop browser support is now available in public preview. Known issues
3636

3737
### iOS Chrome Known Issues
3838
iOS Chrome browser support is now available in public preview. Known issues are:
39-
- No outgoing and incoming audio when switching browser to background or locking the device
39+
- No outgoing and incoming audio when switching browser to background or locking the device. This issue has been fixed in iOS version 16.4+.
4040
- No incoming/outgoing audio coming from bluetooth headset. When a user connects bluetooth headset in the middle of Azure Communication Services call, the audio still comes out from the speaker until the user locks and unlocks the phone. We have seen this issue on older iOS versions (15.6, 15.7), and it isn't reproducible on iOS 16.
4141

4242
### iOS 16 introduced bugs when putting browser in the background during a call

0 commit comments

Comments
 (0)