AI-102 · Question #93
You have receipts that are accessible from a URL. You need to extract data from the receipts by using Azure AI Document Intelligence and the SDK. The solution must use a prebuilt model. Which client a
The correct answer is C. the FormRecognizerClient client and the StartRecognizeReceiptsFromUri method. To analyze receipts from a URL, use the StartRecognizeReceiptsFromUri method private static async Task AnalyzeReceipt( FormRecognizerClient recognizerClient, string receiptUri) RecognizedFormCollection receipts = await recognizerClient.StartRecognizeReceiptsFromUri(new Uri(receip
Question
Options
- Athe FormRecognizerClient client and the StartRecognizeContentFromUri method
- Bthe FormTrainingClient client and the StartRecognizeContentFromUri method
- Cthe FormRecognizerClient client and the StartRecognizeReceiptsFromUri method
- Dthe FormTrainingClient client and the StartRecognizeReceiptsFromUri method
How the community answered
(33 responses)- A12% (4)
- B3% (1)
- C79% (26)
- D6% (2)
Explanation
To analyze receipts from a URL, use the StartRecognizeReceiptsFromUri method private static async Task AnalyzeReceipt( FormRecognizerClient recognizerClient, string receiptUri) RecognizedFormCollection receipts = await recognizerClient.StartRecognizeReceiptsFromUri(new Uri(receiptUrl)).WaitForCompletionAsync(); https://docs.microsoft.com/en-us/azure/applied-ai-services/form-recognizer/quickstarts/client-libra
Topics
Community Discussion
No community discussion yet for this question.