Skip to content

Commit 9908957

Browse files
committed
🧠 fix: Memory-related Docs
1 parent 47a5e96 commit 9908957

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

pages/docs/configuration/librechat_yaml/object_structure/memory.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ memory:
1414
personalize: true
1515
messageWindowSize: 5
1616
agent:
17-
provider: "openai"
17+
provider: "openAI"
1818
model: "gpt-4"
1919
instructions: "You are a helpful assistant that remembers user preferences and context."
2020
model_parameters:
@@ -105,7 +105,7 @@ memory:
105105

106106
<OptionTable
107107
options={[
108-
['agent', 'Object | Union', 'Configures the agent responsible for memory processing. Can be either a reference to an existing agent by ID or a complete agent configuration.', 'agent: { provider: "openai", model: "gpt-4" }'],
108+
['agent', 'Object | Union', 'Configures the agent responsible for memory processing. Can be either a reference to an existing agent by ID or a complete agent configuration.', 'agent: { provider: "openAI", model: "gpt-4" }'],
109109
]}
110110
/>
111111

@@ -128,7 +128,7 @@ For more control, you can define a complete agent configuration:
128128
```yaml filename="memory / agent (custom)"
129129
memory:
130130
agent:
131-
provider: "openai"
131+
provider: "openAI"
132132
model: "gpt-4"
133133
instructions: "You are a memory assistant that helps maintain conversation context and user preferences."
134134
model_parameters:
@@ -144,7 +144,7 @@ When using custom agent configuration, the following fields are available:
144144
**provider** (required)
145145
<OptionTable
146146
options={[
147-
['provider', 'String', 'Specifies the AI provider for the memory agent (e.g., "openai", "anthropic", "google").', 'provider: "openai"'],
147+
['provider', 'String', 'Specifies the AI provider for the memory agent (e.g., "openAI", "anthropic", "google").', 'provider: "openAI"'],
148148
]}
149149
/>
150150
@@ -188,7 +188,7 @@ memory:
188188
personalize: true
189189
messageWindowSize: 8
190190
agent:
191-
provider: "openai"
191+
provider: "openAI"
192192
model: "gpt-4"
193193
instructions: |
194194
Store memory using only the specified validKeys. For user_preferences: save

pages/docs/features/memory.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ description: Enable conversation memory and personalization features in LibreCha
1010
Memory in LibreChat allows the system to remember information across conversations, providing a more personalized and context-aware experience. When enabled, the AI can recall user preferences, important facts, and conversation context to enhance future interactions.
1111

1212
<Callout type="important" title="⚠️ Configuration Required">
13-
Memory functionality must be explicitly configured in your `librechat.yaml` file to work. It is not enabled by default.
13+
- Memory functionality must be explicitly configured in your `librechat.yaml` file to work. It is not enabled by default.
14+
- Currently, memory only works when using agents.
1415
</Callout>
1516

1617
## Key Features

0 commit comments

Comments
 (0)