cozo-memory 1.2.10 → 1.2.12

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
@@ -53,7 +53,7 @@ Now add the server to your MCP client (e.g. Claude Desktop) – see [Integration
53
53
 
54
54
  ⏱️ **Time-Travel Queries** - Version all changes via CozoDB Validity; query any point in history with full audit trails
55
55
 
56
- 🎯 **GraphRAG-R1 Adaptive Retrieval** - Intelligent system with Progressive Retrieval Attenuation (PRA) and Cost-Aware F1 (CAF) scoring that learns from usage
56
+ 🎯 **GraphRAG-R1-Inspired Adaptive Retrieval** - Intelligent system with Progressive Retrieval Attenuation (PRA) and Cost-Aware F1 (CAF) scoring, conceptually inspired by GraphRAG-R1 (Yu et al., WWW 2026) and adapted for CozoDB, that learns from usage
57
57
 
58
58
  ⏳ **Temporal Conflict Resolution** - Automatic detection and resolution of contradictory observations with semantic analysis and audit preservation
59
59
 
@@ -472,8 +472,8 @@ Built with:
472
472
  - [FastMCP](https://github.com/jlowin/fastmcp) - MCP server framework
473
473
 
474
474
  Research foundations:
475
- - GraphRAG-R1 (Yu et al., WWW 2026)
476
- - HopRAG (ACL 2025)
477
- - T-GRAG (Li et al., 2025)
478
- - FEEG Framework (Samuel et al., 2026)
479
- - Allan-Poe (arXiv:2511.00855)
475
+ - GraphRAG-R1 (Yu et al., WWW 2026) - conceptual inspiration for adaptive retrieval
476
+ - HopRAG (ACL 2025) - conceptual inspiration for multi-hop reasoning
477
+ - T-GRAG (Li et al., 2025) - conceptual inspiration for temporal conflict resolution
478
+ - FEEG Framework (Samuel et al., 2026) - conceptual inspiration for query intent classification
479
+ - Allan-Poe (arXiv:2511.00855) - conceptual inspiration for dynamic fusion
@@ -8,7 +8,7 @@ const embedding_service_1 = require("./embedding-service");
8
8
  const adaptive_retrieval_1 = require("./adaptive-retrieval");
9
9
  const DB_PATH = 'memory_db.cozo.db';
10
10
  async function testAdaptiveRetrieval() {
11
- console.log('=== Testing GraphRAG-R1 Adaptive Retrieval ===\n');
11
+ console.log('=== Testing GraphRAG-R1-Inspired Adaptive Retrieval ===\n');
12
12
  const db = new cozo_node_1.CozoDb('sqlite', DB_PATH);
13
13
  const embeddingService = new embedding_service_1.EmbeddingService();
14
14
  const adaptiveRetrieval = new adaptive_retrieval_1.AdaptiveGraphRetrieval(db, embeddingService, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozo-memory",
3
- "version": "1.2.10",
3
+ "version": "1.2.12",
4
4
  "mcpName": "io.github.tobs-code/cozo-memory",
5
5
  "description": "Local-first persistent memory system for AI agents with hybrid search, graph reasoning, and MCP integration",
6
6
  "main": "dist/index.js",