supermemory/packages
MaheshtheDev a00a751e10 pkg(tools): Expose raw search results in MemoryPromptData for prompt templates (#787)
Expose raw search results in `MemoryPromptData` so prompt templates can traverse, filter, and selectively include results based on metadata (e.g. score, source).

##### Usage example

```typescript
const promptTemplate = (data: MemoryPromptData) => {
  const relevant = data.searchResults.filter(
    (r) => (r.metadata?.score as number) > 0.7
  )
  return `${data.userMemories}\n${relevant.map(r => r.memory).join('\n')}`
}
```
2026-03-19 00:38:53 +00:00
..
agent-framework-python Add Supermemory integration for Microsoft Agent Framework (#775) 2026-03-10 01:49:45 +00:00
ai-sdk docs changes (#678) 2026-01-18 16:55:32 -08:00
docs-test one more try 2026-03-05 14:30:57 -08:00
hooks feat: onboarding config, reset onboarding, xai agentic migration (#701) 2026-01-25 01:04:15 +00:00
lib feat: delete connection without removing the documents (#778) 2026-03-17 23:21:36 +00:00
memory-graph feat: bulk delete documents in nova app (#777) 2026-03-10 15:29:25 +00:00
openai-sdk-python docs changes (#678) 2026-01-18 16:55:32 -08:00
pipecat-sdk-python chore: bump package versions 2026-01-22 20:50:51 -07:00
tools pkg(tools): Expose raw search results in MemoryPromptData for prompt templates (#787) 2026-03-19 00:38:53 +00:00
ui feat: empty state action for new spaces (#780) 2026-03-15 11:02:14 -07:00
validation feat: change "All Spaces" to "Nova Spaces" with multi-select support (#731) 2026-02-13 21:34:58 +00:00