consolidate_memories
Merge similar memories using AI to resolve conflicts and create consolidated notes. Supports dry-run preview or direct application modes for memory cluster management.
Instructions
Consolidate similar memories using LLM-driven merging (NOT YET IMPLEMENTED).
This tool will use an LLM to intelligently merge similar memories,
resolve conflicts, and create consolidated notes. Currently returns
a placeholder message.
Args:
cluster_id: Cluster ID to consolidate.
mode: Operation mode - "dry_run" or "apply".
Returns:
Consolidation results (when implemented).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_id | Yes | ||
mode | No | dry_run |
Input Schema (JSON Schema)
{
"properties": {
"cluster_id": {
"title": "Cluster Id",
"type": "string"
},
"mode": {
"default": "dry_run",
"title": "Mode",
"type": "string"
}
},
"required": [
"cluster_id"
],
"type": "object"
}