An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
This is a Chat Playground UI limitation, not a problem with the XLSX file or the GPT-5.2 model itself.
Root Cause
- GPT-5.2 + Code Interpreter does support non-image files (XLSX, CSV, etc.)
- But that support is only available in Agents / Assistants / API flows, where files are passed via
tool_resources.code_interpreter.file_ids - The Chat Playground UI does not currently expose non-image uploads, even though the model advertises the capability
- This results in a mismatch between the Chat Playground UI and the model’s supported capabilities..
The attached screenshot shows:
- The model states that
.xlsxuploads are supported - The Playground UI is rejecting the same
.xlsxfile as “image-only”
This confirms the issue occurs before the request reaches the model.
Recommended workaround
- Use Azure AI Foundry → Agents (or SDK/API) with Code Interpreter enabled to upload and analyze
.xlsxfiles - Ensure files are attached before creating a new run
- If staying in Playground, convert the file to CSV and paste the content manually (limited, but it works)
Summary
This behavior is reproducible and appears to be a limitation of the Chat Playground UI, not a bug in GPT-5.2 or the XLSX file itself.
Clarifying the supported file types per deployment in the Chat Playground UI would help avoid this confusion.