feat(acp): support persistent checkpointer/sessions and relax visibility#536
Open
无心戈 (wanxger) wants to merge 2 commits into
Open
feat(acp): support persistent checkpointer/sessions and relax visibility#536无心戈 (wanxger) wants to merge 2 commits into
无心戈 (wanxger) wants to merge 2 commits into
Conversation
|
deepagents-acp
deepagents
@langchain/sandbox-standard-tests
@langchain/daytona
@langchain/deno
@langchain/modal
@langchain/node-vfs
@langchain/quickjs
commit: |
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.
Summary
Add persistent session/checkpointer support to the ACP server and relax visibility for extensibility.
Changes
feat: persistent checkpointer and sessions (
types.ts,server.ts)checkpointeroption — allows passing a customBaseCheckpointSaver(e.g.SqliteSaver) to persist conversation history across server restarts. Defaults toMemorySaver.sessionsoption — allows passing a customMap<string, SessionState>for persisting session metadata. Defaults to in-memoryMap.handleLoadSession()now re-creates the agent on demand when recovering a session after server restart.fix: guard
sessions.clear()against persistent sessions (server.ts)stop()no longer callssessions.clear()when a custom sessions map was provided, preventing accidental data loss.refactor: relax visibility from
privatetoprotected(server.ts)agents,agentConfigs,sessions,checkpointer,acpBackendscreateAgentHandler(),handleLoadSession(),createAgent(),log()These changes enable subclassing
DeepAgentsServerto customize behavior.