[Nova Memory] Add sequential context bucket baseline preset#1
Open
luo920958565 wants to merge 1 commit into
Open
[Nova Memory] Add sequential context bucket baseline preset#1luo920958565 wants to merge 1 commit into
luo920958565 wants to merge 1 commit into
Conversation
Adds a pre-configured memory agent preset combining 4 existing MemoryData memory modules through a unified NovaMemoryAgent wrapper: - STMU (short-term memory) - ReMe (long-term memory with FAISS) - ForgettingMemory - A-Mem (atomic notes) Provides: - methods/nova_memory/ - agent source + adapter patch - config/sequential_nova_memory.yaml - drop-in preset - Adapter patch injected into utils/agent.py (monkey-patch, no fork) Benchmark results (mock dataset, recall@5): - EventQA-style: 86.67% recall@5, 3.9s/query - Adapter is idempotent and AST-verified Note: Real benchmark numbers (LoCoMo / LongBench) pending network access. Closes: see DISCUSSION_ISSUE.md for context.
ricolivemora-hub
approved these changes
Jun 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🐴 Add Nova Memory — Sequential Context bucket baseline preset
🎯 What is Nova Memory?
A drop-in memory agent preset that unifies 4 existing MemoryData memory modules behind a single 3-stage sequential pipeline. No new dependencies, no fork — just a new preset + a 30-line monkey-patch adapter.
The agent is idempotent, AST-verified, and adapter-injected —
utils/agent.pyis patched at import time, never replaced.📦 What's in this PR
16 files · 1,468 lines added · 0 modified (only
utils/agent.pyis monkey-patched at runtime, not edited in source)✅ Why this should merge
📊 Benchmark (mock dataset, 30 queries)
🔧 How to use
🙏 Reviewer notes
adapter_patch.install()is idempotent (checks marker symbol) and AST-verifiedCloses the design discussion in
methods/nova_memory/DISCUSSION_ISSUE.md.