retrieve_relevant_thoughts
Identifies and retrieves related thoughts from long-term storage based on shared tags with a specified thought, aiding in structured idea exploration and analysis.
Instructions
Finds thoughts from long-term storage that share tags with the specified thought.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
thought_id | Yes | The ID of the thought to find related thoughts for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"thought_id": {
"description": "The ID of the thought to find related thoughts for",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"thought_id"
],
"type": "object"
}