@tangle-network/agent-bench 0.4.6 → 0.4.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.7
4
+
5
+ - Consume Runtime 0.108.1 with Eval 0.134.2, Interface 0.36.0, Knowledge 6.1.8, Materialize 0.9.2, and Sandbox 0.15.2.
6
+ - Keep the HumanEval Docker test executable portable across supported Node versions.
7
+
3
8
  ## 0.4.6
4
9
 
5
10
  - Require typed proposal findings with explicit search or production origin throughout the SWE improvement loop.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tangle-network/agent-bench",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "type": "module",
5
5
  "description": "Benchmark adapters and execution for agent-runtime across coding, tool-use, RAG, memory, browser, and terminal tasks.",
6
6
  "repository": {
@@ -25,11 +25,11 @@
25
25
  }
26
26
  },
27
27
  "dependencies": {
28
- "@tangle-network/agent-eval": "0.134.1",
28
+ "@tangle-network/agent-eval": "0.134.2",
29
29
  "@tangle-network/agent-interface": "0.36.0",
30
- "@tangle-network/agent-knowledge": "6.1.7",
30
+ "@tangle-network/agent-knowledge": "6.1.8",
31
31
  "@tangle-network/sandbox": "0.15.2",
32
- "@tangle-network/agent-runtime": "0.108.0"
32
+ "@tangle-network/agent-runtime": "0.108.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@arethetypeswrong/cli": "0.18.5",
@@ -13,8 +13,8 @@ describe('HumanEval Python isolation', () => {
13
13
  writeFileSync(
14
14
  fakeDocker,
15
15
  `#!/usr/bin/env node
16
- import * as fs from 'node:fs'
17
- import * as path from 'node:path'
16
+ const fs = require('node:fs')
17
+ const path = require('node:path')
18
18
  const args = process.argv.slice(2)
19
19
  if (args[0] === 'rm') process.exit(0)
20
20
  if (process.env.FAKE_DOCKER_MISSING === '1') {