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/search/chat-completion-skill-example-usage.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,20 +22,20 @@ The GenAI Prompt skill (preview) generates a description of each image in your d
22
22
23
23
To work with image content in a skillset, you need:
24
24
25
-
+ A supported data source
26
-
+ Files or blobs containing images
27
-
+ Read access on the supported data source. This article uses key-based authentication, but indexers can also connect using the search service identity and Microsoft Entra ID authentication. For role-based access control, assign roles on the data source to allow read access by the service identity. If you're testing on a local development machine, make sure you also have read access on the supported data source.
28
-
+ A search indexer, configured for image actions
29
-
+ A skillset with the new custom genAI prompt skill
30
-
+ A search index with fields to receive the verbalized text output, plus output field mappings in the indexer that establish association
25
+
+ A [supported data source](search-indexer-overview.md#supported-data-sources). We recommend Azure Storage.
26
+
+ Files or blobs containing images.
27
+
+ Read access to the supported data source. This article uses key-based authentication, but indexers can also connect using the search service identity and Microsoft Entra ID authentication. For role-based access control, assign roles on the data source to allow read access by the service identity. If you're testing on a local development machine, make sure you also have read access on the supported data source.
28
+
+ A [search indexer](search-how-to-create-indexers.md), configured for image actions.
29
+
+ A skillset with the new custom genAI prompt skill.
30
+
+ A search index with fields to receive the verbalized text output, plus output field mappings in the indexer that establish association.
31
31
32
32
Optionally, you can define projections to accept image-analyzed output into a [knowledge store](knowledge-store-concept-intro.md) for data mining scenarios.
33
33
34
34
<aname="get-normalized-images"></a>
35
35
36
36
## Configure indexers for image processing
37
37
38
-
After the source files are set up, enable image normalization by setting the `imageAction` parameter in indexer configuration. Image normalization helps make images more uniform for downstream processing. Image normalization includes the following operations:
38
+
After the source files are set up, enable image normalization by setting the `imageAction` parameter in the indexer configuration. Image normalization helps make images more uniform for downstream processing. Image normalization includes the following operations:
39
39
40
40
+ Large images are resized to a maximum height and width to make them uniform.
41
41
+ For images that have metadata that specifies orientation, image rotation is adjusted for vertical loading.
Copy file name to clipboardExpand all lines: articles/search/cognitive-search-concept-image-scenarios.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
@@ -16,6 +16,7 @@ ms.custom:
16
16
17
17
Images often contain useful information that's relevant in search scenarios. You can [vectorize images](search-get-started-portal-image-search.md) to represent visual content in your search index. Or, you can use [AI enrichment and skillsets](cognitive-search-concept-intro.md) to create and extract searchable *text* from images, including:
18
18
19
+
+[GenAI Prompt](cognitive-search-skill-genai-prompt.md) to pass a prompt to a chat completion skill, requesting a description of image content.
19
20
+[OCR](cognitive-search-skill-ocr.md) for optical character recognition of text and digits
20
21
+[Image Analysis](cognitive-search-skill-image-analysis.md) that describes images through visual features
21
22
+[Custom skills](#passing-images-to-custom-skills) to invoke any external image processing that you want to provide
0 commit comments