@tangle-network/agent-runtime 0.98.0 → 0.100.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/dist/candidate-execution/index.js +3 -3
- package/dist/{chunk-BLQIYRVR.js → chunk-BXZ7GPL4.js} +2 -2
- package/dist/{chunk-YOLKCWRV.js → chunk-HGSHPVJ6.js} +2 -1
- package/dist/chunk-HGSHPVJ6.js.map +1 -0
- package/dist/{chunk-WUNFYMEV.js → chunk-LV6WCT43.js} +4 -4
- package/dist/{chunk-6XKPVJAZ.js → chunk-U4PRAATQ.js} +3 -3
- package/dist/{chunk-3K2TXWF4.js → chunk-VOPHC4LB.js} +167 -16
- package/dist/chunk-VOPHC4LB.js.map +1 -0
- package/dist/index.js +5 -5
- package/dist/intelligence.d.ts +30 -2
- package/dist/intelligence.js +12 -2
- package/dist/intelligence.js.map +1 -1
- package/dist/knowledge.js +4 -4
- package/package.json +1 -1
- package/dist/chunk-3K2TXWF4.js.map +0 -1
- package/dist/chunk-YOLKCWRV.js.map +0 -1
- /package/dist/{chunk-BLQIYRVR.js.map → chunk-BXZ7GPL4.js.map} +0 -0
- /package/dist/{chunk-WUNFYMEV.js.map → chunk-LV6WCT43.js.map} +0 -0
- /package/dist/{chunk-6XKPVJAZ.js.map → chunk-U4PRAATQ.js.map} +0 -0
package/dist/intelligence.js
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AGENT_IMPROVEMENT_PROFILE_SURFACES,
|
|
2
3
|
AgentCandidateExperimentCellExecutionError,
|
|
4
|
+
agentImprovementProfileSurfaceDigest,
|
|
5
|
+
agentImprovementProfileSurfaceInput,
|
|
6
|
+
agentImprovementTargetProfileDiffs,
|
|
3
7
|
buildAgentImprovementActivationTargets,
|
|
4
8
|
createAgentImprovementActivation,
|
|
5
9
|
createAgentImprovementActivationResult,
|
|
@@ -7,6 +11,7 @@ import {
|
|
|
7
11
|
createAgentImprovementProposal,
|
|
8
12
|
executeAgentCandidateExperimentCell,
|
|
9
13
|
executeAgentImprovementActivation,
|
|
14
|
+
isAgentImprovementProfileSurface,
|
|
10
15
|
proposeAgentImprovement,
|
|
11
16
|
reviewAgentImprovementProposal,
|
|
12
17
|
runAgentCandidateExperiment,
|
|
@@ -15,7 +20,7 @@ import {
|
|
|
15
20
|
verifyAgentImprovementProposal,
|
|
16
21
|
verifyAgentImprovementReview,
|
|
17
22
|
verifyCandidateExecutionEvidence
|
|
18
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-VOPHC4LB.js";
|
|
19
24
|
import {
|
|
20
25
|
AGENT_CANDIDATE_EXECUTION_SUPPORT,
|
|
21
26
|
CANDIDATE_KNOWLEDGE_RETRIEVAL_CONFIG_ENV,
|
|
@@ -23,7 +28,7 @@ import {
|
|
|
23
28
|
candidateKnowledgeExecutionPaths,
|
|
24
29
|
canonicalCandidateBytes,
|
|
25
30
|
parseAgentCandidateProfileActivation
|
|
26
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-HGSHPVJ6.js";
|
|
27
32
|
import {
|
|
28
33
|
buildLoopOtelSpans,
|
|
29
34
|
buildRuntimeEventOtelSpans,
|
|
@@ -1683,8 +1688,12 @@ function createIntelligenceClient(config) {
|
|
|
1683
1688
|
};
|
|
1684
1689
|
}
|
|
1685
1690
|
export {
|
|
1691
|
+
AGENT_IMPROVEMENT_PROFILE_SURFACES,
|
|
1686
1692
|
AgentCandidateExperimentCellExecutionError,
|
|
1687
1693
|
CapabilityNotAdmittedError,
|
|
1694
|
+
agentImprovementProfileSurfaceDigest,
|
|
1695
|
+
agentImprovementProfileSurfaceInput,
|
|
1696
|
+
agentImprovementTargetProfileDiffs,
|
|
1688
1697
|
buildAgentImprovementActivationTargets,
|
|
1689
1698
|
compileEffort,
|
|
1690
1699
|
composeCertifiedProfile,
|
|
@@ -1701,6 +1710,7 @@ export {
|
|
|
1701
1710
|
defaultRedactor,
|
|
1702
1711
|
executeAgentCandidateExperimentCell,
|
|
1703
1712
|
executeAgentImprovementActivation,
|
|
1713
|
+
isAgentImprovementProfileSurface,
|
|
1704
1714
|
isIntelligenceOff,
|
|
1705
1715
|
manifestFromProfile,
|
|
1706
1716
|
normalizeCertifiedProfile,
|