From 3e55f1474e5ad13f90c233b7f85480e996765e71 Mon Sep 17 00:00:00 2001 From: Sasmitha Manathunga <70096033+mmz-001@users.noreply.github.com> Date: Fri, 13 Jan 2023 11:06:03 +0530 Subject: [PATCH] docs: fix typo (#604) --- docs/modules/utils/key_concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/utils/key_concepts.md b/docs/modules/utils/key_concepts.md index 9e27ee96de5..8a238c570ae 100644 --- a/docs/modules/utils/key_concepts.md +++ b/docs/modules/utils/key_concepts.md @@ -19,7 +19,7 @@ Sometimes, for complex calculations, rather than have an LLM generate the answer it can be better to have the LLM generate code to calculate the answer, and then run that code to get the answer. In order to easily do that, we provide a simple Python REPL to execute commands in. This interface will only return things that are printed - -therefor, if you want to use it to calculate an answer, make sure to have it print out the answer. +therefore, if you want to use it to calculate an answer, make sure to have it print out the answer. ## Bash It can often be useful to have an LLM generate bash commands, and then run them.