From a86a2f89f9fb0766b9245168bc6a432fcba3ceec Mon Sep 17 00:00:00 2001 From: Sarah Wooders Date: Thu, 11 Jul 2024 22:23:23 -0700 Subject: [PATCH] Add pip installs --- examples/google_search.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/examples/google_search.py b/examples/google_search.py index 20141940..c34c29bb 100644 --- a/examples/google_search.py +++ b/examples/google_search.py @@ -8,7 +8,12 @@ from memgpt.memory import ChatMemory """ This example show how you can add a google search custom function to your MemGPT agent. -First, make sure you run `pip install serpapi`, then setup memgpt with `memgpt configure`. +First, make sure you run: +``` +pip install serpapi +pip install llama-index-readers-web +``` +then setup memgpt with `memgpt configure`. """