fix(chat-params): guard non-positive max output tokens

This commit is contained in:
YeonGyu-Kim
2026-05-10 15:03:01 +09:00
parent 50699e3af1
commit 279f0d150f
4 changed files with 56 additions and 3 deletions
+32
View File
@@ -253,4 +253,36 @@ describe("createChatParamsHandler", () => {
options: {},
})
})
test("falls back to default maxOutputTokens when stored and compatibility tokens are non-positive", async () => {
//#given
setSessionPromptParams("ses_chat_params", {
maxOutputTokens: 0,
})
const handler = createChatParamsHandler({
anthropicEffort: null,
})
const input = {
sessionID: "ses_chat_params",
agent: { name: "oracle" },
model: { providerID: "custom-provider", modelID: "custom-model" },
provider: { id: "custom-provider" },
message: {},
}
const output: ChatParamsOutput = {
topP: 1,
topK: 1,
maxOutputTokens: 0,
options: {},
}
//#when
await handler(input, output)
//#then
expect(output.maxOutputTokens).toBe(4096)
})
})