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
|
@@ -1,28 +1,62 @@
|
|
|
1
1
|
import {
|
|
2
|
+
DEFAULT_CROSS_ENCODER_ALPHA,
|
|
3
|
+
DEFAULT_CROSS_ENCODER_TOP_K,
|
|
4
|
+
DEFAULT_MMR_LAMBDA,
|
|
5
|
+
DEFAULT_NEIGHBORHOOD_BUDGET,
|
|
6
|
+
DEFAULT_RRF_RANK_CONSTANT,
|
|
7
|
+
DEFAULT_SEEDED_RERANK_WEIGHT,
|
|
8
|
+
DEFAULT_STRONG_SEED_SCORE_GAP,
|
|
9
|
+
DEFAULT_STRONG_SEED_TOP_N,
|
|
10
|
+
NEAR_DUPLICATE_SIMILARITY,
|
|
11
|
+
applyCrossEncoderRerank,
|
|
2
12
|
buildLexicalPlan,
|
|
3
|
-
combinedRelevance,
|
|
4
13
|
computeLexicalScore,
|
|
5
14
|
cosineSimilarity,
|
|
6
15
|
gaussianRecency,
|
|
7
16
|
importanceScore,
|
|
8
17
|
inferAroundDate,
|
|
18
|
+
maximalMarginalRelevance,
|
|
9
19
|
parseRelativeDate,
|
|
10
20
|
recall,
|
|
11
21
|
recencyScore,
|
|
22
|
+
rrfFuse,
|
|
23
|
+
rrfFuseVectorLexical,
|
|
12
24
|
scoreCandidate,
|
|
25
|
+
seededRerank,
|
|
26
|
+
selectStrongSeeds,
|
|
27
|
+
sharesEntryLineage,
|
|
28
|
+
sharesEpisodeLineage,
|
|
29
|
+
sharesProcedureLineage,
|
|
13
30
|
tokenize
|
|
14
|
-
} from "../../chunk-
|
|
31
|
+
} from "../../chunk-5LADPJ4C.js";
|
|
15
32
|
export {
|
|
33
|
+
DEFAULT_CROSS_ENCODER_ALPHA,
|
|
34
|
+
DEFAULT_CROSS_ENCODER_TOP_K,
|
|
35
|
+
DEFAULT_MMR_LAMBDA,
|
|
36
|
+
DEFAULT_NEIGHBORHOOD_BUDGET,
|
|
37
|
+
DEFAULT_RRF_RANK_CONSTANT,
|
|
38
|
+
DEFAULT_SEEDED_RERANK_WEIGHT,
|
|
39
|
+
DEFAULT_STRONG_SEED_SCORE_GAP,
|
|
40
|
+
DEFAULT_STRONG_SEED_TOP_N,
|
|
41
|
+
NEAR_DUPLICATE_SIMILARITY,
|
|
42
|
+
applyCrossEncoderRerank,
|
|
16
43
|
buildLexicalPlan,
|
|
17
|
-
combinedRelevance,
|
|
18
44
|
computeLexicalScore,
|
|
19
45
|
cosineSimilarity,
|
|
20
46
|
gaussianRecency,
|
|
21
47
|
importanceScore,
|
|
22
48
|
inferAroundDate,
|
|
49
|
+
maximalMarginalRelevance,
|
|
23
50
|
parseRelativeDate,
|
|
24
51
|
recall,
|
|
25
52
|
recencyScore,
|
|
53
|
+
rrfFuse,
|
|
54
|
+
rrfFuseVectorLexical,
|
|
26
55
|
scoreCandidate,
|
|
56
|
+
seededRerank,
|
|
57
|
+
selectStrongSeeds,
|
|
58
|
+
sharesEntryLineage,
|
|
59
|
+
sharesEpisodeLineage,
|
|
60
|
+
sharesProcedureLineage,
|
|
27
61
|
tokenize
|
|
28
62
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|