initialize_mcts
Initialize Monte Carlo Tree Search (MCTS) for in-depth analysis of a specific question using a specified LLM provider and model, supporting structured conversational exploration.
Instructions
Initialize MCTS for a question
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chat_id | No | Unique identifier for this conversation | default |
| model | No | Model name (optional) | |
| provider | No | LLM provider | gemini |
| question | Yes | The question to analyze |
Input Schema (JSON Schema)
{
"properties": {
"chat_id": {
"default": "default",
"description": "Unique identifier for this conversation",
"type": "string"
},
"model": {
"description": "Model name (optional)",
"type": "string"
},
"provider": {
"default": "gemini",
"description": "LLM provider",
"type": "string"
},
"question": {
"description": "The question to analyze",
"type": "string"
}
},
"required": [
"question"
],
"type": "object"
}