An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
I am currently testing the Azure OpenAI Responses API based on the recommendation to upload files first and reference them using file_id, with the file upload purpose set to assistants.
This approach works correctly when the uploaded file is a PDF. However, when I upload other file types (such as DOCX, XLSX, etc.) and reference their file_id in the request, the API consistently returns the following error:
{
"error": {
"message": "The file type you uploaded is not supported. Please try again with a pdf",
"type": "invalid_request_error",
"param": "input",
"code": "unsupported_file"
}
It appears that Azure OpenAI currently only supports PDF files for input_file usage in the Responses.
I would appreciate clarification on the following points:
- Is PDF currently the only supported file type for
input_filein Azure OpenAI Responses? - Are there any plans or timelines to support additional formats such as Word or Excel?
- Is there a recommended workaround for handling non-PDF documents?
Any clarification or official documentation reference would be appreciated.