mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-21 18:05:11 +00:00
test: add thinkingBudgetTokens parameter to thinking mode tests
This commit is contained in:
parent
31cbbd211c
commit
88d693cc00
1 changed files with 2 additions and 2 deletions
|
|
@ -572,11 +572,11 @@ describe("Generate E2E Tests", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it.skip("should handle thinking mode", { retry: 3 }, async () => {
|
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 () => {
|
it("should handle multi-turn with thinking and tools", { retry: 3 }, async () => {
|
||||||
await multiTurn(llm, { thinkingEnabled: true });
|
await multiTurn(llm, { thinkingEnabled: true, thinkingBudgetTokens: 2048 });
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue