From d62e9ce62b33f550061da131e8b02a1b56e907d7 Mon Sep 17 00:00:00 2001 From: Ansh Babbar <31804810+rabbabansh@users.noreply.github.com> Date: Mon, 23 Oct 2023 00:20:45 +0530 Subject: [PATCH 1/3] Fix typo in memgpt_base.txt --- memgpt/prompts/system/memgpt_base.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/memgpt/prompts/system/memgpt_base.txt b/memgpt/prompts/system/memgpt_base.txt index 0b558cdc..40886ad4 100644 --- a/memgpt/prompts/system/memgpt_base.txt +++ b/memgpt/prompts/system/memgpt_base.txt @@ -28,7 +28,7 @@ Your core memory unit will be initialized with a chosen by the user, a Recall memory (ie conversation history): Even though you can only see recent messages in your immediate context, you can search over your entire message history from a database. -This 'recall memory' database allows your to search through past interactions, effectively allowing you to remember prior engagements with a user. +This 'recall memory' database allows you to search through past interactions, effectively allowing you to remember prior engagements with a user. You can search your recall memory using the 'conversation_search' function. Core memory (limited size): @@ -46,4 +46,4 @@ You can write to your archival memory using the 'archival_memory_insert' and 'ar There is no function to search your core memory, because it is always visible in your context window (inside the initial system message). Base instructions finished. -From now on, you are going to act as your persona. \ No newline at end of file +From now on, you are going to act as your persona. From 75ec2ecdd435c92835d2789eb83b6095ff9cfd79 Mon Sep 17 00:00:00 2001 From: Ansh Date: Tue, 24 Oct 2023 11:58:10 +0530 Subject: [PATCH 2/3] Fix typo in system prompts #89 #93 --- .vscode/settings.json | 3 +++ memgpt/prompts/system/memgpt_base.txt | 2 +- memgpt/prompts/system/memgpt_chat.txt | 2 +- memgpt/prompts/system/memgpt_doc.txt | 2 +- memgpt/prompts/system/memgpt_gpt35_extralong.txt | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..febb024d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "githubPullRequests.ignoredPullRequestBranches": ["main"] +} diff --git a/memgpt/prompts/system/memgpt_base.txt b/memgpt/prompts/system/memgpt_base.txt index 40886ad4..42697d76 100644 --- a/memgpt/prompts/system/memgpt_base.txt +++ b/memgpt/prompts/system/memgpt_base.txt @@ -46,4 +46,4 @@ You can write to your archival memory using the 'archival_memory_insert' and 'ar There is no function to search your core memory, because it is always visible in your context window (inside the initial system message). Base instructions finished. -From now on, you are going to act as your persona. +From now on, you are going to act as your persona. \ No newline at end of file diff --git a/memgpt/prompts/system/memgpt_chat.txt b/memgpt/prompts/system/memgpt_chat.txt index 490c69ad..829fb9e1 100644 --- a/memgpt/prompts/system/memgpt_chat.txt +++ b/memgpt/prompts/system/memgpt_chat.txt @@ -37,7 +37,7 @@ Your core memory unit will be initialized with a chosen by the user, a Recall memory (ie conversation history): Even though you can only see recent messages in your immediate context, you can search over your entire message history from a database. -This 'recall memory' database allows your to search through past interactions, effectively allowing you to remember prior engagements with a user. +This 'recall memory' database allows you to search through past interactions, effectively allowing you to remember prior engagements with a user. You can search your recall memory using the 'conversation_search' function. Core memory (limited size): diff --git a/memgpt/prompts/system/memgpt_doc.txt b/memgpt/prompts/system/memgpt_doc.txt index c69e9234..1fe000cc 100644 --- a/memgpt/prompts/system/memgpt_doc.txt +++ b/memgpt/prompts/system/memgpt_doc.txt @@ -29,7 +29,7 @@ Your core memory unit will be initialized with a chosen by the user, a Recall memory (ie conversation history): Even though you can only see recent messages in your immediate context, you can search over your entire message history from a database. -This 'recall memory' database allows your to search through past interactions, effectively allowing you to remember prior engagements with a user. +This 'recall memory' database allows you to search through past interactions, effectively allowing you to remember prior engagements with a user. You can search your recall memory using the 'conversation_search' function. Core memory (limited size): diff --git a/memgpt/prompts/system/memgpt_gpt35_extralong.txt b/memgpt/prompts/system/memgpt_gpt35_extralong.txt index 82381b50..849a1a03 100644 --- a/memgpt/prompts/system/memgpt_gpt35_extralong.txt +++ b/memgpt/prompts/system/memgpt_gpt35_extralong.txt @@ -28,7 +28,7 @@ Your core memory unit will be initialized with a chosen by the user, a Recall memory (ie conversation history): Even though you can only see recent messages in your immediate context, you can search over your entire message history from a database. -This 'recall memory' database allows your to search through past interactions, effectively allowing you to remember prior engagements with a user. +This 'recall memory' database allows you to search through past interactions, effectively allowing you to remember prior engagements with a user. You can search your recall memory using the 'conversation_search' function. Core memory (limited size): From d6173783e9117c3302aab0e648fba56f4c08bc53 Mon Sep 17 00:00:00 2001 From: Ansh Babbar <31804810+rabbabansh@users.noreply.github.com> Date: Tue, 24 Oct 2023 12:01:15 +0530 Subject: [PATCH 3/3] Delete .vscode/settings.json --- .vscode/settings.json | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index febb024d..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "githubPullRequests.ignoredPullRequestBranches": ["main"] -}