docs(memory): document agent.enabled opt-in (ref #12886) - #698
Open
adamscross04 wants to merge 1 commit into
Open
docs(memory): document agent.enabled opt-in (ref #12886)#698adamscross04 wants to merge 1 commit into
adamscross04 wants to merge 1 commit into
Conversation
Documents the breaking change from PR #12886 (merged 2026-05-01): `memory.agent.enabled: true` is now required for the automatic memory extraction agent to run. Configs with an `agent` block but no explicit `enabled: true` log a startup warning and silently skip extraction — manual memory operations still work. Changes: - add `enabled: true` to every `agent:` example (top example, agent-by-id, custom agent, complete example, custom-endpoint example) - document `enabled` as an Agent Configuration Field with the opt-in default and a link back to PR #12886 - add an info callout under the top-level example showing the exact warning text, and a bullet under Notes summarising the opt-in behaviour Fixes documentation gap surfaced by BT prod: memory extraction stopped silently after upgrading past PR #12886 because the docs still showed the pre-change example.
|
@adamscross04 is attempting to deploy a commit to the LibreChat's projects Team on Vercel. A member of the Team first needs to authorize it. |
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
memory.agent.enabled: trueis now required for the automatic memory-extraction agent to run.agentblock but no explicitenabled: truecurrently log a startup warning and silently skip automatic extraction. Manual memory operations still work.Changes
enabled: trueto everyagent:example inmemory.mdx:enabledas an Agent Configuration Field, noting the opt-in default and linking back to PR #12886.Test plan
.mdxincontent/docs/, no build tooling changes.packages/data-schemas/src/app/memory.ts— this PR quotes it verbatim.Context / motivation
Surfaced by production logs on one of our self-hosted instances (BT). First warning fired 2026-07-14 at 15:38 UTC after a deploy picked up a LibreChat version past the merge of #12886. Zero automatic memory writes have landed since. The referenced example in
librechat.example.yamlwas updated in that PR, but this MDX page was missed.