fix(chat-params): complete maxOutputTokens migration in session prompt params

This commit is contained in:
YeonGyu-Kim
2026-04-08 17:14:17 +09:00
parent 06b825dd74
commit ed16dc0608
8 changed files with 9 additions and 9 deletions
@@ -190,10 +190,10 @@ describe("executeSync", () => {
expect(promptInput?.body.temperature).toBe(0.12)
expect(promptInput?.body.topP).toBe(0.34)
expect(promptInput?.body.options).toEqual({
maxTokens: 5678,
reasoningEffort: "medium",
thinking: { type: "disabled" },
})
expect(promptInput?.body.maxOutputTokens).toBe(5678)
})
test("records metadata with description and created session id", async () => {