@hmharness/evolution 0.14.13 → 0.14.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/judge.d.ts +4 -0
- package/dist/judge.js +1 -1
- package/package.json +1 -1
package/dist/judge.d.ts
CHANGED
|
@@ -43,6 +43,10 @@ export declare function runJudgeBatch(opts: {
|
|
|
43
43
|
provider: ProviderConfig;
|
|
44
44
|
modelTag?: string;
|
|
45
45
|
log?: (line: string) => void;
|
|
46
|
+
/** re-judge sessions that carry a HUMAN label too - the 2026-09-21
|
|
47
|
+
* direction: those stars were blind guesses, not ground truth; the
|
|
48
|
+
* judge re-grades them and the judge label takes precedence. */
|
|
49
|
+
includeHumanLabeled?: boolean;
|
|
46
50
|
}): Promise<{
|
|
47
51
|
labeled: number;
|
|
48
52
|
skipped: number;
|
package/dist/judge.js
CHANGED
|
@@ -107,7 +107,7 @@ export async function runJudgeBatch(opts) {
|
|
|
107
107
|
const modelTag = opts.modelTag ?? provider.model;
|
|
108
108
|
const human = await readLabels(home);
|
|
109
109
|
const judged = await readJudgeLabels(home);
|
|
110
|
-
const done = new Set([...human.map((l) => l.session), ...judged.map((l) => l.session)]);
|
|
110
|
+
const done = new Set([...(opts.includeHumanLabeled ? [] : human.map((l) => l.session)), ...judged.map((l) => l.session)]);
|
|
111
111
|
let insights = [];
|
|
112
112
|
try {
|
|
113
113
|
const text = await readFile(join(home, 'insights', 'insights.jsonl'), 'utf8');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hmharness/evolution",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.14",
|
|
4
4
|
"description": "hmharness evolution subsystem: persistent memory, insight capture, skill library, and the bench that gives evolution its fitness signal. First-class kernel citizen, not a plugin.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|