Hello @Yonatan Mangisto , Thanks for using Microsoft Q&A Platform.
Yes, the Document Intelligence does support analyzing multiple pages with custom models. Try to check your pricing tier, for Free tier Max number of pages (Analysis) is 2.
Otherwise, using this AnalyzeResult.Pages Property you can set page range.
pages: "<pages>" like
pages = { "1-3", "5-6" }
.
Here is the sample code: https://learn.microsoft.com/en-us/dotnet/api/azure.ai.documentintelligence.documentintelligenceclient.analyzedocumentasync?view=azure-dotnet-preview
Operation<AnalyzeResult> operation = await client.AnalyzeDocumentAsync(WaitUntil.Completed, "<modelId>", analyzeRequest: analyzeRequest, pages: "<pages>", locale: "<locale>", stringIndexType: StringIndexType.TextElements, features: new DocumentAnalysisFeature[] { DocumentAnalysisFeature.OcrHighResolution }, queryFields: new string[] { "<queryFields>" }, outputContentFormat: ContentFormat.Text);
AnalyzeResult responseData = operation.Value;
I hope this helps.
Regards,
Vasavi
-Please kindly accept the answer and vote 'yes' if you feel helpful to support the community, thanks.