Exam AI-103 Topic 1 Question 69 Discussion
Actual exam question for Microsoft's AI-103 exam
Question #: 69
Topic #: 1
Question #: 69
Topic #: 1
You have a Microsoft Foundry project that contains an agent.
The knowledge source for the agent is a set of scanned PDF troubleshooting guides stored in Azure Blob Storage. The guide pages contain two-column layouts and tables.
You use Azure Content Understanding in Foundry Tools to process the PDFs.
You plan to ingest the processed content into an index for Retrieval Augmented Generation (RAG) and store extracted fields for downstream automation.
Stakeholders must be able to verify where each extracted field value came from in the original PDF and route low-reliability extractions for manual review.
You need to ensure that the Content Understanding document analyzer output includes a per- field confidence score and source grounding to locations within the source document.
What should you do?
The knowledge source for the agent is a set of scanned PDF troubleshooting guides stored in Azure Blob Storage. The guide pages contain two-column layouts and tables.
You use Azure Content Understanding in Foundry Tools to process the PDFs.
You plan to ingest the processed content into an index for Retrieval Augmented Generation (RAG) and store extracted fields for downstream automation.
Stakeholders must be able to verify where each extracted field value came from in the original PDF and route low-reliability extractions for manual review.
You need to ensure that the Content Understanding document analyzer output includes a per- field confidence score and source grounding to locations within the source document.
What should you do?
Suggested Answer: C Vote an answer
To fulfill all your requirements using Azure Content Understanding in Foundry Tools, you need to configure a custom document analyzer with specific flags, set up an index ingestion pipeline, and build a downstream human-in-the-loop validation rule.
*-> 1. Enable Confidence Scores and Source Grounding
To force the analyzer to provide per-field confidence metrics and precise layout/bounding box coordinates for verification, you must opt-in to the estimate FieldSourceAndConfidence parameter within your configuration.
Option A (Global): Set estimateFieldSourceAndConfidence = true in the main analyzer config to evaluate all fields.
Option B (Field-Level): Set estimateSourceAndConfidence = true under individual field schemas.This ensures the generated JSON response populates the bounding box coordinates, page numbers, and a confidence score 0.0 to 1.0 for every extracted entity.
2. Configure Document Extraction for Two-Column & Table Layouts
3. Build the Ingestion Pipeline (RAG vs. Automation Dual-Path)
4. Implement Threshold Routing and Source Verification
Reference:
https://learn.microsoft.com/en-us/azure/ai-services/content-understanding/document/overview
*-> 1. Enable Confidence Scores and Source Grounding
To force the analyzer to provide per-field confidence metrics and precise layout/bounding box coordinates for verification, you must opt-in to the estimate FieldSourceAndConfidence parameter within your configuration.
Option A (Global): Set estimateFieldSourceAndConfidence = true in the main analyzer config to evaluate all fields.
Option B (Field-Level): Set estimateSourceAndConfidence = true under individual field schemas.This ensures the generated JSON response populates the bounding box coordinates, page numbers, and a confidence score 0.0 to 1.0 for every extracted entity.
2. Configure Document Extraction for Two-Column & Table Layouts
3. Build the Ingestion Pipeline (RAG vs. Automation Dual-Path)
4. Implement Threshold Routing and Source Verification
Reference:
https://learn.microsoft.com/en-us/azure/ai-services/content-understanding/document/overview
by Carter at Aug 25, 2026, 01:12 AM
0
0
0
10
Comments
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).