memory-search-plugin 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -108,7 +108,7 @@ var buildPromptSection = ({
|
|
|
108
108
|
if (!hasMemorySearch && !hasMemoryGet) return [];
|
|
109
109
|
let toolGuidance;
|
|
110
110
|
if (hasMemorySearch && hasMemoryGet) {
|
|
111
|
-
toolGuidance = "Before answering anything about prior work, decisions, dates, people, preferences, or todos: run memory_search on MEMORY.md + memory/*.md; then use memory_get
|
|
111
|
+
toolGuidance = "Before answering anything about prior work, decisions, dates, people, preferences, or todos: run memory_search for semantic search on MEMORY.md + memory/*.md; then use memory_get for keyword retrieval on only the needed content. If low confidence after search, say you checked.";
|
|
112
112
|
} else if (hasMemorySearch) {
|
|
113
113
|
toolGuidance = "Before answering anything about prior work, decisions, dates, people, preferences, or todos: run memory_search on MEMORY.md + memory/*.md and answer from the matching results. If low confidence after search, say you checked.";
|
|
114
114
|
} else {
|
package/index.ts
CHANGED
|
@@ -48,7 +48,7 @@ const buildPromptSection = ({
|
|
|
48
48
|
if (hasMemorySearch && hasMemoryGet) {
|
|
49
49
|
toolGuidance =
|
|
50
50
|
"Before answering anything about prior work, decisions, dates, people, preferences, or todos: " +
|
|
51
|
-
"run memory_search on MEMORY.md + memory/*.md; then use memory_get
|
|
51
|
+
"run memory_search for semantic search on MEMORY.md + memory/*.md; then use memory_get for keyword retrieval on only the needed content. " +
|
|
52
52
|
"If low confidence after search, say you checked.";
|
|
53
53
|
} else if (hasMemorySearch) {
|
|
54
54
|
toolGuidance =
|