rust-kgdb 0.8.19 → 0.8.21

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/README.md CHANGED
@@ -38,7 +38,37 @@ npm run brain # BRAIN Fraud & Underwriting demo
38
38
 
39
39
  ---
40
40
 
41
- ## What's New in v0.8.19
41
+ ## What's New in v0.8.21
42
+
43
+ **World's First: In-Memory Federated SQL Engine with Memory Acceleration**
44
+
45
+ ### HyperFederate: Query Data Where It Lives
46
+
47
+ ```
48
+ ┌────────────────────────────────────────────────────────────┐
49
+ │ ONE SPARQL QUERY │
50
+ │ ──────────────────────────────────────────────────────── │
51
+ │ Snowflake ◄─────┐ │
52
+ │ BigQuery ◄─────┼─── Apache Arrow Flight (zero-copy) │
53
+ │ DuckDB ◄─────┤ │
54
+ │ KGDB ◄─────┘ Virtual Tables + Catalog │
55
+ └────────────────────────────────────────────────────────────┘
56
+ ```
57
+
58
+ **Memory Acceleration**: Arrow Flight columnar transport. No serialization. No ETL. Data stays where it is.
59
+
60
+ **Virtual Tables**: Query external databases as if they were local tables. Schema detected automatically.
61
+
62
+ **Catalog**: Unified metadata layer across all data sources. One query, many databases.
63
+
64
+ ### Reasoning + Federation = Intelligence
65
+
66
+ - **Graph-Based Reasoning**: OWL inference, Datalog rules, SHACL validation
67
+ - **HyperMindAgent**: Schema-aware LLM planning with proof trails
68
+ - **ThinkingReasoner**: Step-by-step derivation chains
69
+ - **Pregel BSP**: Distributed graph algorithms
70
+
71
+ ---
42
72
 
43
73
  **All examples now in [hypermind-examples](https://github.com/gonnect-uk/hypermind-examples) repository**
44
74
 
@@ -109,7 +139,7 @@ That's **real SPARQL**, **real results**, **real proofs**. No mocking. No hardco
109
139
 
110
140
  ### Demo Validation Results (2025-12-24)
111
141
 
112
- All demos verified from local execution. See [hypermind-examples](https://github.com/gonnect-uk/hypermind-examples).
142
+ All demos verified and passing. See [hypermind-examples](https://github.com/gonnect-uk/hypermind-examples).
113
143
 
114
144
  | Demo | Tests | Pass Rate | What You'll See |
115
145
  |------|-------|-----------|-----------------|
@@ -127,6 +157,13 @@ All demos verified from local execution. See [hypermind-examples](https://github
127
157
  - Proofs are SHA-256 hashes over canonical derivation chains
128
158
  - LLM is optional—core reasoning is deterministic
129
159
 
160
+ **Key Features Demonstrated:**
161
+ - ThinkingReasoner with OWL property auto-detection
162
+ - RDF2Vec embeddings (384D, trained in-memory)
163
+ - HyperFederate (KGDB + Snowflake + BigQuery)
164
+ - Cryptographic proofs (SHA-256 per derivation)
165
+ - Episodic memory for pattern matching
166
+
130
167
  ---
131
168
 
132
169
  ## What's New in v0.8.7