Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docker/fixtures/mock-reviews.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ const server = createServer(async (request, response) => {
body.model,
stage === "screen" ? "gpt-5.6-luna" : "gpt-5.6-sol",
);
assert.equal(body.reasoning.effort, "xhigh");
assert.equal(
body.reasoning.effort,
stage === "screen" ? "xhigh" : "high",
);
const tools = body.input
.filter((entry) => entry.type === "additional_tools")
.flatMap((entry) => entry.tools);
Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1560,7 +1560,7 @@ use another workflow ID for a fresh review rather than changing that saved resul
2. Screen each nonempty neighborhood with `gpt-5.6-luna` at `xhigh` reasoning
effort. The review covers every anchor-neighbor pair; nominations between
neighbors are rejected.
3. Independently review each nominated pair once with `gpt-5.6-sol` at `xhigh`
3. Independently review each nominated pair once with `gpt-5.6-sol` at `high`
reasoning effort. Only accepted pairs contribute to duplicate groups.
4. Group accepted duplicate pairs transitively unless a Luna or Sol `DISTINCT`
decision contradicts the resulting component. Contradicted components are
Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/src/deduplication/deduplication-reviewer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export class CodexDeduplicationReviewer implements DeduplicationReviewer {
return await this.runner.run({
stage: "pair-review",
model: "gpt-5.6-sol",
effort: "xhigh",
effort: "high",
prompt: pairReviewPrompt(findings),
schema: {
type: "object",
Expand Down
4 changes: 2 additions & 2 deletions sdk/typescript/tests-ts/finding-deduplication.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,8 @@ test("keeps recommendation-only screening independent from complete pair reviews
calls.map(({ stage, model, effort }) => [stage, model, effort]),
).toEqual([
["screening", "gpt-5.6-luna", "xhigh"],
["pair-review", "gpt-5.6-sol", "xhigh"],
["pair-review", "gpt-5.6-sol", "xhigh"],
["pair-review", "gpt-5.6-sol", "high"],
["pair-review", "gpt-5.6-sol", "high"],
]);
expect(calls[0]!.prompt).toContain(JSON.stringify({ findings }));
expect(calls[1]!.prompt).toContain(
Expand Down
Loading