Formerly known as Azure AI Services or Azure Cognitive Services is a unified collection of prebuilt AI capabilities within the Microsoft Foundry platform
Hi Mr B,
Welcome to Microsoft Q&A and Thank you for reaching out.
It looks like you’ve run into an issue where the prebuilt-read model using the GA API version 2024-11-30 never transitions out of the "running" status in West Europe, even though the same document works fine with the older API version (2023-07-31).
From what we know about the Document Intelligence service, the 2024-11-30 API version is the General Availability (GA) release of the v4.0 REST API, which includes new features and improvements such as searchable PDF output and broader model support. Microsoft Learn
Please check the below steps:
Regional/Service Issues Sometimes specific regions have temporary service disruptions or delays in processing with new API versions. It’s possible that West Europe might be experiencing issues with this GA endpoint. Checking the Azure status page or service health in the Azure portal might help confirm if there’s an ongoing incident.
- Differences Between API Versions The older version (
2023-07-31) uses the legacy Form Recognizer endpoint structure and completes quickly. The newer2024-11-30endpoint has updated internal logic and could behave differently with respect to analysis time or status transitions especially in some regions.
Polling Behavior With the new API version, ensure your polling loop waits an appropriate interval between status checks. Frequent polling without delay can make it harder to observe correct status progression.
- Retry With Fallback As you’ve seen already, falling back to the older API version works reliably for this document. Until the new version’s behavior stabilizes in your region, using the older supported version may be a practical workaround.
Overall, it seems likely this is a service-side or regional behavior that isn’t specific to your document content especially given that the older API returns success quickly, but the new GA version stays "running" indefinitely.
Please let me know if there are any remaining questions or additional details, I can help with, I’ll be glad to provide further clarification or guidance.
Thankyou!