Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Advance read cursor for current user in a conversation.
| Field | Value |
|---|
| Name | update_conversation_read_state |
| Group | Conversations |
Playground
{
"type": "object",
"properties": {
"conversation_id": {
"type": "string",
"format": "uuid",
"description": "Conversation identifier that scopes the request."
},
"message_id": {
"type": "string",
"format": "uuid",
"description": "Provide the message id."
}
},
"required": [
"conversation_id",
"message_id"
],
"additionalProperties": false,
"description": "Input schema for the update_conversation_read_state tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"updated": {
"type": "boolean",
"description": "The updated associated with this tool result."
}
},
"required": [
"updated"
],
"additionalProperties": false,
"description": "Structured result returned by the update_conversation_read_state tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}