save_chat_history
Converts chat conversations into organized Markdown files, capturing messages with timestamps and optional session IDs for easy reference.
Instructions
Save chat history as a Markdown file
Args:
messages: List of chat messages, each containing role and content
conversation_id: Optional conversation ID for file naming
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversation_id | No | ||
messages | Yes |
Input Schema (JSON Schema)
{
"properties": {
"conversation_id": {
"default": null,
"title": "Conversation Id",
"type": "string"
},
"messages": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Messages",
"type": "array"
}
},
"required": [
"messages"
],
"title": "save_chat_historyArguments",
"type": "object"
}