From f0d4f362197c078f4a7e9541c3309d5cd549d6b7 Mon Sep 17 00:00:00 2001 From: Bill Chambers Date: Wed, 5 Apr 2023 06:56:39 -0700 Subject: [PATCH] Documentation Error - Typo in Docs - Update custom_mrkl_agent.ipynb (#2437) Just a small typo in the documentation. --- docs/modules/agents/agents/custom_mrkl_agent.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/agents/agents/custom_mrkl_agent.ipynb b/docs/modules/agents/agents/custom_mrkl_agent.ipynb index 1892b5be..8bfaa2f3 100644 --- a/docs/modules/agents/agents/custom_mrkl_agent.ipynb +++ b/docs/modules/agents/agents/custom_mrkl_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 how to create a custom MRKL agent by creating a custom LLMChain."