Thinking: accept extra-high alias and sync Codex FAQ wording

This commit is contained in:
slonce70
2026-02-06 01:25:28 +02:00
committed by Darshil
parent bc88e58fcf
commit 5958e5693c
4 changed files with 14 additions and 7 deletions

View File

@@ -15,6 +15,11 @@ describe("normalizeThinkLevel", () => {
expect(normalizeThinkLevel("xhigh")).toBe("xhigh");
});
it("accepts extra-high aliases as xhigh", () => {
expect(normalizeThinkLevel("extra-high")).toBe("xhigh");
expect(normalizeThinkLevel("extra high")).toBe("xhigh");
});
it("accepts on as low", () => {
expect(normalizeThinkLevel("on")).toBe("low");
});