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
"Maximum number of messages to return. When omitted, the endpoint returns its default page size. Use limit without a cursor to fetch the newest page for chat history.",
54
+
}),
55
+
before: Schema.optional(Schema.String).annotate({
56
+
description:
57
+
"Opaque pagination cursor for the item at the start of the current window. Returns messages older than this cursor. Mutually exclusive with after.",
58
+
}),
59
+
after: Schema.optional(Schema.String).annotate({
60
+
description:
61
+
"Opaque pagination cursor for the item at the end of the current window. Returns messages newer than this cursor. Mutually exclusive with before.",
description: "Retrieve projected v2 messages for a session directly from the message database.",
78
+
description:
79
+
"Retrieve projected v2 messages for a session. For chat clients, request the latest page with limit, page backward through older history with before, and catch up with newer messages using after.",
0 commit comments