rust-kgdb 0.5.12 → 0.6.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 +253 -0
- package/README.md +170 -0
- package/examples/fraud-detection-agent.js +157 -1
- package/examples/fraud-memory-hypergraph.js +658 -0
- package/examples/underwriting-agent.js +142 -2
- package/hypermind-agent.js +1199 -1
- package/index.d.ts +735 -0
- package/index.js +24 -0
- package/package.json +8 -3
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-kgdb",
|
|
3
|
-
"version": "0.
|
|
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.",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "Production-grade Neuro-Symbolic AI Framework with Memory Hypergraph: +86.4% accuracy improvement over vanilla LLMs. High-performance knowledge graph (2.78µs lookups, 35x faster than RDFox). Features Memory Hypergraph (temporal scoring, rolling context window, idempotent responses), 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",
|
|
7
7
|
"napi": {
|
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
"keywords": [
|
|
26
26
|
"neuro-symbolic-ai",
|
|
27
27
|
"agentic-framework",
|
|
28
|
+
"memory-hypergraph",
|
|
29
|
+
"agent-memory",
|
|
30
|
+
"temporal-memory",
|
|
28
31
|
"category-theory",
|
|
29
32
|
"type-theory",
|
|
30
33
|
"llm-agents",
|
|
@@ -42,7 +45,9 @@
|
|
|
42
45
|
"datalog",
|
|
43
46
|
"reasoning",
|
|
44
47
|
"napi-rs",
|
|
45
|
-
"rust"
|
|
48
|
+
"rust",
|
|
49
|
+
"fraud-detection",
|
|
50
|
+
"underwriting"
|
|
46
51
|
],
|
|
47
52
|
"author": "Gonnect Team",
|
|
48
53
|
"license": "Apache-2.0",
|