Knowledge Graph Memory Server

by T1nker-1220
Verified

find_similar_errors

Find similar errors and their solutions in the knowledge graph

Input Schema

NameRequiredDescriptionDefault
errorPatternYes

Input Schema (JSON Schema)

{ "properties": { "errorPattern": { "properties": { "context": { "description": "Where the error occurred", "type": "string" }, "message": { "description": "The error message", "type": "string" }, "type": { "description": "Category of the error", "type": "string" } }, "required": [ "type", "message", "context" ], "type": "object" } }, "required": [ "errorPattern" ], "type": "object" }