Hi @Francisco dos Santos,
Thank you for confirming the troubleshooting steps you've already taken and for providing the detailed information.
It does appear that the behavior you're encountering is not expected. Please try below steps:
Although the documentation suggests using image_url
, some OCR models deployed via Azure AI Studio may expect file inputs differently when working with Base64 content. Instead of image_url
, could you try sending the payload using the file
field directly with the raw Base64-encoded PDF? Some models treat image_url
strictly as a URL to an image hosted externally rather than Base64 content.
If supported in the model’s endpoint, sending the document as a direct file upload (using the file
field) may produce a valid output instead of using image_url
. This distinction sometimes causes silent failures without error messages.
Since this is a Mistral OCR model integrated through Azure AI Foundry or Azure AI Studio, model-specific guidance might differ slightly from standard public Mistral API behavior. I recommend reviewing any model-specific guidelines published in the Azure AI Model Catalog for Mistral OCR (if available).
To rule out any deployment-specific issue, I can suggest either redeploying the model or creating a new deployment instance and testing the same document. Sometimes initial deployments can encounter silent configuration issues.
Please let me know if you have further queries.
Thank you!