Challenge 05 · Tree of Thoughts Prompting
Tree of Thoughts Strategist ⭐
What is Tree of Thoughts Prompting?
Tree of Thoughts (ToT) goes beyond a single chain of reasoning by making the model explore multiple solution branches in parallel, evaluate each branch, eliminate weak paths (prune), and select the best one. Unlike CoT which is linear (one path), ToT is a tree — the model can backtrack, compare, and choose the strongest route to an answer. This is powerful for complex strategic decisions.
Scenario
Your Task
Build a PartyRock app called "The Strategy Tree" that forces the model through this exact 5-stage tree structure:
Rules
- Your system prompt must explicitly define all 5 tree stages
- The output must show all 3 branches — even the eliminated ones. The exploration is the point.
- Final recommendation appears only after the full tree has been walked
- The scoring (Stage 2) must have reasoning — not arbitrary numbers
Test Problem (Use This for Testing)
How to Build This on PartyRock — Step by Step
Scoring Breakdown (150 pts + 10 bonus)
| Criterion | Points |
|---|---|
| Correct ToT structure (all 5 stages visible in output) | 25 |
| All 3 branches shown with scores and reasoning | 25 |
| Quality of evaluation logic — not arbitrary scoring | 20 |
| Compelling and realistic business use case | 15 |
| Model choice + written justification | 25 |
| Temperature value + written justification | 20 |
| Top P value + written justification | 20 |
| Bonus: zero-shot comparison widget | +10 |
| Total | 150 (+10) |
Submit Your Entry