test: add thinkingBudgetTokens parameter to thinking mode tests

This commit is contained in:
Anton Kuzmenko 2025-12-28 16:33:25 -08:00
parent 31cbbd211c
commit 88d693cc00

View file

@ -572,11 +572,11 @@ describe("Generate E2E Tests", () => {
});
it.skip("should handle thinking mode", { retry: 3 }, async () => {
await handleThinking(llm, { thinkingEnabled: true });
await handleThinking(llm, { thinkingEnabled: true, thinkingBudgetTokens: 2048 });
});
it("should handle multi-turn with thinking and tools", { retry: 3 }, async () => {
await multiTurn(llm, { thinkingEnabled: true });
await multiTurn(llm, { thinkingEnabled: true, thinkingBudgetTokens: 2048 });
});
});