Skip to content

Commit 8caaa0e

Browse files
committed
UAT edits
1 parent 3e98638 commit 8caaa0e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

articles/ai-services/content-understanding/quickstart/use-ai-foundry.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This quickstart shows you how to use the Content Understanding service in the [*
1818

1919
Suppose you have files—such as documents, images, audio, or video—and you want to automatically extract key information from them. With Content Understanding, you can create a task to organize your data processing, define a field schema that specifies the information to extract or generate, and then build an analyzer. The analyzer becomes an API endpoint that you can integrate into your applications or workflows.
2020

21-
In this guide, we walk you through building and testing an analyzer for your scenario. You can start from scratch or use suggested templates for common use cases.
21+
In this guide, you build and test an analyzer for your scenario. You can start from scratch or use suggested templates for common use cases.
2222

2323
:::image type="content" source="../media/overview/component-overview-updated.png" alt-text="Screenshot of Content Understanding overview, process, and workflow." lightbox="../media/overview/component-overview-updated.png" :::
2424

@@ -28,7 +28,7 @@ To get started, make sure you have the following resources and permissions:
2828

2929
* An Azure subscription. If you don't have an Azure subscription, [create a free account](https://azure.microsoft.com/free/).
3030

31-
* An [Azure AI Foundry hub-based project](../../../ai-foundry/how-to/create-projects.md) created in one of the following [supported regions](../service-limits.md): `westus`, `swedencentral`, or `australiaeast`. A project is used to organize your work and save state while building customized AI apps. You can create a project from the [home page of AI Foundry](https://aka.ms/foundry-home-page), or the [Content Understanding landing page](https://aka.ms/cu-landing).
31+
* An [Azure AI Foundry hub-based project](../../../ai-foundry/how-to/create-projects.md) created in one of the following [supported regions](../service-limits.md): `westus`, `swedencentral`, or `australiaeast`. Use a project to organize your work and save state while building customized AI apps. You can create a project from the [home page of AI Foundry](https://aka.ms/foundry-home-page), or the [Content Understanding landing page](https://aka.ms/cu-landing).
3232

3333
[!INCLUDE [hub based project required](../../../ai-foundry/includes/uses-hub-only.md)]
3434

@@ -40,15 +40,15 @@ Follow these steps to create a custom task in the Azure AI Foundry. This task is
4040
1. Select your hub based project. You might need to select **View all resources** to see your project.
4141
1. Select **Content Understanding** from the left navigation pane.
4242
1. Select **+ Create**.
43-
2. In this guide, you create a `Single-file task` utilizing Content Understanding Standard mode, but if you're interested in creating a multi-file task utilizing Pro mode, refer to [Create an Azure AI Content Understanding multi-file task in the Azure AI Foundry portal](./use-ai-foundry-pro-mode.md). For more information on which mode is right for your scenario, check out [Azure AI Content Understanding pro and standard modes](../concepts/standard-pro-modes.md).
43+
1. In this guide, you create a `Single-file task` utilizing Content Understanding Standard mode, but if you're interested in creating a multi-file task utilizing Pro mode, refer to [Create an Azure AI Content Understanding multi-file task in the Azure AI Foundry portal](./use-ai-foundry-pro-mode.md). For more information on which mode is right for your scenario, check out [Azure AI Content Understanding pro and standard modes](../concepts/standard-pro-modes.md).
4444
1. Enter a name for your task. Optionally, enter a description and change other settings.
4545
1. Select **Create**.
4646

4747
## Create your first analyzer
4848

49-
Now that everything is configured to get started, we can walk through how to build your first analyzer.
49+
Now that everything is configured, you can build your first analyzer.
5050

51-
When you create a single-file Content Understanding task, you start by uploading a sample of your data and building your field schema. The schema is the customizable framework that allows the analyzer to extract insights from your data. In this example, the schema is created to extract key data from an invoice document, but you can bring in any type of data and the steps remain the same. For a complete list of supported file types, see [input file limits](../service-limits.md#input-file-limits).
51+
When you create a single-file Content Understanding task, you start by uploading a sample of your data and building your field schema. The schema is the customizable framework that allows the analyzer to extract insights from your data. In this example, you create the schema to extract key data from an invoice document, but you can bring in any type of data and the steps remain the same. For a complete list of supported file types, see [input file limits](../service-limits.md#input-file-limits).
5252

5353
1. Upload a [sample file of an invoice document](https://github.com/Azure-Samples/azure-ai-content-understanding-python/raw/refs/heads/main/data/invoice.pdf) or any other data relevant to your scenario.
5454

@@ -60,7 +60,7 @@ When you create a single-file Content Understanding task, you start by uploading
6060

6161
:::image type="content" source="../media/quickstarts/invioce-template.png" alt-text="Screenshot of analyzer templates.":::
6262

63-
1. Next, you can add fields to your schema to reflect all of the outputs you want to generate.
63+
1. Next, add fields to your schema to reflect all of the outputs you want to generate.
6464

6565
* Specify clear and simple field names. Some example fields might include **vendorName**, **items**, **price**.
6666

@@ -70,29 +70,29 @@ When you create a single-file Content Understanding task, you start by uploading
7070

7171
* Specify the method to generate the value for each field.
7272

73-
For best practices on how to define your field schema, refer to [best practices for Azure AI Content Understanding](../concepts//best-practices.md). It may take a few minutes to build out your schema.
73+
For best practices on how to define your field schema, refer to [best practices for Azure AI Content Understanding](../concepts//best-practices.md). It might take a few minutes to build out your schema.
7474

75-
1. Once you feel that the schema is ready to test, select **Save**. You can always come back and make changes if needed.
75+
1. When your schema is ready to test, select **Save**. You can always come back and make changes if needed.
7676

7777
:::image type="content" source="../media/quickstarts/define-invoice-schema.png" alt-text="Screenshot of completed schema.":::
7878

7979
1. With the completed schema, Content Understanding now generates the output on your sample data. At this step, you can add more data to test the analyzer's accuracy or make changes to the schema if needed.
8080

8181
:::image type="content" source="../media/quickstarts/test-invoice.png" alt-text="Screenshot of schema testing step.":::
8282

83-
1. Once you're satisfied with the quality of your output, select **Build analyzer**. This action creates an analyzer ID that you can integrate into your own applications, allowing you to call the analyzer from your code.
83+
1. When you're satisfied with the quality of your output, select **Build analyzer**. This action creates an analyzer ID that you can integrate into your own applications, allowing you to call the analyzer from your code.
8484

8585
:::image type="content" source="../media/quickstarts/build-invoice-analyzer.png" alt-text="Screenshot of built analyzer.":::
8686

87-
Now you successfully built your first Content Understanding analyzer, and are ready to start extracting insights from your data. Check out [Quickstart: Azure AI Content Understanding REST APIs](./use-rest-api.md) to utilize the REST API to call your analyzer.
87+
You've successfully built your first Content Understanding analyzer and are ready to start extracting insights from your data. Check out [Quickstart: Azure AI Content Understanding REST APIs](./use-rest-api.md) to utilize the REST API to call your analyzer.
8888

8989
## Sharing your project
9090

91-
In order to share and manage access to the project you created, navigate to the Management Center, found at the bottom of the navigation for your project:
91+
To share the project you created and manage access, go to the Management Center. You can find it at the bottom of the navigation pane for your project:
9292

9393
:::image type="content" source="../media/quickstarts/cu-landing-page.png" alt-text="Screenshot of where to find management center.":::
9494

95-
You can manage the users and their individual roles here:
95+
In the Management Center, you can manage users and assign individual roles:
9696

9797
:::image type="content" source="../media/quickstarts/management-center.png" alt-text="Screenshot of Project users section of management center.":::
9898

0 commit comments

Comments
 (0)