Is reasoning summary required in stateless Responses API calls?
Background
- I am sticking to ZDR, which means no
previous_response_idin API calls - I ask for encrypted reasoning content with
reasoning.encrypted_content - To help LLM continue from its previous reasoning, I include reasoning from previous calls
Question
Can I send only the encrypted reasoning content, and leave summary empty?
- Seems like the summary is for human. Does it help LLM at all?
- Summary is unavailable if
reasoning.summaryis not set. Can’t send it back in this case anyway. - Save some tokens
i.e. input[1].summary below
curl https://api.openai.com/v1/responses \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $KEY" \
-d '{
"model": "gpt-5",
"reasoning": {
"effort": "medium",
"summary": "auto"
},
"include": [ "reasoning.encrypted_content" ],
"store": false,
"input": [
{
"role": "user",
"type": "message",
"status": "completed",
"content": [{
"type": "input_text",
"text": "The old user message"
}]
},
{
"id": "rs_xxx",
"type": "reasoning",
"summary": [],
"encrypted_content": "Encrypted reasoning of the previous call"
},
{
"id": "msg_xxx",
"type": "message",
"status": "completed",
"role": "assistant",
"content": [{
"type": "output_text",
"text": "Output of the previous call"
}]
},
{
"role": "user",
"type": "message",
"content": [{
"type": "input_text",
"text": "The new user message"
}]
}
]
}'
The previous response looks something like
{
"id": "resp_xxx",
"status": "completed",
"error": null,
"output": [
{
"id": "rs_xxx",
"type": "reasoning",
"encrypted_content": "...omitted",
"summary": [
{
"type": "summary_text",
"text": "summary 1"
},
{
"type": "summary_text",
"text": "summary 2"
}
]
},
{
"id": "msg_xxx",
"type": "message",
"status": "completed",
"content": [
{
"type": "output_text",
"annotations": [],
"logprobs": [],
"text": "The output"
}
],
"role": "assistant"
}
],
"previous_response_id": null,
"effort": "medium",
"summary": "detailed"
},
"store": false
}