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