Back to glossary

Tree of Thought

An advanced reasoning framework where the model explores multiple solution paths simultaneously, evaluates each branch, and selects the most promising approach. Tree of thought enables more thorough problem-solving than linear chain-of-thought reasoning.

Tree of thought extends chain-of-thought by allowing the model to consider multiple reasoning branches at each step, similar to how a chess player evaluates several moves ahead. Instead of committing to a single reasoning path, the model generates multiple candidate approaches, evaluates their promise, and can backtrack from dead ends to explore alternatives.

For complex planning tasks in growth engineering, tree of thought enables more robust decision-making. Consider an agent tasked with optimizing a conversion funnel: it might explore parallel hypotheses about whether the bottleneck is in messaging, pricing, or UX, evaluate evidence for each, and converge on the most supported conclusion. The tradeoff is computational cost, since exploring multiple branches requires more tokens and inference time. Use tree of thought selectively for high-value decisions where thoroughness matters more than speed, such as go-to-market strategy analysis or complex technical architecture decisions.

Related Terms