Workspace sync: auto commit 2026-04-23 12:02:11

This commit is contained in:
2026-04-23 12:02:11 +08:00
parent 6a8362bb5a
commit c59cc07327
57 changed files with 3427 additions and 30 deletions

View File

@@ -0,0 +1,25 @@
---
title: "Tree of Thoughts"
type: concept
tags: []
sources: []
last_updated: 2026-04-25
---
# Tree of Thoughts
## 定义
思维之树——多智能体系统的树形探索模式,是[[Genetic-Algorithm]]遗传算法的精简实现。通过验证器决定哪些Agent分支被淘汰持续筛选直至找到最优解。
## 核心公式
将任务分配给N个Agent → Validator决定淘汰哪些 → 可选用通过验证的Agent特征生成新Agent填补空缺
## 关键要求
- 需要快速验证输出的方式如Eval/单元测试)
- 如果需要人工检查所有分支,太慢且容易出错
## 与Knock-out Pattern的关系
Tree of Thoughts是Knock-out模式的进阶——后者只是淘汰前者还包括通过验证的Agent特征重组。
## 来源
- [[multi-agent-system-reliability]]