get_conversation_history
Retrieve message history for a conversation using the conversation ID to review past interactions and maintain context.
Instructions
Retrieve message history for a conversation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversationId | Yes | Conversation ID | |
limit | No | Maximum number of messages to return |
Input Schema (JSON Schema)
{
"properties": {
"conversationId": {
"description": "Conversation ID",
"type": "string"
},
"limit": {
"description": "Maximum number of messages to return",
"type": "number"
}
},
"required": [
"conversationId"
],
"type": "object"
}