Formerly known as Azure AI Services or Azure Cognitive Services is a unified collection of prebuilt AI capabilities within the Microsoft Foundry platform
Hi Pavan,
The main concern is that the cost is high even though you are processing only a small number of documents. This usually happens because billing in Document Intelligence is not based on file size, but on how the service is used.
Let me explain this in a simple way.
Even if your documents are small, the cost depends on how many pages were processed, which model or feature was used, and how many times the documents were analyzed.
For example, when you submit a document for analysis, the service processes all pages by default. If the same document is processed multiple times during testing, development, or retries, the cost can increase quickly even with a small dataset.
Here are a few things you can check step by step:
First, check how many pages were processed Go to your Document Intelligence resource in Azure portal Open Monitoring and then Metrics Look at the Processed Pages metric to see the actual usage
Second, check which feature or model is generating cost Split the metrics by feature name Some models or features may have higher pricing than others, so this will help you identify the source
Third, check cost breakdown in Cost Management In Cost Analysis, group by Resource and Meter This helps you confirm whether the cost is only from Document Intelligence or if other Foundry resources are also contributing
Fourth, check if documents were processed multiple times If you ran tests, pipelines, or retries, the same document might have been analyzed many times This is one of the most common reasons for unexpected cost increase
Fifth, check custom model usage Training itself is free, but document analysis and layout processing used for labeling can still generate cost.
Based on your scenario, a daily cost around this range usually indicates repeated processing or additional usage behind the scenes rather than actual document size.
For better understanding, you can also refer to these official documents
https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/service-limits
https://learn.microsoft.com/en-us/azure/foundry/concepts/manage-costs
These will help you understand how pricing works and how to monitor and control cost.
If you can share details like which model you are using and how many times you are running analysis, it will be easier to identify the exact reason for the cost.
Thankyou!