Implement information extraction solutions1 / 5
You must ingest mixed PDFs that contain both narrative text and embedded charts/diagrams into an Azure AI Search index for multimodal RAG. You want a single skill that analyzes layout, produces Markdown that preserves section structure, and extracts images with location metadata so chunks stay near their related figures. Which built-in skill should you use?
CorrectIncorrect
Alex
The Document Layout skill in Azure AI Search calls the Azure Document Intelligence layout model to detect document structure and emit a syntactical representation in Markdown or text. Its markdownHeaderDepth setting controls section nesting, and when configured for text output with image extraction it returns normalized_images plus locationMetadata that preserves each image's position in the document. Keeping images near their related content is valuable for RAG and multimodal search. The OCR skill, by contrast, only extracts text from images and does not produce structured Markdown sections; the Image Analysis skill describes image content but does not chunk a document by layout. Exam tip: 'structure-aware Markdown plus image location metadata for multimodal RAG' points to the Document Layout skill, not plain OCR.
Sourcelearn.microsoft.com
Follow-up answers are available in the app. Create a free account — no credit card required.
Question 1 of 5
Create a free account