From 15e42f1799fedca8d932131d67c8ede6f2f606c5 Mon Sep 17 00:00:00 2001 From: Stan Duprey Date: Thu, 22 Feb 2024 16:03:40 -0800 Subject: [PATCH] docs: Added `langchainhub` install and fixed typo (#17985) Co-authored-by: Erick Friis --- docs/docs/expression_language/cookbook/agent.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/expression_language/cookbook/agent.ipynb b/docs/docs/expression_language/cookbook/agent.ipynb index 5459c6cc11..a2f518ab7c 100644 --- a/docs/docs/expression_language/cookbook/agent.ipynb +++ b/docs/docs/expression_language/cookbook/agent.ipynb @@ -7,7 +7,7 @@ "source": [ "# Agents\n", "\n", - "You can pass a Runnable into an agent." + "You can pass a Runnable into an agent. Make sure you have `langchainhub` installed: `pip install langchainhub`" ] }, { @@ -98,7 +98,7 @@ "source": [ "Building an agent from a runnable usually involves a few things:\n", "\n", - "1. Data processing for the intermediate steps. These need to represented in a way that the language model can recognize them. This should be pretty tightly coupled to the instructions in the prompt\n", + "1. Data processing for the intermediate steps. These need to be represented in a way that the language model can recognize them. This should be pretty tightly coupled to the instructions in the prompt\n", "\n", "2. The prompt itself\n", "\n",