You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-services/computer-vision/includes/how-to-guides/analyze-image-40-rest.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ To authenticate against the Image Analysis service, you need a Computer Vision k
25
25
The SDK example assumes that you defined the environment variables `VISION_KEY` and `VISION_ENDPOINT` with your key and endpoint.
26
26
27
27
28
-
Authentication is done by adding the HTTP request header **Ocp-Apim-Subscription-Key** and setting it to your vision key. The call is made to the URL `https://<endpoint>/computervision/imageanalysis:analyze&api-version=2023-10-01`, where `<endpoint>` is your unique computer vision endpoint URL. You add query strings based on your analysis options.
28
+
Authentication is done by adding the HTTP request header **Ocp-Apim-Subscription-Key** and setting it to your vision key. The call is made to the URL `https://<endpoint>/computervision/imageanalysis:analyze?api-version=2023-10-01`, where `<endpoint>` is your unique computer vision endpoint URL. You add query strings based on your analysis options.
Copy file name to clipboardExpand all lines: articles/ai-services/computer-vision/reference-video-search.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -334,6 +334,7 @@ Represents the create ingestion request model for the JSON document.
334
334
| moderation | boolean | Gets or sets the moderation flag, indicating if the content should be moderated. | No |
335
335
| generateInsightIntervals | boolean | Gets or sets the interval generation flag, indicating if insight intervals should be generated. | No |
336
336
| filterDefectedFrames | boolean | Frame filter flag indicating frames will be evaluated and all defected (e.g. blurry, lowlight, overexposure) frames will be filtered out. | No |
337
+
| includeSpeechTranscript | boolean | Gets or sets the transcript generation flag, indicating if transcript should be generated. | No |
Copy file name to clipboardExpand all lines: articles/ai-services/openai/how-to/gpt-with-vision.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -347,18 +347,18 @@ Every response includes a `"finish_details"` field. The subfield `"type"` has th
347
347
348
348
If `finish_details.type` is `stop`, then there is another `"stop"` property that specifies the token that caused the output to end.
349
349
350
-
## Low or high fidelity image understanding
350
+
## Detail parameter settings in image processing: Low, High, Auto
351
351
352
-
By controlling the _detail_ parameter, which has two options,`low`or `high`, you can control how the model processes the image and generates its textual understanding.
353
-
-`low`disables the "high res" mode. The model receives a low-res 512x512 version of the image and represents the image with a budget of 65 tokens. This allows the API to return faster responses and consume fewer input tokens for use cases that don't require high detail.
354
-
-`high`enables "high res" mode, which first allows the model to see the low res image and then creates detailed crops of input images as 512x512 squares based on the input image size. Each of the detailed crops uses twice the token budget (65 tokens) for a total of 129 tokens.
352
+
The detail parameter in the model offers three choices:`low`, `high`, or `auto`, to adjust the way the model interprets and processes images. The default setting is auto, where the model decides between low or high based on the size of the image input.
353
+
-`low`setting: the model does not activate the "high res" mode, instead processing a lower resolution 512x512 version of the image using 65 tokens, resulting in quicker responses and reduced token consumption for scenarios where fine detail isn't crucial.
354
+
-`high`setting activates "high res" mode. Here, the model initially views the low-resolution image and then generates detailed 512x512 segments from the input image. Each segment uses double the token budget, amounting to 129 tokens per segment, allowing for a more detailed interpretation of the image.
355
355
356
356
## Limitations
357
357
358
358
### Image support
359
359
360
360
-**Limitation on image enhancements per chat session**: Enhancements cannot be applied to multiple images within a single chat call.
361
-
-**Maximum input image size**: The maximum size for input images is restricted to 4 MB.
361
+
-**Maximum input image size**: The maximum size for input images is restricted to 20 MB.
362
362
-**Object grounding in enhancement API**: When the enhancement API is used for object grounding, and the model detects duplicates of an object, it will generate one bounding box and label for all the duplicates instead of separate ones for each.
363
363
-**Low resolution accuracy**: When images are analyzed using the "low resolution" setting, it allows for faster responses and uses fewer input tokens for certain use cases. However, this could impact the accuracy of object and text recognition within the image.
364
364
-**Image chat restriction**: When uploading images in the chat playground or the API, there is a limit of 10 images per chat call.
Copy file name to clipboardExpand all lines: articles/ai-studio/concepts/ai-resources.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,14 @@ ms.author: eur
18
18
19
19
In Azure, resources enable access to Azure services for individuals and teams. Access to many Azure AI capabilities is available via a unified resource called Azure AI.
20
20
21
-
An Azure AI resource can be used to access multiple Azure AI services. The Azure AI resource provides a hosted environment for teams to organize their [Azure AI project](#project-assets) work in, and is configurable with enterprise-grade security controls, which are passed down to each project environment. The Azure AI resource doesn't directly contain the keys and endpoints needed to authenticate your requests to Azure AI services. Instead, the Azure AI resource contains an [Azure AI services](#azure-ai-services-resource-keys) resource with keys and endpoints that you use to access Azure AI services.
21
+
The preview 'Azure AI' resource used in AI studio can be used to access multiple Azure AI services with a single setup. Previously, different Azure AI services including [Azure OpenAI](../../ai-services/openai/overview.md), [Azure Machine Learning](../../machine-learning/overview-what-is-azure-machine-learning.md), [Azure Speech](../../ai-services/speech-service/overview.md), required their individual setup.
22
22
23
-
In this article, you learn more about its capabilities, and how to set up Azure AI for your organization. You can see the resources that have created in the [Azure portal](https://portal.azure.com/) and in [Azure AI Studio](https://ai.azure.com).
23
+
The AI resource provides the working environment for a team to build and manage AI applications, catering to two persona:
24
+
25
+
* To AI developers, the Azure AI resource provides the working environment for building AI applications granting access to various tools for AI model building. Tools can be used together, and lets you use and produce shareable components including datasets, indexes, models. AI resources allows you to configure connections to external resources, provide compute resources used by tools and [endpoints and access keys to pre-built AI models](#azure-ai-services-resource-keys).
26
+
* To IT administrators and team leads, the Azure AI resource provides a single pane of glass on projects created by a team, audit connections that are in use to external resources, and additional governance controls to help meet cost and compliance requirements. Security settings are configured on the Azure AI resource, and once set up apply to all projects created under it, allowing administrators to enable developers to self-serve create projects to organize work.
27
+
28
+
In this article, you learn more about Azure AI resource's capabilities, and how to set up Azure AI for your organization. You can see the resources that have created in the [Azure portal](https://portal.azure.com/) and in [Azure AI Studio](https://ai.azure.com).
|Azure Arc Extension for Azure Data Studio<br/>`arc`<br/>`azcli`|<br/>1.8.0 ([Download](https://aka.ms/ads-arcdata-ext))</br>1.8.0 ([Download](https://aka.ms/ads-azcli-ext))|
Copy file name to clipboardExpand all lines: articles/azure-monitor/agents/azure-monitor-agent-migration-tools.md
+54-62Lines changed: 54 additions & 62 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ description: This article describes various migration tools and helpers availabl
4
4
ms.topic: conceptual
5
5
author: guywi-ms
6
6
ms.author: guywild
7
-
ms.reviewer: shseth
8
-
ms.date: 1/18/2023
7
+
ms.reviewer: jeffwo
8
+
ms.date: 12/12/2023
9
9
ms.custom:
10
10
# Customer intent: As an Azure account administrator, I want to use the available Azure Monitor tools to migrate from Log Analytics Agent to Azure Monitor Agent and track the status of the migration in my account.
11
11
---
@@ -42,75 +42,67 @@ Use the DCR Config Generator tool to parse Log Analytics Agent configuration fro
42
42
> [!NOTE]
43
43
> DCR Config Generator does not currently support additional configuration for [Azure solutions or services](./azure-monitor-agent-migration.md#migrate-additional-services-and-features) dependent on Log Analytics Agent.
44
44
45
-
### Prerequisites
46
-
To install DCR Config Generator, you need:
45
+
### Prerequisites\Setup
46
+
1.`Powershell version 7.1.3` or higher is recommended (minimum version 5.1)
47
+
2. Uses `Az Powershell module` to pull workspace agent configuration information [Az PowerShell module](https://learn.microsoft.com/powershell/azure/install-azps-windows?view=azps-11.0.0&tabs=powershell&pivots=windows-psgallery)
48
+
3. User will need Read/Write access to the specified workspace resource
49
+
4. Connect-AzAccount and Select-AzSubscription will be used to set the context for the script to run so proper Azure credentials will be needed
47
50
48
-
1. PowerShell version 5.1 or higher. We recommend using PowerShell version 7.1.3 or higher.
49
-
1. Read access for the specified workspace resources.
50
-
1. The `Az Powershell` module to pull workspace agent configuration information. Make sure `Az.Accounts` and `Az.OperationalInsights` modules are installed.
51
-
1. The Azure credentials for running `Connect-AzAccount` and `Select-AzContext`, which set the context for the script to run.
52
-
53
-
To install DCR Config Generator:
51
+
### To install DCR Config Generator:
54
52
55
53
1.[Download the PowerShell script](https://github.com/microsoft/AzureMonitorCommunity/tree/master/Azure%20Services/Azure%20Monitor/Agents/Migration%20Tools/DCR%20Config%20Generator).
56
-
57
-
1. Run the script:
58
-
59
-
Option 1: Outputs **ready-to-deploy ARM template files** only, which creates the generated DCR in the specified subscription and resource group, when deployed.
Option 2: Outputs **ready-to-deploy ARM template files** and **the DCR JSON files** separately for you to deploy via other means. You need to set the `GetDcrPayload` parameter.
| `SubscriptionId` | Yes | ID of the subscription that contains the target workspace. |
75
-
| `ResourceGroupName` | Yes | Resource group that contains the target workspace. |
76
-
| `WorkspaceName` | Yes | Name of the target workspace. |
77
-
| `DCRName` | Yes | Name of the new DCR. |
78
-
| `Location` | Yes | Region location for the new DCR. |
79
-
| `GetDcrPayload` | No | When set, it generates additional DCR JSON files
80
-
| `FolderPath` | No | Path in which to save the ARM template files and JSON files (optional). By default, Azure Monitor uses the current directory. |
81
-
82
-
1. Review the output ARM template files. The script can produce two types of ARM template files, depending on the agent configuration in the target workspace:
83
-
84
-
- Windows ARM template and parameter files - if the target workspace contains Windows performance counters or Windows events.
85
-
- Linux ARM template and parameter files - if the target workspace contains Linux performance counters or Linux Syslog events.
86
-
87
-
If the Log Analytics workspace wasn't [configured to collect data](./log-analytics-agent.md#data-collected) from connected agents, the generated files will be empty. This is a scenario in which the agent was connected to a Log Analytics workspace, but wasn't configured to send any data from the host machine.
88
-
89
-
1. Deploy the generated ARM templates:
90
-
91
-
92
-
### [Portal](#tab/portal-1)
93
-
1. In the portal's search box, type in *template* and then select **Deploy a custom template**.
54
+
1. Run the script using the sample parameters below:
| `SubscriptionId` | YES | This is the subscription ID of the workspace |
64
+
| `ResourceGroupName` | YES | This is the resource Group of the workspace |
65
+
| `WorkspaceName` | YES | This is the name of the workspace (Azure resource IDs are case insensitive) |
66
+
| `DCRName` | YES | The base name that will be used for each one the outputs DCRs |
67
+
| `OutputFolder` | NO | The output folder path. If not provided, the working directory path is used |
68
+
69
+
3. Outputs:
70
+
71
+
For each supported `DCR type`, the script produces a DCR ARM template (ready to be deployed) and a DCR payload (for users that don't need the ARM template). This is the list of currently supported DCR types:
72
+
- **Windows** contains `WindowsPerfCounters` and `WindowsEventLogs` data sources only
73
+
- **Linux** contains `LinuxPerfCounters` and `Syslog` data sources only
74
+
- **Custom Logs** contains `logFiles` data sources only:
75
+
- Each custom log gets its own DCR ARM template
76
+
- **IIS Logs** contains `iisLogs` data sources only
77
+
- **Extensions** contains `extensions` data sources only along with any associated perfCounters data sources
78
+
- `VMInsights`
79
+
- If you would like to add support for a new extension type, please reach out to us.
80
+
81
+
82
+
4.**Deploy the generated ARM templates:**
83
+
84
+
Portal
85
+
86
+
- In the portal's search box, type in *template* and then select **Deploy a custom template**.
94
87
95
88
:::image type="content" source="../logs/media/tutorial-workspace-transformations-api/deploy-custom-template.png" lightbox="../logs/media/tutorial-workspace-transformations-api/deploy-custom-template.png" alt-text="Screenshot of the Deploy custom template screen.":::
96
89
97
-
1. Select **Build your own template in the editor**.
90
+
- Select **Build your own template in the editor**.
98
91
99
92
:::image type="content" source="../logs/media/tutorial-workspace-transformations-api/build-custom-template.png" lightbox="../logs/media/tutorial-workspace-transformations-api/build-custom-template.png" alt-text="Screenshot of the template editor.":::
100
93
101
-
1. Paste the generated template into the editor and select **Save**.
102
-
1. On the **Custom deployment** screen, specify a **Subscription**, **Resource group**, and **Region**.
0 commit comments