In the last few days, I’ve been regularly getting the same error messages while trying to use o3:
An error occurred while processing your request. You can retry your request, or contact us through our help center at help<.>openai<.>com if the error persists. Please include the request ID wfr_0198f1f3f9397d3f99fca841cfd329dc in your message.
An error occurred while processing your request. You can retry your request, or contact us through our help center at help<.>openai<.>com if the error persists. Please include the request ID wfr_0198f2306e977a56a3da82d8aac88895 in your message.
An error occurred while processing your request. You can retry your request, or contact us through our help center at help<.>openai<.>com if the error persists. Please include the request ID wfr_019907f81cda7c13a50ed1f5f5668136 in your message.
An error occurred while processing your request. You can retry your request, or contact us through our help center at help<.>openai<.>com if the error persists. Please include the request ID wfr_01990aee3166783d9cd09498563494c8 in your message.
An error occurred while processing your request. You can retry your request, or contact us through our help center at help<.>openai<.>com if the error persists. Please include the request ID wfr_01990b9e44c07d68aaf1eeb05d034dac in your message.
My main hypothesis is that the model is running out of context while writing the report, but I haven’t included any arguments that would limit its context. All I’m doing is this:
resp = client.responses.create(
model=“o3-deep-research”,
input=prompt,
tools=[
{
“type”: “web_search_preview”,
},
],
background=True,
)