mirror of https://github.com/garrytan/gstack.git
26 lines
1.3 KiB
TypeScript
26 lines
1.3 KiB
TypeScript
/** OV11: the host-neutral eval-model resolver's contract. */
|
|
import { describe, test, expect } from "bun:test";
|
|
import { resolveEvalModel } from "../lib/eval-model";
|
|
|
|
describe("resolveEvalModel", () => {
|
|
test("explicit argument wins over everything", () => {
|
|
expect(resolveEvalModel("capture", "my-model", { GSTACK_EVAL_MODEL: "x" } as never)).toBe("my-model");
|
|
});
|
|
test("per-kind env beats the global env", () => {
|
|
expect(resolveEvalModel("warmup", null, { GSTACK_EVAL_MODEL_WARMUP: "w", GSTACK_EVAL_MODEL: "g" } as never)).toBe("w");
|
|
});
|
|
test("global env beats the default", () => {
|
|
expect(resolveEvalModel("distill", null, { GSTACK_EVAL_MODEL: "g" } as never)).toBe("g");
|
|
});
|
|
test("defaults per kind", () => {
|
|
// capture defaults to Sonnet per D1a (2026-08 review): Opus is opt-in via
|
|
// explicit arg or GSTACK_EVAL_MODEL_CAPTURE.
|
|
expect(resolveEvalModel("capture", null, {} as never)).toBe("claude-sonnet-4-6");
|
|
expect(resolveEvalModel("warmup", null, {} as never)).toBe("claude-haiku-4-5");
|
|
expect(resolveEvalModel("distill", null, {} as never)).toBe("claude-haiku-4-5-20251001");
|
|
});
|
|
test("unknown kind throws instead of silently defaulting", () => {
|
|
expect(() => resolveEvalModel("banana" as never, null, {} as never)).toThrow();
|
|
});
|
|
});
|