rust-kgdb 0.8.2 → 0.8.3
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 +11 -0
- package/README.md +99 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the rust-kgdb TypeScript SDK will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.8.2] - 2025-12-21
|
|
6
|
+
|
|
7
|
+
### Enhanced Introduction
|
|
8
|
+
|
|
9
|
+
- Updated intro to highlight: totally in-memory KGDB with memory acceleration (449ns lookups)
|
|
10
|
+
- Added multi-way federated joins (KGDB + Snowflake + BigQuery in single SQL)
|
|
11
|
+
- Emphasized W3C DCAT/DPROD data cataloging for self-describing data products
|
|
12
|
+
- Featured ThinkingReasoner with proof-carrying outputs in tagline
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
5
16
|
## [0.8.1] - 2025-12-21
|
|
6
17
|
|
|
7
18
|
### Documentation & README Updates
|
package/README.md
CHANGED
|
@@ -67,6 +67,105 @@ Derivation Chain (like Claude's thinking, but verifiable):
|
|
|
67
67
|
|
|
68
68
|
*See [ThinkingReasoner: Deductive AI](#thinkingreasoner-deductive-ai) for complete documentation.*
|
|
69
69
|
|
|
70
|
+
### HyperMind Agent + Deductive Reasoning: The Complete Picture
|
|
71
|
+
|
|
72
|
+
What happens when you combine natural language understanding with provable deduction?
|
|
73
|
+
|
|
74
|
+
```javascript
|
|
75
|
+
const {
|
|
76
|
+
GraphDB,
|
|
77
|
+
HyperMindAgent,
|
|
78
|
+
ThinkingReasoner,
|
|
79
|
+
RpcFederationProxy
|
|
80
|
+
} = require('rust-kgdb')
|
|
81
|
+
|
|
82
|
+
// 1. Create in-memory KGDB with your domain ontology
|
|
83
|
+
const db = new GraphDB('http://insurance.example.org/')
|
|
84
|
+
db.loadTtl(`
|
|
85
|
+
@prefix ins: <http://insurance.example.org/> .
|
|
86
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
87
|
+
|
|
88
|
+
ins:transfers a owl:TransitiveProperty .
|
|
89
|
+
ins:relatedTo a owl:SymmetricProperty .
|
|
90
|
+
ins:FraudulentClaim rdfs:subClassOf ins:Claim .
|
|
91
|
+
`)
|
|
92
|
+
|
|
93
|
+
// 2. Create ThinkingReasoner (auto-generates rules from ontology)
|
|
94
|
+
const reasoner = new ThinkingReasoner()
|
|
95
|
+
reasoner.loadOntology(db.getOntology())
|
|
96
|
+
|
|
97
|
+
// 3. Create HyperMind Agent with deductive reasoning
|
|
98
|
+
const agent = new HyperMindAgent({
|
|
99
|
+
kg: db,
|
|
100
|
+
reasoner: reasoner, // Deductive reasoning engine
|
|
101
|
+
federate: new RpcFederationProxy({ // Cross-database federation
|
|
102
|
+
endpoint: 'http://localhost:30180'
|
|
103
|
+
}),
|
|
104
|
+
thinkingGraph: {
|
|
105
|
+
enabled: true, // Show derivation chain
|
|
106
|
+
streaming: true // Real-time thinking updates
|
|
107
|
+
}
|
|
108
|
+
})
|
|
109
|
+
|
|
110
|
+
// 4. Natural language query with federated data + deductive reasoning
|
|
111
|
+
const result = await agent.call(`
|
|
112
|
+
Find circular payment patterns in claims from the last 30 days.
|
|
113
|
+
Cross-reference with Snowflake customer data and BigQuery risk scores.
|
|
114
|
+
Show me the proof chain for any fraud detected.
|
|
115
|
+
`)
|
|
116
|
+
|
|
117
|
+
// Result includes:
|
|
118
|
+
// - answer: Natural language summary
|
|
119
|
+
// - sparql: Generated SPARQL query
|
|
120
|
+
// - federatedSql: Cross-database SQL
|
|
121
|
+
// - thinkingGraph: Full derivation chain
|
|
122
|
+
// - proofs: Cryptographic witnesses for each conclusion
|
|
123
|
+
|
|
124
|
+
console.log('Answer:', result.answer)
|
|
125
|
+
console.log('Proofs:', result.proofs.length)
|
|
126
|
+
|
|
127
|
+
// Display thinking graph (like Claude's thinking, but verifiable)
|
|
128
|
+
for (const step of result.thinkingGraph.derivationChain) {
|
|
129
|
+
console.log(`[${step.step}] ${step.rule}: ${step.conclusion}`)
|
|
130
|
+
if (step.proofHash) {
|
|
131
|
+
console.log(` Proof: ${step.proofHash}`)
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
**Output:**
|
|
137
|
+
```
|
|
138
|
+
Answer: Found 3 circular payment patterns indicating potential fraud.
|
|
139
|
+
Alice → Bob → Carol → Alice ($28,500 total)
|
|
140
|
+
Provider #4521 → Clinic #892 → Provider #4521 ($156,000)
|
|
141
|
+
|
|
142
|
+
Proofs: 6
|
|
143
|
+
|
|
144
|
+
[1] SPARQL-EXEC: Query customer transfers from KGDB (2.3ms)
|
|
145
|
+
[2] FEDERATION: Join with Snowflake accounts (890ms)
|
|
146
|
+
[3] FEDERATION: Join with BigQuery risk scores (340ms)
|
|
147
|
+
[4] OBSERVATION: Alice transfers $10K to Bob
|
|
148
|
+
[5] OBSERVATION: Bob transfers $9.5K to Carol
|
|
149
|
+
[6] OBSERVATION: Carol transfers $9K to Alice
|
|
150
|
+
[7] DATALOG-INFER: owl:TransitiveProperty → Alice transfers to Carol
|
|
151
|
+
Premises: [4, 5]
|
|
152
|
+
[8] DATALOG-INFER: circularPayment(Alice, Bob, Carol)
|
|
153
|
+
Premises: [4, 5, 6]
|
|
154
|
+
Proof: a3f8c2e7...
|
|
155
|
+
Confidence: 0.92
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
**The key difference from other AI frameworks:**
|
|
159
|
+
|
|
160
|
+
| Aspect | LangChain/LlamaIndex | HyperMind + ThinkingReasoner |
|
|
161
|
+
|--------|---------------------|------------------------------|
|
|
162
|
+
| **Query source** | LLM generates SQL/SPARQL (error-prone) | Schema-aware generation (85.7% accuracy) |
|
|
163
|
+
| **Data access** | Single database | Federated: KGDB + Snowflake + BigQuery |
|
|
164
|
+
| **Reasoning** | None (just retrieval) | Datalog deduction with fixpoint |
|
|
165
|
+
| **Confidence** | LLM-generated (fabricated) | Derived from proof chain |
|
|
166
|
+
| **Audit trail** | None | SHA-256 cryptographic proofs |
|
|
167
|
+
| **Explainability** | "Based on patterns..." | Step-by-step derivation chain |
|
|
168
|
+
|
|
70
169
|
---
|
|
71
170
|
|
|
72
171
|
## What's New in v0.7.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-kgdb",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "High-performance RDF/SPARQL database with AI agent framework and cross-database federation. GraphDB (449ns lookups, 5-11x faster than RDFox), HyperFederate (KGDB + Snowflake + BigQuery), GraphFrames analytics, Datalog reasoning, HNSW vector embeddings. HyperMindAgent for schema-aware query generation with audit trails. W3C SPARQL 1.1 compliant. Native performance via Rust + NAPI-RS.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|