-
Notifications
You must be signed in to change notification settings - Fork 170
feat: wire clustering into ingestion pipeline and API #1241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
o-love
wants to merge
17
commits into
main
Choose a base branch
from
cluster-integration
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
e35e791
refactor: modernize storage interface types (list→Sequence, dict→Mapp…
o-love fd6b594
refactor: propagate AsyncIterator through semantic memory module
o-love e311c7e
fix: resolve ruff and ty lint errors in storage interface refactor
o-love f45c502
fix: convert Sequence/Mapping to list/dict at API response boundary
o-love c8848ca
fix: ruff format router.py ternary expressions
o-love d9fd612
Merge branch 'main' into storage-interface-refactor
malatewang a7a2428
Update packages/server/src/memmachine_server/semantic_memory/semantic…
malatewang 8723f41
Update packages/server/src/memmachine_server/common/utils.py
malatewang 95edd70
Fix logger.debug formatting for add_messages method
malatewang 7329565
fix: ruff format long line in merge_async_iterators
o-love 6fdfd35
Merge branch 'main' into storage-interface-refactor
o-love b83c4ca
Fix semantic ingestion type-check test
o-love e6c9962
feat: add cluster engine for semantic message grouping
o-love 3846d21
feat: wire clustering into ingestion pipeline and API
o-love f7ae24e
fix: add get_reranker to _ResourceManager in integration test
o-love bc00c86
Fix lint errors
o-love 7a8c459
fix: make feature cap test trigger ingestion
o-love File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: wire clustering into ingestion pipeline and API
- Loading branch information
commit 3846d212ee774aaf9de7ecd723b33c06888dc75e
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -223,3 +223,4 @@ site/ | |
|
|
||
| # Ignore documentation generated by extensions | ||
| .spelling | ||
| .worktrees/ | ||
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The server update logic relies on distinguishing “field omitted” vs “field explicitly set to null” (e.g.,
cluster_idle_ttl_seconds/cluster_max_time_gap_seconds/cluster_split_rerankerusemodel_fields_setso users can clear values). This client helper currently only includes keys when the value is non-None and then doesmodel_dump(exclude_none=True), so there’s no way for callers to send an explicitnullto clear these fields. Consider using a sentinel default (e.g.,UNSET) or adding explicitclear_*parameters so the client can exercise the full API.