update_skills
Modifies and updates skills in the MemoryMesh Knowledge Graph by adjusting metadata, ownership, and properties for enhanced data accuracy and relevance.
Instructions
Update an existing skills in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
update_skills | Yes |
Input Schema (JSON Schema)
{
"properties": {
"update_skills": {
"additionalProperties": {
"description": "Any additional properties",
"type": "string"
},
"properties": {
"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]_abilities",
"type": "string"
},
"owner": {
"description": "The relationship between the skill and its owner.",
"items": {
"description": "Item in owner array",
"type": "string"
},
"type": "array"
}
},
"required": [],
"type": "object"
}
},
"required": [
"update_skills"
],
"type": "object"
}