Azure Document Intelligence begin_analyze_document method error
I have the following Python code to extract text from a locally stored PDF file: # import libraries import os from azure.core.credentials import AzureKeyCredential from azure.ai.documentintelligence import DocumentIntelligenceClient from azure.ai.documentintelligence.models import AnalyzeResult from azure.ai.documentintelligence.models import AnalyzeDocumentRequest import base64 def analyze_layout():…