From 2b4ba203f7a04afbba2145f64df9b54cf7ee4fb5 Mon Sep 17 00:00:00 2001 From: Prayson Wilfred Daniel Date: Tue, 9 May 2023 16:42:47 +0200 Subject: [PATCH] query correction from when to what (#4383) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Minor Wording Documentation Change ```python agent_chain.run("When's my friend Eric's surname?") # Answer with 'Zhu' ``` is change to ```python agent_chain.run("What's my friend Eric's surname?") # Answer with 'Zhu' ``` I think when is a residual of the old query that was "When’s my friends Eric`s birthday?". --- docs/modules/agents/tools/examples/human_tools.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/modules/agents/tools/examples/human_tools.ipynb b/docs/modules/agents/tools/examples/human_tools.ipynb index 5a68839c..e621c067 100644 --- a/docs/modules/agents/tools/examples/human_tools.ipynb +++ b/docs/modules/agents/tools/examples/human_tools.ipynb @@ -68,7 +68,7 @@ ] }, { - "name": "stdin", + "name": "stdout", "output_type": "stream", "text": [ " Zhu\n" @@ -98,7 +98,7 @@ } ], "source": [ - "agent_chain.run(\"When's my friend Eric's surname?\")\n", + "agent_chain.run(\"What's my friend Eric's surname?\")\n", "# Answer with 'Zhu'" ] }, @@ -196,7 +196,7 @@ ] }, { - "name": "stdin", + "name": "stdout", "output_type": "stream", "text": [ " vini\n", @@ -222,7 +222,7 @@ ] }, { - "name": "stdin", + "name": "stdout", "output_type": "stream", "text": [ " oh who said it \n",