Hello @Steve Godfrey ,
Thank you for your patience. We’ve received an update from our product team this issue has been identified as a fundamental feature gap. The team is actively working on implementing the functionality.
Currently, there is no ETA for the fix. However, we are closely tracking the progress and will keep you informed as soon as any updates or releases become available.
In the meantime, the product team has provided a workaround using a vector store and the file_search
tool to retrieve content. Below is a sample code snippet for the responses
API:
response = client.responses.create(
model="gpt-4.1-mini",
input=[{"role": "user", "content": "Describe the files in the vector store."}],
tools=[{
"type": "file_search",
"vector_store_ids": ["vs_uUYi8hxFmT7fYncND6nKhqUS"],
}]
)
for i in response.output:
if i.type == "message":
print(i.content[0].text)
You’ll need to specify the vector store ID, which can be created via SDK, REST API, or the Azure portal.
Location to create the vector store
File upload to the vector store
Sample output
Please evaluate whether this workaround suits your use case. If it does, you may proceed with it until the permanent fix is available. Otherwise, we appreciate your continued patience as our team works on a solution.
Feel free to reach out in the comments if you need help implementing the workaround or have further questions.
Thank you