@@ -606,7 +606,7 @@ async def search_memories(
606606 :param query: Optional query to search memory content and path
607607 :param count: Number of memories to return (default 5)
608608 :param type: "user", "context", or "all"
609- :param path: Optional logical memory path prefix
609+ :param path: Optional memory path prefix
610610 :param memory_id: Optional exact memory ID to read
611611 :return: JSON with matching memories and their dates
612612 """
@@ -661,7 +661,7 @@ async def add_memory(
661661
662662 :param content: The memory content to store
663663 :param type: Use "user" for facts/preferences about the user, or "context" for other durable context
664- :param path: Optional logical memory path
664+ :param path: Optional memory path
665665 :return: Confirmation that the memory was stored
666666 """
667667 if __request__ is None :
@@ -695,6 +695,7 @@ async def update_memory(
695695
696696 Use type "user" for facts, preferences, or instructions about the user.
697697 Use type "context" for other durable context that may help future chats.
698+ Use path when there is a clear path for the memory. Leave path empty when unsure.
698699
699700 Operation shapes:
700701 - {"action": "add", "content": "...", "type": "user"|"context", "path": "..."}
@@ -735,7 +736,7 @@ async def replace_memory_content(
735736 :param memory_id: The ID of the memory to update
736737 :param content: The new content for the memory
737738 :param type: Optional "user" or "context" type for the updated memory
738- :param path: Optional logical memory path
739+ :param path: Optional memory path
739740 :return: Confirmation that the memory was updated
740741 """
741742 if __request__ is None :
0 commit comments