From 9c56b1beef1362725cea0f2b98f0a46a4d728874 Mon Sep 17 00:00:00 2001 From: Ashutosh Kataria Date: Mon, 1 May 2023 20:01:28 +0530 Subject: [PATCH] Message about Pinecone initializing (#1194) Co-authored-by: Nicholas Tindle Co-authored-by: Richard Beales --- autogpt/memory/pinecone.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autogpt/memory/pinecone.py b/autogpt/memory/pinecone.py index a0bd162ac..7c0279564 100644 --- a/autogpt/memory/pinecone.py +++ b/autogpt/memory/pinecone.py @@ -38,6 +38,9 @@ class PineconeMemory(MemoryProviderSingleton): exit(1) if table_name not in pinecone.list_indexes(): + logger.typewriter_log( + "Connecting Pinecone. This may take some time...", Fore.MAGENTA, "" + ) pinecone.create_index( table_name, dimension=dimension, metric=metric, pod_type=pod_type )