Hi, I’ve tried to set up reasoning effort and summary using Agents SDK TS like in Response API, but looks like this option is missing or I’m doing something wrong. Is this option available in Agents SDK?
My code
const agent = new Agent({
model: "o4-mini",
modelSettings: {
reasoning: { effort: "high", summary: 'auto' },
}
});
Working Responses API example:
const response = await openai.responses.create({
model: "o4-mini",
reasoning: { effort: "high", summary: 'auto' },
input: input,
});