feat(ai): add max thinking level

This commit is contained in:
Mario Zechner
2026-07-09 22:30:53 +02:00
parent 8973ae28ab
commit fbdd46389c
61 changed files with 441 additions and 168 deletions
@@ -305,7 +305,7 @@ describe("openai-completions tool_choice", () => {
low: "high",
medium: "high",
high: "high",
xhigh: "max",
max: "max",
});
}
});
@@ -316,7 +316,7 @@ describe("openai-completions tool_choice", () => {
{ reasoning: "low", effort: "high" },
{ reasoning: "medium", effort: "high" },
{ reasoning: "high", effort: "high" },
{ reasoning: "xhigh", effort: "max" },
{ reasoning: "max", effort: "max" },
] as const;
for (const testCase of cases) {