-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
refactor(ltm): redesign long-term memory with context compaction (reopen of #8144) #8226
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
RC-CHN
wants to merge
9
commits into
AstrBotDevs:master
Choose a base branch
from
RC-CHN:refactor-ltm
base: master
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 all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
a74d29f
refactor(ltm): redesign long-term memory with context compaction
RC-CHN b42c1d1
fix(ltm): handle malformed JSON in tool args and clean up lock on ses…
RC-CHN 3826e13
fix(ltm): guard against duplicate system prompt note injection
RC-CHN bd2500c
fix(ltm): fall back to user message when internal marker parsing fails
RC-CHN e10d6d3
fix(ltm): release session lock during LLM summary generation
RC-CHN 6aa43d6
fix(ltm): trim raw_records in handle_message to prevent unbounded growth
RC-CHN c1bd4ad
perf(ltm): use len(s) instead of len(s.encode()) in trim loop
RC-CHN 8a501bd
feat(ltm): make user segment truncation limits configurable
RC-CHN 031290f
feat(ltm): pre-fill default LTM summary prompt in config and i18n
RC-CHN 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
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| from ..message import Message | ||
| from .config import ContextConfig | ||
| from .manager import ContextManager | ||
|
|
||
|
|
||
| class RequestContextGuard: | ||
| """Request-time context guard before sending messages to a provider. | ||
|
|
||
| This guard is intentionally scoped to a single provider request. It may | ||
| truncate or compress the in-flight messages to keep the current request | ||
| within model/provider limits, but it does not own persistent history and | ||
| should not be treated as the memory-layer compactor. | ||
| """ | ||
|
|
||
| def __init__(self, config: ContextConfig) -> None: | ||
| self.config = config | ||
| self._manager = ContextManager(config) | ||
|
|
||
| async def process( | ||
| self, | ||
| messages: list[Message], | ||
| trusted_token_usage: int = 0, | ||
| ) -> list[Message]: | ||
| """Apply request-time context guarding to messages.""" | ||
| return await self._manager.process( | ||
| messages, | ||
| trusted_token_usage=trusted_token_usage, | ||
| ) |
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.
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.
Uh oh!
There was an error while loading. Please reload this page.