You are developing an application that extracts fields from PDFs by using Azure Content Understanding in Foundry Tools.
You need to use the Python SDK to submit a PDF for analysis and retrieve the extraction results.
What should you do?
Azure Content Understanding analysis operations are long-running operations in the Python SDK. Microsoft's Python SDK documentation states that analysis operations return a poller, and the SDK provides LROPoller types that handle polling automatically when you call .result().
Therefore, the correct workflow is to submit the PDF by calling begin_analyze(), receive a poller, and then call:
result = poller.result()
Option B is incorrect because extraction results are not read from request headers. Option C is incorrect because the requirement is to use Azure Content Understanding extraction, not build a manual OCR-only mapping pipeline. Option D is incorrect because the SDK analysis pattern is asynchronous/long-running, not a simple synchronous analyze() call that returns all extracted fields in the same request.
Luisa
4 days agoClare
9 days agoPage
14 days agoMarge
20 days agoKina
25 days agoArthur
30 days agoKarma
1 month agoAn
1 month agoArt
2 months agoBlythe
2 months agoStephaine
2 months agoJesusa
2 months agoLatricia
2 months agoDierdre
2 months agoErick
4 months agoBeatriz
4 months agoWillard
4 months ago