Merged
Conversation
chrisbaker2000
pushed a commit
to chrisbaker2000/agent-memory-server
that referenced
this pull request
Mar 11, 2026
1. Vocabulary path configurable via Settings (redis#7): - Added settings.vocabulary_path (default: ~/.openclaw/config/memory-vocabulary.json) - extraction.py reads from settings instead of hardcoded path - Overridable via VOCABULARY_PATH env var 2. Include source_user in memory hash (redis#8/redis#10): - generate_memory_hash() now includes source_user in hash inputs - generate_memory_hash_from_fields() accepts source_user parameter - update_memory_hash_if_text_changed() passes source_user through - Ensures memories from different users with identical text are not falsely deduplicated in multi-user system 3. Fix redisvl_vector_dimensions type from str to int (redis#13): - Changed Settings.redisvl_vector_dimensions from str to int - Removed unnecessary int() cast in _get_embedding_dimensions() - Pydantic handles env var string-to-int coercion automatically 4. Add Claude 4.6 models (redis#14): - Added claude-sonnet-4-6 and claude-opus-4-6 to ModelNameLiteral - Added corresponding MODEL_CONFIGS entries (200k tokens) 5. Fix confusing indentation after raise (redis#4): - Reindented comment after raise ValueError in merge_memories_with_llm - Was inside the if block (unreachable), now correctly outside 6. Consolidate duplicate MockEmbeddings: - Removed duplicate class from test_memory_vector_db.py - Now imports from tests.conftest (single definition) Co-Authored-By: Claude <noreply@anthropic.com>
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.
No description provided.