Prompt Chaining Vocabulary

Prompt chaining, sequential and parallel prompting, prompt decomposition, sub-task delegation, map-reduce prompt pattern, and prompt DAG vocabulary.

Key vocabulary

  • Prompt chaining — passing the output of one LLM call as the input to the next, building multi-step pipelines.
  • Sequential prompting — prompt chain steps that must run in order, each depending on the previous output.
  • Parallel prompting — running multiple independent prompt calls simultaneously, then combining results.
  • Prompt decomposition — breaking a complex task into smaller sub-prompts that are easier for the model to handle reliably.
  • Map-reduce prompt pattern — processing chunks of data in parallel (map), then synthesising the results in a final prompt (reduce).
0 / 5 completed
1 / 5
A pipeline feeds the summary from step 1 into step 2's prompt. This is an example of: