You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/docs/configuration/librechat_yaml/object_structure/memory.mdx
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ memory:
14
14
personalize: true
15
15
messageWindowSize: 5
16
16
agent:
17
-
provider: "openai"
17
+
provider: "openAI"
18
18
model: "gpt-4"
19
19
instructions: "You are a helpful assistant that remembers user preferences and context."
20
20
model_parameters:
@@ -105,7 +105,7 @@ memory:
105
105
106
106
<OptionTable
107
107
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" }'],
109
109
]}
110
110
/>
111
111
@@ -128,7 +128,7 @@ For more control, you can define a complete agent configuration:
128
128
```yaml filename="memory / agent (custom)"
129
129
memory:
130
130
agent:
131
-
provider: "openai"
131
+
provider: "openAI"
132
132
model: "gpt-4"
133
133
instructions: "You are a memory assistant that helps maintain conversation context and user preferences."
134
134
model_parameters:
@@ -144,7 +144,7 @@ When using custom agent configuration, the following fields are available:
144
144
**provider** (required)
145
145
<OptionTable
146
146
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"'],
148
148
]}
149
149
/>
150
150
@@ -188,7 +188,7 @@ memory:
188
188
personalize: true
189
189
messageWindowSize: 8
190
190
agent:
191
-
provider: "openai"
191
+
provider: "openAI"
192
192
model: "gpt-4"
193
193
instructions: |
194
194
Store memory using only the specified validKeys. For user_preferences: save
Copy file name to clipboardExpand all lines: pages/docs/features/memory.mdx
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,8 @@ description: Enable conversation memory and personalization features in LibreCha
10
10
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.
0 commit comments