From b3123bca15a665a20996f5ddfb510452f2c61b67 Mon Sep 17 00:00:00 2001 From: fuleinist Date: Thu, 26 Feb 2026 17:19:25 +0800 Subject: [PATCH 1/2] fix: remove unused MongoDB init volume mount and hardcoded paths - Removed ./docker/mongodb/init volume mount (directory doesn't exist) - Changed config.json root from hardcoded /Users/admin/Desktop to . --- config.json | 2 +- docker-compose.yaml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/config.json b/config.json index 0bb2f9b3..1dfb2b83 100644 --- a/config.json +++ b/config.json @@ -4,7 +4,7 @@ "last_updated": "2025-01-03", "paths": { - "root": "/Users/admin/Desktop/episodic_memory/memsys", + "root": ".", "data": { "description": "Raw data storage paths", diff --git a/docker-compose.yaml b/docker-compose.yaml index 29407030..373f860b 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -14,7 +14,6 @@ services: - "27017:27017" volumes: - mongodb_data:/data/db - - ./docker/mongodb/init:/docker-entrypoint-initdb.d networks: - memsys-network healthcheck: From 9cd5e5a8ba273a8f24c8a648bb056ceac44bbeb1 Mon Sep 17 00:00:00 2001 From: fuleinist Date: Thu, 26 Feb 2026 17:30:27 +0800 Subject: [PATCH 2/2] fix: remove duplicate 'rrf' mode in docstring The 'rrf' mode was listed twice in the docstring, causing confusion. Removed the duplicate entry. --- demo/utils/simple_memory_manager.py | 1 - 1 file changed, 1 deletion(-) diff --git a/demo/utils/simple_memory_manager.py b/demo/utils/simple_memory_manager.py index f5526650..e438498c 100644 --- a/demo/utils/simple_memory_manager.py +++ b/demo/utils/simple_memory_manager.py @@ -248,7 +248,6 @@ async def search( - "keyword": Keyword retrieval (BM25) - "vector": Vector retrieval - "hybrid": Keyword + Vector + Rerank - - "rrf": Keyword + Vector + RRF fusion - "agentic": LLM-guided multi-round retrieval show_details: Whether to show detailed information (default: True)