cozo-memory 1.2.10 → 1.2.11
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 +3 -3
- package/dist/test-adaptive-retrieval.js +1 -1
- package/package.json +1 -1
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)
|
|
475
|
+
- GraphRAG-R1 (Yu et al., WWW 2026) - conceptual inspiration for adaptive retrieval
|
|
476
476
|
- HopRAG (ACL 2025)
|
|
477
477
|
- T-GRAG (Li et al., 2025)
|
|
478
|
-
- FEEG Framework (Samuel et al., 2026)
|
|
478
|
+
- FEEG Framework (Samuel et al., 2026) - conceptual inspiration for query intent classification
|
|
479
479
|
- Allan-Poe (arXiv:2511.00855)
|
|
@@ -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.
|
|
3
|
+
"version": "1.2.11",
|
|
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",
|