delete_currency
Remove a specific currency from the MemoryMesh Knowledge Graph by specifying its name. Simplifies data management and ensures accurate graph updates.
Instructions
Delete an existing currency from the knowledge graph
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| delete_currency | Yes | Delete parameters for currency |
Input Schema (JSON Schema)
{
"properties": {
"delete_currency": {
"description": "Delete parameters for currency",
"properties": {
"name": {
"description": "The name of the currency to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"required": [
"delete_currency"
],
"type": "object"
}