AI-102 • Practice Exam 54
Free AI-102 practice exam — 20 questions with explanations. Set 54. No signup required.
Refer to the exhibit. You have an Azure AI Search skillset with the custom skill shown. When you run the indexer, you notice that many documents fail with a timeout error. What is the most likely cause of the timeouts?
{
"properties": {
"description": "My custom skill",
"type": "Custom.WebApiSkill",
"context": "/document",
"inputs": [
{
"name": "text",
"source": "/document/content"
}
],
"outputs": [
{
"name": "entities",
"targetName": "entities"
}
],
"uri": "https://myfunctionapp.azurewebsites.net/api/extract-entities",
"httpMethod": "POST",
"timeout": "00:00:30",
"batchSize": 1,
"degreeOfParallelism": 10
}
}