update_inventory
Modify and manage existing inventory data in the MemoryMesh knowledge graph by updating item lists, ownership details, and metadata for accurate representation.
Instructions
Update an existing inventory in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
update_inventory | Yes |
Input Schema (JSON Schema)
{
"properties": {
"update_inventory": {
"additionalProperties": {
"description": "Any additional properties",
"type": "string"
},
"properties": {
"items": {
"description": "List of items in the inventory.",
"items": {
"description": "Item in items array",
"type": "string"
},
"type": "array"
},
"metadata": {
"description": "An array of metadata contents to replace the existing metadata",
"items": {
"description": "Item in metadata array",
"type": "string"
},
"type": "array"
},
"name": {
"description": "[Entity]_inventory.",
"type": "string"
},
"owner": {
"description": "The entity that owns this inventory.",
"items": {
"description": "Item in owner array",
"type": "string"
},
"type": "array"
}
},
"required": [],
"type": "object"
}
},
"required": [
"update_inventory"
],
"type": "object"
}