I’m getting an Empty reply from server error when using the Responses API with the o3 model and the web-search tool.
- Endpoint:
https://api.openai.com/v1/responses - Model:
o3 - Tools:
web-search - Error text: Empty reply from server for https://api.openai.com/v1/responses
Minimal repro (curl):
curl https://api.openai.com/v1/responses
-H “Authorization: Bearer $OPENAI_API_KEY”
-H “Content-Type: application/json”
-d ‘{
“model”: “o3”,
“input”: “Search online for information about this domain: example.com”,
“tools”: [{“type”: “web-search”}]
}’
Result: curl: (52) Empty reply from server
Is o3 with web-search via responses api not working correctly, or is it something from my end?
Any help would be appreciated.