agenr 2.0.1 → 3.0.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 +64 -0
- package/dist/adapters/openclaw/index.d.ts +1 -1
- package/dist/adapters/openclaw/index.js +994 -1420
- package/dist/adapters/skeln/index.d.ts +1951 -0
- package/dist/adapters/skeln/index.js +3899 -0
- package/dist/chunk-575MUIW5.js +1039 -0
- package/dist/{chunk-MEHOGUZE.js → chunk-5LADPJ4C.js} +989 -70
- package/dist/{chunk-Y2BC7RCE.js → chunk-ELR2HSVC.js} +6008 -4618
- package/dist/chunk-GELCEVFA.js +14 -0
- package/dist/{chunk-XD3446YW.js → chunk-LAXNNWHM.js} +3397 -4527
- package/dist/chunk-MYZ2CWY6.js +2738 -0
- package/dist/chunk-P5SB75FK.js +3061 -0
- package/dist/chunk-TBFAARM5.js +1196 -0
- package/dist/claim-slot-policy-CdrW_1l4.d.ts +13 -0
- package/dist/cli.js +292 -613
- package/dist/core/recall/index.d.ts +538 -119
- package/dist/core/recall/index.js +37 -3
- package/dist/internal-eval-server.d.ts +1 -0
- package/dist/internal-eval-server.js +7 -0
- package/dist/internal-recall-eval-server.js +6 -1816
- package/dist/ports-CpzWESmZ.d.ts +925 -0
- package/package.json +9 -6
- package/dist/ports-D2NOK2gR.d.ts +0 -256
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// src/app/debug-artifacts/before-turn.ts
|
|
2
|
+
var BEFORE_TURN_DEBUG_ARTIFACT_DEFAULT_TOP_K = 10;
|
|
3
|
+
var BEFORE_TURN_DEBUG_ARTIFACT_MAX_TOP_K = 25;
|
|
4
|
+
|
|
5
|
+
// src/app/debug-artifacts/recall.ts
|
|
6
|
+
var RECALL_DEBUG_ARTIFACT_DEFAULT_TOP_K = 10;
|
|
7
|
+
var RECALL_DEBUG_ARTIFACT_MAX_TOP_K = 25;
|
|
8
|
+
|
|
9
|
+
export {
|
|
10
|
+
BEFORE_TURN_DEBUG_ARTIFACT_DEFAULT_TOP_K,
|
|
11
|
+
BEFORE_TURN_DEBUG_ARTIFACT_MAX_TOP_K,
|
|
12
|
+
RECALL_DEBUG_ARTIFACT_DEFAULT_TOP_K,
|
|
13
|
+
RECALL_DEBUG_ARTIFACT_MAX_TOP_K
|
|
14
|
+
};
|