Chain of Thought

Chain-of-thought prompting elicits or represents intermediate reasoning traces before a final answer, giving an LLM workflow additional structure but not by itself a guarantee of correctness, faithfulness, or efficient execution.

核心思想

A prompt or agent workflow asks a model to decompose a task into intermediate steps, which can help planning, tool use, or verification. The resulting trace is model output: it may be useful for control and debugging, but it can be incomplete, post-hoc, or inconsistent with the final decision unless an external evaluator checks it.

为什么重要

Agent and automated-research systems use intermediate traces to coordinate planning and artifact production. The systems question is how to turn a trace into an auditable action: constrain it with tools, tests, code execution, or verifiers, and report its token/latency/cost impact.

关键观察 / 隐含假设

设计空间与取舍

  • Free-form vs structured traces:structure improves control but can constrain exploration.
  • Trace length vs cost/latency:more steps consume context and serving resources.
  • Self-critique vs independent verification:model-generated criticism is weaker than executable or external checks.

引用本概念的论文