We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fc8b4a commit 730a790Copy full SHA for 730a790
1 file changed
packages/tools/src/shared/memory-client.ts
@@ -252,6 +252,11 @@ export const buildMemoriesText = async (
252
generalSearchMemories = `Search results for user's recent message:\n${generalSearchMemories}`
253
}
254
255
+ rawSearchResults = searchResponse.results.map((r) => ({
256
+ memory: r.memory || r.chunk || "",
257
+ metadata: r.metadata,
258
+ }))
259
+
260
if (mode !== "query") {
261
const profileResponse = await supermemoryProfileSearch(
262
containerTag,
0 commit comments