rust-kgdb 0.6.4 → 0.6.6
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/examples/core-concepts-demo.ts +50 -35
- package/examples/datalog-example.ts +246 -339
- package/examples/fraud-detection-agent.js +23 -36
- package/examples/hypermind-fraud-underwriter.ts +54 -51
- package/examples/underwriting-agent.js +16 -20
- package/hypermind-agent.js +1183 -2588
- package/index.js +6 -0
- package/package.json +1 -1
- package/rust-kgdb-napi.darwin-x64.node +0 -0
package/index.js
CHANGED
|
@@ -61,6 +61,9 @@ const {
|
|
|
61
61
|
getHyperMindBenchmarkSuite,
|
|
62
62
|
validateSparqlSyntax,
|
|
63
63
|
createPlanningContext,
|
|
64
|
+
// Builder Pattern (v0.6.5+) - Fluent Agent Composition
|
|
65
|
+
AgentBuilder,
|
|
66
|
+
ComposedAgent,
|
|
64
67
|
// Memory Layer (v0.5.13+) - GraphDB-Powered Agent Memory
|
|
65
68
|
AgentState,
|
|
66
69
|
AgentRuntime,
|
|
@@ -103,6 +106,9 @@ module.exports = {
|
|
|
103
106
|
getHyperMindBenchmarkSuite,
|
|
104
107
|
validateSparqlSyntax,
|
|
105
108
|
createPlanningContext,
|
|
109
|
+
// Builder Pattern (v0.6.5+) - Fluent Agent Composition
|
|
110
|
+
AgentBuilder,
|
|
111
|
+
ComposedAgent,
|
|
106
112
|
// Memory Layer (v0.5.13+) - GraphDB-Powered Agent Memory
|
|
107
113
|
AgentState,
|
|
108
114
|
AgentRuntime,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-kgdb",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
4
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",
|
|
Binary file
|