@m4trix/evals 0.22.0 → 0.23.0

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.
@@ -8,7 +8,6 @@ import { writeFile, readdir, readFile, mkdir, appendFile } from 'fs/promises';
8
8
  import { pathToFileURL } from 'url';
9
9
  import { diffLines } from 'diff';
10
10
  import stringify from 'fast-json-stable-stringify';
11
- import { cpus } from 'os';
12
11
  import * as React2 from 'react';
13
12
  import React2__default, { useState, useEffect, useCallback } from 'react';
14
13
  import { render, Box, Text } from 'ink';
@@ -1443,8 +1442,10 @@ var EffectRunner = class {
1443
1442
  );
1444
1443
  }
1445
1444
  };
1445
+
1446
+ // src/cli-simple/args.ts
1446
1447
  function getDefaultConcurrency() {
1447
- return Math.max(1, cpus().length);
1448
+ return 4;
1448
1449
  }
1449
1450
  function parseSimpleCliArgs(argv) {
1450
1451
  const args = {
@@ -1491,7 +1492,7 @@ function getSimpleCliUsage() {
1491
1492
  " eval-agents-simple generate --dataset <datasetName>",
1492
1493
  "",
1493
1494
  "Options:",
1494
- " --concurrency, -c N Max concurrent test cases (default: CPU count). Use 1 for sequential.",
1495
+ " --concurrency, -c N Max concurrent evaluations (default: 4). Use 1 for sequential.",
1495
1496
  "",
1496
1497
  "Pattern examples for --evaluator:",
1497
1498
  " score-evaluator exact name (case-insensitive)",