diff --git a/autogpt/memory/pinecone.py b/autogpt/memory/pinecone.py index 7c0279564..1c73ebd78 100644 --- a/autogpt/memory/pinecone.py +++ b/autogpt/memory/pinecone.py @@ -32,7 +32,7 @@ class PineconeMemory(MemoryProviderSingleton): 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 2a072a557..9b126f012 100644 --- a/autogpt/memory/redismem.py +++ b/autogpt/memory/redismem.py @@ -58,7 +58,7 @@ class RedisMemory(MemoryProviderSingleton): 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)