update_currency
Modify currency details in the MemoryMesh knowledge graph, including name, description, owner, quantity, and metadata, to ensure accurate and up-to-date financial information.
Instructions
Update an existing currency in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
update_currency | Yes |
Input Schema (JSON Schema)
{
"properties": {
"update_currency": {
"additionalProperties": {
"description": "Any additional properties",
"type": "string"
},
"properties": {
"description": {
"description": "A brief description of the currency.",
"type": "string"
},
"metadata": {
"description": "An array of metadata contents to replace the existing metadata",
"items": {
"description": "Item in metadata array",
"type": "string"
},
"type": "array"
},
"name": {
"description": "The name of the currency.",
"type": "string"
},
"owner": {
"description": "The relationship between the currency and its owner.",
"items": {
"description": "Item in owner array",
"type": "string"
},
"type": "array"
},
"quantity": {
"description": "The amount of this currency owned.",
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"required": [
"update_currency"
],
"type": "object"
}