fix: update /memory command to say "memory" instead of "memory blocks" (#1058)
Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
@@ -2699,7 +2699,7 @@ export default function App({
|
|||||||
? [
|
? [
|
||||||
"→ **/agents** list all agents",
|
"→ **/agents** list all agents",
|
||||||
"→ **/resume** resume a previous conversation",
|
"→ **/resume** resume a previous conversation",
|
||||||
"→ **/memory** view your agent's memory blocks",
|
"→ **/memory** view your agent's memory",
|
||||||
"→ **/init** initialize your agent's memory",
|
"→ **/init** initialize your agent's memory",
|
||||||
"→ **/remember** teach your agent",
|
"→ **/remember** teach your agent",
|
||||||
]
|
]
|
||||||
@@ -11496,7 +11496,7 @@ Plan file path: ${planFilePath}`;
|
|||||||
? [
|
? [
|
||||||
"→ **/agents** list all agents",
|
"→ **/agents** list all agents",
|
||||||
"→ **/resume** resume a previous conversation",
|
"→ **/resume** resume a previous conversation",
|
||||||
"→ **/memory** view your agent's memory blocks",
|
"→ **/memory** view your agent's memory",
|
||||||
"→ **/init** initialize your agent's memory",
|
"→ **/init** initialize your agent's memory",
|
||||||
"→ **/remember** teach your agent",
|
"→ **/remember** teach your agent",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ export const commands: Record<string, Command> = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
"/memory": {
|
"/memory": {
|
||||||
desc: "View your agent's memory blocks",
|
desc: "View your agent's memory",
|
||||||
order: 15,
|
order: 15,
|
||||||
noArgs: true,
|
noArgs: true,
|
||||||
handler: () => {
|
handler: () => {
|
||||||
|
|||||||
@@ -160,7 +160,7 @@ export function MemoryTabViewer({
|
|||||||
View your agent's memory
|
View your agent's memory
|
||||||
</Text>
|
</Text>
|
||||||
</Box>
|
</Box>
|
||||||
<Text dimColor>{" "}Loading memory blocks...</Text>
|
<Text dimColor>{" "}Loading memory...</Text>
|
||||||
<Box marginTop={1}>
|
<Box marginTop={1}>
|
||||||
<Text dimColor>{" "}Esc cancel</Text>
|
<Text dimColor>{" "}Esc cancel</Text>
|
||||||
</Box>
|
</Box>
|
||||||
@@ -182,7 +182,7 @@ export function MemoryTabViewer({
|
|||||||
View your agent's memory
|
View your agent's memory
|
||||||
</Text>
|
</Text>
|
||||||
</Box>
|
</Box>
|
||||||
<Text dimColor>{" "}No memory blocks attached to this agent.</Text>
|
<Text dimColor>{" "}No memory attached to this agent.</Text>
|
||||||
<Box marginTop={1}>
|
<Box marginTop={1}>
|
||||||
<Text dimColor>{" "}Esc cancel</Text>
|
<Text dimColor>{" "}Esc cancel</Text>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
Reference in New Issue
Block a user