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
return"Search memory entries for the current session using PostgreSQL web-style search syntax. Leave q empty or use * to list all memories for the session. Current UTC date, time, datetime, and timezone are returned as dynamic memory entries."
131
+
return"Search memory entries for the current session and its parent sessions using PostgreSQL web-style search syntax. Leave q empty or use * to list all memories in that ancestry. Current UTC date, time, datetime, and timezone are returned as dynamic memory entries."
Copy file name to clipboardExpand all lines: memory/schema/memory.go
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ type MemorySelector struct {
44
44
// MemoryListRequest represents a request to list or search memory entries.
45
45
typeMemoryListRequeststruct {
46
46
pg.OffsetLimit
47
-
Session*uuid.UUID`json:"session,omitzero" help:"Restrict results to a single session" optional:""`
47
+
Session*uuid.UUID`json:"session,omitzero" help:"Restrict results to a session and recursively include its parent sessions" optional:""`
48
48
Qstring`json:"q,omitempty" help:"Web-style text query matched against memory keys and values using PostgreSQL websearch syntax; leave empty or use * to list all memories for the session" optional:""`
49
49
Start*time.Time`json:"start,omitempty" help:"Return memories on or after this timestamp" optional:""`
50
50
End*time.Time`json:"end,omitempty" help:"Return memories on or before this timestamp" optional:""`
0 commit comments