rust-kgdb 0.5.11 → 0.5.13

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/index.js CHANGED
@@ -61,6 +61,18 @@ const {
61
61
  getHyperMindBenchmarkSuite,
62
62
  validateSparqlSyntax,
63
63
  createPlanningContext,
64
+ // Memory Layer (v0.5.13+) - GraphDB-Powered Agent Memory
65
+ AgentState,
66
+ AgentRuntime,
67
+ WorkingMemory,
68
+ EpisodicMemory,
69
+ LongTermMemory,
70
+ MemoryManager,
71
+ // Governance Layer (v0.5.13+)
72
+ GovernancePolicy,
73
+ GovernanceEngine,
74
+ // Scope Layer (v0.5.13+)
75
+ AgentScope,
64
76
  } = require('./hypermind-agent')
65
77
 
66
78
  module.exports = {
@@ -91,4 +103,16 @@ module.exports = {
91
103
  getHyperMindBenchmarkSuite,
92
104
  validateSparqlSyntax,
93
105
  createPlanningContext,
106
+ // Memory Layer (v0.5.13+) - GraphDB-Powered Agent Memory
107
+ AgentState,
108
+ AgentRuntime,
109
+ WorkingMemory,
110
+ EpisodicMemory,
111
+ LongTermMemory,
112
+ MemoryManager,
113
+ // Governance Layer (v0.5.13+)
114
+ GovernancePolicy,
115
+ GovernanceEngine,
116
+ // Scope Layer (v0.5.13+)
117
+ AgentScope,
94
118
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-kgdb",
3
- "version": "0.5.11",
3
+ "version": "0.5.13",
4
4
  "description": "Production-grade Neuro-Symbolic AI Framework: +86.4% accuracy improvement over vanilla LLMs. High-performance knowledge graph (2.78µs lookups, 35x faster than RDFox). Features fraud detection, underwriting agents, WASM sandbox, type/category/proof theory, and W3C SPARQL 1.1 compliance.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",