retrieve_similar_cases
Use this tool to find and retrieve similar cases from the case base based on a provided problem description. Input a description and specify the maximum number of results for precise matching.
Instructions
Retrieve similar cases from the case base
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | Maximum number of cases to return | |
problem_description | Yes | Simple description of the problem |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"max_results": {
"default": 5,
"description": "Maximum number of cases to return",
"type": "number"
},
"problem_description": {
"description": "Simple description of the problem",
"type": "string"
}
},
"required": [
"problem_description"
],
"type": "object"
}