open_nodes
Retrieve specific knowledge graph entities by their names, enabling precise data access and enhanced query capabilities for conversation-based memory systems.
Instructions
Open specific nodes in the knowledge graph by their names
Input Schema
Name | Required | Description | Default |
---|---|---|---|
names | Yes | An array of entity names to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"names": {
"description": "An array of entity names to retrieve",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"names"
],
"type": "object"
}