fc_list_chat_messages
Retrieve chat messages from a specific thread in FluentCommunity to monitor conversations and review discussion history.
Instructions
List messages in a chat thread
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | The thread ID to get messages from | |
| limit | No | Number of messages to return |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Number of messages to return",
"type": "number"
},
"thread_id": {
"description": "The thread ID to get messages from",
"type": "number"
}
},
"required": [
"thread_id"
],
"type": "object"
}