get_thought_branch
Retrieve a specific branch of alternative reasoning paths to explore different approaches to complex problems during structured analysis.
Instructions
Retrieves a specific branch of alternative reasoning paths
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| branchId | Yes | The identifier of the branch to retrieve | |
| sessionId | No | Optional session ID (defaults to current session) |
Input Schema (JSON Schema)
{
"properties": {
"branchId": {
"description": "The identifier of the branch to retrieve",
"type": "string"
},
"sessionId": {
"description": "Optional session ID (defaults to current session)",
"type": "string"
}
},
"required": [
"branchId"
],
"type": "object"
}