mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-19 16:25:50 +00:00
test: tighten groq reasoning map assertion
This commit is contained in:
parent
d2ba0adab7
commit
d7291cf9bd
1 changed files with 8 additions and 3 deletions
|
|
@ -8,12 +8,17 @@ describe("groq provider compat", () => {
|
|||
expect(resolveGroqReasoningCompatPatch("qwen/qwen3-32b")).toEqual({
|
||||
supportsReasoningEffort: true,
|
||||
supportedReasoningEfforts: ["none", "default"],
|
||||
reasoningEffortMap: expect.objectContaining({
|
||||
reasoningEffortMap: {
|
||||
adaptive: "default",
|
||||
high: "default",
|
||||
off: "none",
|
||||
none: "none",
|
||||
minimal: "default",
|
||||
low: "default",
|
||||
medium: "default",
|
||||
high: "default",
|
||||
}),
|
||||
max: "default",
|
||||
xhigh: "default",
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue