agenr 3.1.0 → 3.3.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.
- package/CHANGELOG.md +55 -0
- package/README.md +7 -5
- package/dist/adapters/skeln/index.d.ts +62 -4
- package/dist/adapters/skeln/index.js +2629 -85
- package/dist/{chunk-V5CDMHRN.js → chunk-KH52KJSJ.js} +1 -1
- package/dist/{chunk-EEEL53X4.js → chunk-M5M65AYP.js} +1 -2
- package/dist/{chunk-NOIZQRQV.js → chunk-RYMSM3OS.js} +10 -8
- package/dist/{chunk-NNO2V4GH.js → chunk-Z5X7T4QZ.js} +163 -190
- package/dist/{ports-CpzWESmZ.d.ts → claim-slot-policy-CQ-h0GaV.d.ts} +10 -55
- package/dist/cli.js +1352 -158
- package/dist/core/recall/index.d.ts +2 -3
- package/dist/internal-eval-server.js +3 -4
- package/dist/internal-recall-eval-server.js +3 -4
- package/package.json +8 -5
- package/dist/adapters/openclaw/index.d.ts +0 -32
- package/dist/adapters/openclaw/index.js +0 -3112
- package/dist/chunk-E2DHUFZK.js +0 -2660
- package/dist/chunk-GELCEVFA.js +0 -14
- package/dist/chunk-JSVQILB3.js +0 -1207
- package/dist/claim-slot-policy-CdrW_1l4.d.ts +0 -13
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
readRequiredString,
|
|
24
24
|
truncate,
|
|
25
25
|
validateTemporalValidityRange
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-Z5X7T4QZ.js";
|
|
27
27
|
import {
|
|
28
28
|
compactClaimKey,
|
|
29
29
|
describeClaimKeyNormalizationFailure,
|
|
@@ -4055,7 +4055,6 @@ export {
|
|
|
4055
4055
|
formatErrorMessage,
|
|
4056
4056
|
buildEntryMemoryResolverPorts,
|
|
4057
4057
|
resolveTargetEntry,
|
|
4058
|
-
readBooleanParam,
|
|
4059
4058
|
ENTRY_TYPE_DESCRIPTION,
|
|
4060
4059
|
EXPIRY_DESCRIPTION,
|
|
4061
4060
|
UPDATE_EXPIRY_DESCRIPTION,
|
|
@@ -3,16 +3,10 @@ import {
|
|
|
3
3
|
computeProcedureRevisionHash,
|
|
4
4
|
computeProcedureSourceHash
|
|
5
5
|
} from "./chunk-ZYADFKX3.js";
|
|
6
|
-
import {
|
|
7
|
-
BEFORE_TURN_DEBUG_ARTIFACT_DEFAULT_TOP_K,
|
|
8
|
-
BEFORE_TURN_DEBUG_ARTIFACT_MAX_TOP_K,
|
|
9
|
-
RECALL_DEBUG_ARTIFACT_DEFAULT_TOP_K,
|
|
10
|
-
RECALL_DEBUG_ARTIFACT_MAX_TOP_K
|
|
11
|
-
} from "./chunk-GELCEVFA.js";
|
|
12
6
|
import {
|
|
13
7
|
formatAgenrBeforeTurnRecall,
|
|
14
8
|
runBeforeTurn
|
|
15
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-KH52KJSJ.js";
|
|
16
10
|
import {
|
|
17
11
|
CLAIM_KEY_SOURCES,
|
|
18
12
|
CLAIM_KEY_STATUSES,
|
|
@@ -41,7 +35,7 @@ import {
|
|
|
41
35
|
resolveEmbeddingModel,
|
|
42
36
|
resolveModel,
|
|
43
37
|
runUnifiedRecall
|
|
44
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-Z5X7T4QZ.js";
|
|
45
39
|
import {
|
|
46
40
|
recall
|
|
47
41
|
} from "./chunk-5LADPJ4C.js";
|
|
@@ -444,6 +438,14 @@ function applyTelemetryWriteGate(ports, sandbox) {
|
|
|
444
438
|
};
|
|
445
439
|
}
|
|
446
440
|
|
|
441
|
+
// src/app/debug-artifacts/before-turn.ts
|
|
442
|
+
var BEFORE_TURN_DEBUG_ARTIFACT_DEFAULT_TOP_K = 10;
|
|
443
|
+
var BEFORE_TURN_DEBUG_ARTIFACT_MAX_TOP_K = 25;
|
|
444
|
+
|
|
445
|
+
// src/app/debug-artifacts/recall.ts
|
|
446
|
+
var RECALL_DEBUG_ARTIFACT_DEFAULT_TOP_K = 10;
|
|
447
|
+
var RECALL_DEBUG_ARTIFACT_MAX_TOP_K = 25;
|
|
448
|
+
|
|
447
449
|
// src/app/evals/before-turn/build-debug-artifact.ts
|
|
448
450
|
function buildBeforeTurnDebugArtifact(params) {
|
|
449
451
|
const { request, patch, sandbox } = params;
|