open_nodes
Retrieve specific entities from a knowledge graph by providing their names. Enhances structured thinking and problem-solving within AI workflows.
Instructions
Open specific nodes in the knowledge graph by their names
Input Schema
Name | Required | Description | Default |
---|---|---|---|
names | Yes | Array of entity names to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"names": {
"description": "Array of entity names to retrieve",
"items": {
"minLength": 1,
"type": "string"
},
"type": "array"
}
},
"required": [
"names"
],
"type": "object"
}