-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
refactor(ltm): redesign long-term memory with append-only incremental contexts #8144
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
31
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 20 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
c8437f8
refactor(ltm): redesign long-term memory with append-only incrementa…
RC-CHN d76e835
test(ltm): add 37 unit tests for long-term memory v2 rewrite
RC-CHN ba4b7c1
fix:@bot prompt inclusion in contexts
RC-CHN 590fb46
test(ltm): add 10 integration tests
RC-CHN b7f5a73
style: format code
RC-CHN 40bd637
fix(long_term_memory): prevent exponential context inflation from to…
RC-CHN dce4d2b
fix(long_term_memory): dead code in _trim_raw_records size-based pruning
RC-CHN ac5dfed
fix(long_term_memory): correct CHATROOM_SYSTEM_NOTE and harden _parse…
RC-CHN 94e2c7c
style: format code
RC-CHN 2b2c2d4
feat: add truncate i18n
RC-CHN 71d711c
fix(agent): wrap async iterator next call for create_task typing
RC-CHN b853d4d
refactor(agent): move conversation compaction to session layer, make …
RC-CHN 56909ab
feat(long_term_memory): add LTM round compaction with two strategies
RC-CHN f0d1629
feat(long_term_memory): expose MAX_RAW_BYTES as configurable ltm_raw_…
RC-CHN b547f3c
test(long_term_memory): add LTM compaction tests
RC-CHN 19138b9
style: format code
RC-CHN 3a08305
feat(long_term_memory): burst-drop compaction triggers, remove group_…
RC-CHN 65b112d
docs(i18n): clarify ltm_raw_records_max_bytes hint across 3 locales
RC-CHN d85d329
fix(long_term_memory): guard against empty LLM summary response
RC-CHN c698b2d
fix(long_term_memory): add cooldown for LLM summary retry on failure
RC-CHN c858d6d
style: format code
RC-CHN 1df41ba
fix(long_term_memory): auto-resolve current chat model when ltm_summa…
RC-CHN 942ae2d
test(long_term_memory): cover history_tool_result_truncate=False path
RC-CHN 280cc08
style: format code
RC-CHN 74b430e
Merge remote-tracking branch 'origin/master' into refactor-ltm
RC-CHN 54695bb
fix(long_term_memory): use per-session locks for LTM state
RC-CHN 47b83e1
test(agent): cover guarded context refresh in tool loop
RC-CHN 780138b
fix(agent): defer history compaction until turn limit is exceeded
RC-CHN 68fd4e3
fix(agent): resolve default provider for history compression
RC-CHN c63a86a
Merge remote-tracking branch 'origin/master' into refactor-ltm
RC-CHN bd4b8d8
fix(core): decouple request-time guard from persistent compaction
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
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.