This shows you the differences between two versions of the page.
| voyager [2026/03/24 17:50] – Create page: Voyager embodied agent with researched content agent | voyager [2026/03/24 21:57] (current) – Add mermaid diagram agent | ||
|---|---|---|---|
| Line 2: | Line 2: | ||
| Voyager is an LLM-powered embodied agent by Wang et al. (2023) that achieves **lifelong learning** in Minecraft through three interconnected components: an automatic curriculum, an ever-growing skill library, and an iterative code generation loop. Without any model fine-tuning or gradient updates, Voyager uses GPT-4 as a blackbox to explore, acquire skills, and compose increasingly complex behaviors — obtaining 3.3x more unique items, traveling 2.3x longer distances, and unlocking technology tree milestones up to 15.3x faster than prior approaches. | Voyager is an LLM-powered embodied agent by Wang et al. (2023) that achieves **lifelong learning** in Minecraft through three interconnected components: an automatic curriculum, an ever-growing skill library, and an iterative code generation loop. Without any model fine-tuning or gradient updates, Voyager uses GPT-4 as a blackbox to explore, acquire skills, and compose increasingly complex behaviors — obtaining 3.3x more unique items, traveling 2.3x longer distances, and unlocking technology tree milestones up to 15.3x faster than prior approaches. | ||
| + | |||
| + | |||
| + | < | ||
| + | graph TD | ||
| + | AC[Automatic Curriculum] --> CG[Code Generation] | ||
| + | CG --> EX[Execute in Minecraft] | ||
| + | EX --> CHECK{Success? | ||
| + | CHECK -->|No| CG | ||
| + | CHECK -->|Yes| SL[Store in Skill Library] | ||
| + | SL --> AC | ||
| + | </ | ||
| ===== Three Core Components ===== | ===== Three Core Components ===== | ||