From a18c20305eb679672683d760da3abc2cc777ede2 Mon Sep 17 00:00:00 2001 From: SillyLossy Date: Wed, 31 May 2023 23:27:14 +0300 Subject: [PATCH] Clarify Chroma warning message --- public/scripts/extensions/infinity-context/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/scripts/extensions/infinity-context/index.js b/public/scripts/extensions/infinity-context/index.js index 38dab39a4..34e12b303 100644 --- a/public/scripts/extensions/infinity-context/index.js +++ b/public/scripts/extensions/infinity-context/index.js @@ -58,8 +58,8 @@ function getChatSyncState() { // if the synced message was deleted, notify the user if (chatState[i]) { toastr.warning( - 'It is recommended to purge and re-sync the ChromaDB state to prevent recalling false memories. See the "Smart Context" tab in the Extensions menu for more information.', - 'The message that has already been pushed to ChromaDB was deleted.', + 'Purge your ChromaDB to remove it from there too. See the "Smart Context" tab in the Extensions menu for more information.', + 'Message deleted from chat, but it still exists inside the ChromaDB database.', { timeOut: 0, extendedTimeOut: 0, preventDuplicates: true }, ); break;