
The code snippet shows a helper function provision_resource that provisions Azure Cognitive Services accounts by specifying:
Name (resource name)
Kind (the type of Cognitive Service, e.g., ComputerVision, FormRecognizer, etc.)
Location (Azure region, such as eastus)
SKU tier (pricing tier, e.g., F0 = free, S0 = standard)
Step 1 – Identify the serviceThe dropdown includes ComputerVision, CustomVision.Prediction, CustomVision.Training, and FormRecognizer.
The question context indicates a need to provision an Azure AI service resource, and the answer area highlights the FormRecognizer option. This aligns with document processing scenarios requiring Azure AI Document Intelligence (formerly Form Recognizer).
Step 2 – Select pricing tier and locationThe second dropdown shows combinations of pricing and regions:
"eastus", "S1"
"useast", "S1"
"S0", "eastus"
"S0", "useast"
Azure AI Form Recognizer (Document Intelligence) supports S0 (Standard) and F0 (Free) SKUs in common regions like East US. "S0", "eastus" is a valid and recommended configuration.
Other options like "S1" are not correct here, as Form Recognizer uses S0/F0, not S1.
Correct Answer:
Service Kind: FormRecognizer
Location and SKU: "S0", "eastus"
Azure AI Document Intelligence (Form Recognizer) documentation
Azure Cognitive Services resource creation parameters
Pricing tiers for Form Recognizer
Microsoft References