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: learn-pr/wwl-data-ai/analyze-content-ai/06-knowledge-check.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ quiz:
17
17
choices:
18
18
- content: "Chatbots that automatically translate between multiple spoken and written languages."
19
19
isCorrect: false
20
-
explanation: "Incorrect. Azure AI Content Understanding is not designed to build translation chatbots."
20
+
explanation: "Incorrect. Azure AI Content Understanding isn't designed to build translation chatbots."
21
21
- content: "Analyzers that extract information from documents, images, videos, and audio files."
22
22
isCorrect: true
23
23
explanation: "Correct. Azure AI Content Understanding is designed to build content analyzers."
@@ -28,10 +28,10 @@ quiz:
28
28
choices:
29
29
- content: "Microsoft Visual Studio."
30
30
isCorrect: false
31
-
explanation: "Incorrect. While you could use the REST API from Visual Studio to create a Content Understanding analyzer, it is not the best tool for creating a project."
31
+
explanation: "Incorrect. While you could use the REST API from Visual Studio to create a Content Understanding analyzer, it isn't the best tool for creating a project."
32
32
- content: "Azure Machine Learning studio."
33
33
isCorrect: false
34
-
explanation: "Incorrect. Azure Machine learning studio is not a tool for working with Content Udnerstanding projects."
34
+
explanation: "Incorrect. Azure Machine Learning studio isn't a tool for working with Content Understanding projects."
35
35
- content: "Azure AI Foundry portal."
36
36
isCorrect: true
37
37
explanation: "Correct. Azure AI Foundry portal provides a visual interface for creating Content Understanding projects."
@@ -42,8 +42,8 @@ quiz:
42
42
explanation: "Correct. A schema is used to define the information your analyzer will extract."
43
43
- content: "An index."
44
44
isCorrect: false
45
-
explanation: "Incorrect. You do not need to create an index for a Content Understanding analyzer."
45
+
explanation: "Incorrect. You don't need to create an index for a Content Understanding analyzer."
46
46
- content: "A cluster."
47
47
isCorrect: false
48
-
explanation: "Incorrect. You do not need to create a cluster to use Content Understanding."
48
+
explanation: "Incorrect. You don't need to create a cluster to use Content Understanding."
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/analyze-content-ai/includes/04-use-api.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ To use the REST API, your client application submits HTTP calls to the Content U
6
6
7
7
## Using the REST API to analyze content
8
8
9
-
One of the most common uses of the REST API is to submit content to an existing analyzer that you have previously built, and retrieve the results of analysis. The analysis request returns an operation ID value that represents an asynchronous task. Your client application must then use the GET request to pass the operation ID back to the endpoint and retrieve the operation status - potentially polling multiple times until the operation is complete and the results are returned in JSON format.
9
+
One of the most common uses of the REST API is to submit content to an existing analyzer that you have previously built, and retrieve the results of analysis. The analysis request returns an operation ID value that represents an asynchronous task. Your client application must then use another request to pass the operation ID back to the endpoint and retrieve the operation status - potentially polling multiple times until the operation is complete and the results are returned in JSON format.
10
10
11
-
For example, to analyze a document, a client application might submit a POST request to the **Analyze** operation containing the following JSON body:
11
+
For example, to analyze a document, a client application might submit a POST request to the `analyze` function containing the following JSON body:
12
12
13
13
```json
14
14
POST {endpoint}/contentunderstanding/analyzers/{analyzer}:analyze?api-version={api version}
Your client application must then use the operation ID that has been returned to check the status of the operation until it has succeeded (or failed) by submitting a GET request to the **Get Analysis Results** operation.
34
+
Your client application must then use the operation ID that has been returned to check the status of the operation until it has succeeded (or failed) by submitting a GET request to the `results` function.
35
35
36
36
```http
37
37
GET {endpoint}/contentunderstanding/analyzers/{analyzer}/results/1234abcd-1234-abcd-1234-abcd1234abcd?api-version={api version}
38
38
```
39
39
40
-
When the operation has completed successfully, the response to the GET request contains a JSON payload representing the results of the analysis. The specific results depend on the content and schema.
40
+
When the operation has completed successfully, the response contains a JSON payload representing the results of the analysis. The specific results depend on the content and schema.
41
41
42
42
> [!NOTE]
43
43
> For more information about the Content Understanding REST API, see the **[reference documentation](/rest/api/contentunderstanding/operation-groups)**.
0 commit comments