From 6cef6368561816d49bc6c2037332d2e2ce18437f Mon Sep 17 00:00:00 2001 From: Dominic Vermeulen-Smith Date: Fri, 5 May 2023 10:33:34 +0100 Subject: [PATCH] updated memory setup links --- autogpt/memory/pinecone.py | 2 +- autogpt/memory/redismem.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autogpt/memory/pinecone.py b/autogpt/memory/pinecone.py index 7c0279564681..1c73ebd788ca 100644 --- a/autogpt/memory/pinecone.py +++ b/autogpt/memory/pinecone.py @@ -32,7 +32,7 @@ def __init__(self, cfg): logger.double_check( "Please ensure you have setup and configured Pinecone properly for use." + f"You can check out {Fore.CYAN + Style.BRIGHT}" - "https://github.com/Torantulino/Auto-GPT#-pinecone-api-key-setup" + "https://docs.agpt.co/configuration/memory/#pinecone-api-key-setup" f"{Style.RESET_ALL} to ensure you've set up everything correctly." ) exit(1) diff --git a/autogpt/memory/redismem.py b/autogpt/memory/redismem.py index 2a072a557d09..9b126f0124c9 100644 --- a/autogpt/memory/redismem.py +++ b/autogpt/memory/redismem.py @@ -58,7 +58,7 @@ def __init__(self, cfg): logger.double_check( "Please ensure you have setup and configured Redis properly for use. " + f"You can check out {Fore.CYAN + Style.BRIGHT}" - f"https://github.com/Torantulino/Auto-GPT#redis-setup{Style.RESET_ALL}" + f"https://docs.agpt.co/configuration/memory/#redis-setup{Style.RESET_ALL}" " to ensure you've set up everything correctly." ) exit(1)