move_list_item
Relocate an item within a structured memory document by specifying source and destination sections, ensuring organized knowledge management for project contexts.
Instructions
Move an item from one section to another
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_section | Yes | The source section containing the item | |
item_identifier | Yes | Identifier for the item to move (e.g., company name) | |
memory_id | Yes | The ID of the memory document to update | |
reason | No | Optional reason for the move (stored as metadata) | |
to_section | Yes | The destination section for the item |
Input Schema (JSON Schema)
{
"properties": {
"from_section": {
"description": "The source section containing the item",
"type": "string"
},
"item_identifier": {
"description": "Identifier for the item to move (e.g., company name)",
"type": "string"
},
"memory_id": {
"description": "The ID of the memory document to update",
"type": "string"
},
"reason": {
"description": "Optional reason for the move (stored as metadata)",
"type": "string"
},
"to_section": {
"description": "The destination section for the item",
"type": "string"
}
},
"required": [
"memory_id",
"from_section",
"to_section",
"item_identifier"
],
"type": "object"
}