From 1dd073351520ea6538e2e51361c3fecfab5d6efd Mon Sep 17 00:00:00 2001 From: Ryan Walker Date: Fri, 3 Feb 2023 15:22:12 -0700 Subject: [PATCH] Fix small typo in getting started docs (#876) Just noticed this little typo while reading the docs, thought I'd open a PR! --- docs/getting_started/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started/getting_started.md b/docs/getting_started/getting_started.md index 2e6badf3..cf177cd2 100644 --- a/docs/getting_started/getting_started.md +++ b/docs/getting_started/getting_started.md @@ -162,7 +162,7 @@ This is one of the simpler types of chains, but understanding how it works will `````{dropdown} Agents: Dynamically call chains based on user input -So for the chains we've looked at run in a predetermined order. +So far the chains we've looked at run in a predetermined order. Agents no longer do: they use an LLM to determine which actions to take and in what order. An action can either be using a tool and observing its output, or returning to the user.