find_similar_errors
Identify and resolve recurring errors by analyzing past issues stored in a knowledge graph. Input error details to receive similar errors and their proven solutions.
Instructions
Find similar errors and their solutions in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
errorPattern | Yes |
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"
}