From 597378d1f66fb24780ece0ebc47839cc5530343a Mon Sep 17 00:00:00 2001 From: Alan deLevie Date: Thu, 30 Mar 2023 10:52:29 -0400 Subject: [PATCH] Small typo in custom_agent.ipynb (#2194) determin -> determine --- docs/modules/agents/agents/custom_agent.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/agents/agents/custom_agent.ipynb b/docs/modules/agents/agents/custom_agent.ipynb index b536f6e9..ae61870f 100644 --- a/docs/modules/agents/agents/custom_agent.ipynb +++ b/docs/modules/agents/agents/custom_agent.ipynb @@ -13,7 +13,7 @@ " \n", " - Tools: The tools the agent has available to use.\n", " - LLMChain: The LLMChain that produces the text that is parsed in a certain way to determine which action to take.\n", - " - The agent class itself: this parses the output of the LLMChain to determin which action to take.\n", + " - The agent class itself: this parses the output of the LLMChain to determine which action to take.\n", " \n", " \n", "In this notebook we walk through two types of custom agents. The first type shows how to create a custom LLMChain, but still use an existing agent class to parse the output. The second shows how to create a custom agent class."