find_similar_errors
Identify programming errors similar to a given query by searching the Tribal Knowledge Service database, returning a list of relevant error records for troubleshooting and learning.
Instructions
Find errors similar to the given query.
Args:
query: Text to search for in the knowledge base
max_results: Maximum number of results to return
Returns:
List of similar error records
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 5,
"title": "Max Results",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "find_similar_errorsArguments",
"type": "object"
}