We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6bca5df + ac0294f commit f846bcaCopy full SHA for f846bca
1 file changed
src/index.ts
@@ -112,7 +112,7 @@ export const SupermemoryPlugin: Plugin = async (ctx: PluginInput) => {
112
if (detectMemoryKeyword(userMessage)) {
113
log("chat.message: memory keyword detected");
114
const nudgePart: Part = {
115
- id: `supermemory-nudge-${Date.now()}`,
+ id: `prt_supermemory-nudge-${Date.now()}`,
116
sessionID: input.sessionID,
117
messageID: output.message.id,
118
type: "text",
@@ -157,7 +157,7 @@ export const SupermemoryPlugin: Plugin = async (ctx: PluginInput) => {
157
158
if (memoryContext) {
159
const contextPart: Part = {
160
- id: `supermemory-context-${Date.now()}`,
+ id: `prt_supermemory-context-${Date.now()}`,
161
162
163
0 commit comments