rust-kgdb 0.4.3 → 0.4.4

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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -390,6 +390,13 @@ rust-kgdb includes a complete ontology engine based on W3C standards.
390
390
 
391
391
  ## Production Example: Fraud Detection
392
392
 
393
+ **Data Sources:** Example patterns based on [NICB (National Insurance Crime Bureau)](https://www.nicb.org/) published fraud statistics:
394
+ - Staged accidents: 20% of insurance fraud
395
+ - Provider collusion: 25% of fraud claims
396
+ - Ring operations: 40% of organized fraud
397
+
398
+ **Pattern Recognition:** Circular payment detection mirrors real SIU (Special Investigation Unit) methodologies from major insurers.
399
+
393
400
  ```javascript
394
401
  const { GraphDB, GraphFrame, EmbeddingService, DatalogProgram, evaluateDatalog } = require('rust-kgdb')
395
402
 
@@ -485,6 +492,14 @@ node examples/fraud-detection-agent.js
485
492
 
486
493
  ## Production Example: Underwriting
487
494
 
495
+ **Data Sources:** Rating factors based on [ISO (Insurance Services Office)](https://www.verisk.com/insurance/brands/iso/) industry standards:
496
+ - NAICS codes: US Census Bureau industry classification
497
+ - Territory modifiers: Based on catastrophe exposure (hurricane zones FL, earthquake CA)
498
+ - Loss ratio thresholds: Industry standard 0.70 referral trigger
499
+ - Experience modification: Standard 5/10 year breaks
500
+
501
+ **Premium Formula:** `Base Rate × Exposure × Territory Mod × Experience Mod × Loss Mod` - standard ISO methodology.
502
+
488
503
  ```javascript
489
504
  const { GraphDB, GraphFrame, DatalogProgram, evaluateDatalog } = require('rust-kgdb')
490
505
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-kgdb",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
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",