Hello,
The Azure OpenAI Responses API currently appears to lack practical support for Office document formats such as .docx, .pptx, and .xlsx, and I need a clear answer on whether and when this will actually be supported.
I already understand that purpose="user_data" is not currently supported in Azure OpenAI. That is not my main issue here.
My issue is that the Azure OpenAI Responses documentation points users to OpenAI file input documentation that clearly lists .docx, .pptx, and .xlsx as supported file input formats:
From a developer perspective, this strongly implies that these file types should be usable with Azure OpenAI Responses as well, or at minimum that support is expected to be available on this API surface.
In practice, however, this does not work.
What I am seeing is:
- purpose="user_data" is not supported.
- Using purpose="assistants" as the workaround still does not make .docx, .pptx, and .xlsx usable in Azure OpenAI Responses.
- The API rejects Office file types when used as input to /responses.
{
"error": {
"message": "Invalid input: Expected context stuffing file type to be a supported format: .art, .bat, .brf, .c, .cls, .css, .diff, .eml, .es, .h, .hs, .htm, .html, .ics, .ifb, .java, .js, .json, .ksh, .ltx, .mail, .markdown, .md, .mht, .mhtml, .mjs, .nws, .patch, .pdf, .pl, .pm, .pot, .py, .rst, .scala, .sh, .shtml, .srt, .sty, .svg, .svgz, .tex, .text, .txt, .vcf, .vtt, .xml, .yaml, .yml but got .pptx.",
"type": "invalid_request_error",
"param": "input",
"code": null
}
}
This is the core problem:
Even if I accept the current Azure limitation around user_data, there still seems to be no usable path at all to provide common Office files to Azure OpenAI Responses.
That is a major capability gap.
For real-world enterprise workloads, .docx, .pptx, and .xlsx are not edge cases. They are standard business document formats. Requiring every customer to build a separate preprocessing pipeline just to convert these documents before using the Responses API is not a reasonable substitute for native support.
I am therefore asking for a direct product answer, not just a documentation clarification:
- Is there currently any supported way at all to use .docx, .pptx, and .xlsx with Azure OpenAI Responses API?
- If the answer is no, can you explicitly confirm that Azure OpenAI Responses currently lacks support for these file types?
- Is native support for .docx, .pptx, and .xlsx planned for Azure OpenAI Responses?
- If it is planned, what is the expected timeline or roadmap status?
- If it is not planned, what is the recommended Azure-native product path for customers who need to use Office documents with modern Azure OpenAI model APIs?
To be clear: the main request here is that this feature be made available. The current state is not sufficient for common enterprise document workflows.
Thank you.