update_list_item
Modify specific fields of an item within a list section in structured memory to ensure accurate and up-to-date project context.
Instructions
Update an existing item in a list section
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item_identifier | Yes | Identifier for the item to update (e.g., company name, contact name) | |
memory_id | Yes | The ID of the memory document to update | |
section | Yes | The section containing the item to update | |
updates | Yes | Fields to update with their new values |
Input Schema (JSON Schema)
{
"properties": {
"item_identifier": {
"description": "Identifier for the item to update (e.g., company name, contact name)",
"type": "string"
},
"memory_id": {
"description": "The ID of the memory document to update",
"type": "string"
},
"section": {
"description": "The section containing the item to update",
"type": "string"
},
"updates": {
"description": "Fields to update with their new values",
"type": "object"
}
},
"required": [
"memory_id",
"section",
"item_identifier",
"updates"
],
"type": "object"
}