From 66786b0f0fb91f346c00d860eb8472f940d37af8 Mon Sep 17 00:00:00 2001 From: Harrison Chase Date: Tue, 11 Apr 2023 08:16:06 -0700 Subject: [PATCH] cr --- docs/use_cases/agents/baby_agi_with_agent.ipynb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/use_cases/agents/baby_agi_with_agent.ipynb b/docs/use_cases/agents/baby_agi_with_agent.ipynb index aa71bf34..7244f7fd 100644 --- a/docs/use_cases/agents/baby_agi_with_agent.ipynb +++ b/docs/use_cases/agents/baby_agi_with_agent.ipynb @@ -5,7 +5,7 @@ "id": "517a9fd4", "metadata": {}, "source": [ - "# BabyAGI User Guide\n", + "# BabyAGI with Tools\n", "\n", "This notebook builds on top of [baby agi](baby_agi.ipynb), but shows how you can swap out the execution chain. The previous execution chain was just an LLM which made stuff up. By swapping it out with an agent that has access to tools, we can hopefully get real reliable information" ] @@ -54,9 +54,7 @@ "metadata": {}, "outputs": [], "source": [ -"%pip install faiss-cpu > /dev/null", -"%pip install google-search-results > /dev/null", -"from langchain.vectorstores import FAISS\n", + "%pip install faiss-cpu > /dev/null%pip install google-search-results > /dev/nullfrom langchain.vectorstores import FAISS\n", "from langchain.docstore import InMemoryDocstore" ] },