@tangle-network/agent-eval 0.16.1 → 0.16.2
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/index.js +1 -6
- package/dist/index.js.map +1 -1
- package/package.json +12 -10
package/dist/index.js
CHANGED
|
@@ -268,12 +268,7 @@ ${codeText}`
|
|
|
268
268
|
};
|
|
269
269
|
var coherenceJudge = async (tc, { scenario, turns }) => {
|
|
270
270
|
if (turns.length < 2) {
|
|
271
|
-
return [
|
|
272
|
-
judgeName: "coherence",
|
|
273
|
-
dimension: "coherence",
|
|
274
|
-
score: 5,
|
|
275
|
-
reasoning: "Single-turn scenario \u2014 coherence not fully testable."
|
|
276
|
-
}];
|
|
271
|
+
return [];
|
|
277
272
|
}
|
|
278
273
|
const conversation = turns.map(
|
|
279
274
|
(t, i) => `Turn ${i + 1}:
|