mark_important
Boost or reduce an entity's relevance score in the Elasticsearch Knowledge Graph, enhancing its importance in searches or memory-based queries. Specify memory zone and optionally create new entities if needed.
Instructions
Mark entity as important in knowledge graph (memory) by boosting its relevance score
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| auto_create | No | Whether to automatically create the entity if it doesn't exist (default: false) | |
| important | Yes | Set as important (true - multiply relevance by 10) or not (false - divide relevance by 10) | |
| memory_zone | Yes | Optional memory zone specifier. If provided, entity will be marked in this zone. | |
| name | Yes | Entity name | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "auto_create": {
      "default": false,
      "description": "Whether to automatically create the entity if it doesn't exist (default: false)",
      "type": "boolean"
    },
    "important": {
      "description": "Set as important (true - multiply relevance by 10) or not (false - divide relevance by 10)",
      "type": "boolean"
    },
    "memory_zone": {
      "description": "Optional memory zone specifier. If provided, entity will be marked in this zone.",
      "type": "string"
    },
    "name": {
      "description": "Entity name",
      "type": "string"
    }
  },
  "required": [
    "memory_zone",
    "name",
    "important"
  ],
  "type": "object"
}