search_nodes
Locate and retrieve relevant entities in a knowledge graph by executing precise queries to support structured reasoning and problem-solving tasks.
Instructions
Search for nodes in the knowledge graph based on a query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Search query to find matching entities |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "Search query to find matching entities",
"minLength": 1,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}