mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
docs: update with dreaming info (#1020)
This commit is contained in:
parent
2684990688
commit
46e7ee1eb4
2 changed files with 25 additions and 0 deletions
|
|
@ -201,6 +201,7 @@ Upload PDFs, images, and documents directly.
|
|||
| `metadata` | object | Key-value pairs for filtering (strings, numbers, booleans) |
|
||||
| `filterByMetadata` | object | Filter which existing memories are used as context during ingestion. See [Filtered Writes](#filtered-writes) |
|
||||
| `entityContext` | string | Context for memory extraction on this container tag. Max 1500 chars. See [Customization](/concepts/customization#entity-context) |
|
||||
| `dreaming` | `"dynamic" \| "instant"` | Processing mode. Default `"dynamic"`. `"instant"` processes each document on its own and bills one extra operation. See [Processing Modes](#processing-modes) |
|
||||
|
||||
<AccordionGroup>
|
||||
<Accordion title="Parameter Details & Examples">
|
||||
|
|
@ -277,6 +278,22 @@ Upload PDFs, images, and documents directly.
|
|||
|
||||
---
|
||||
|
||||
## Processing Modes
|
||||
|
||||
The `dreaming` parameter controls how Supermemory turns a document into memories.
|
||||
|
||||
- `"dynamic"` (default) — groups related documents together so memories form from coherent, logical units rather than one isolated entry at a time.
|
||||
- `"instant"` — processes each document on its own right away, and bills one extra operation per document.
|
||||
|
||||
```json
|
||||
{
|
||||
"content": "...",
|
||||
"dreaming": "instant"
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Filtered Writes
|
||||
|
||||
By default, when you add content, Supermemory uses **all** existing memories in the space as context for generating new memories. With **filtered writes**, you can scope this context to only memories from documents matching specific metadata.
|
||||
|
|
|
|||
|
|
@ -3,6 +3,14 @@ title: "Changelog"
|
|||
description: "New updates and improvements to Supermemory"
|
||||
---
|
||||
|
||||
<Update label="May 27, 2026" tags={["API"]}>
|
||||
|
||||
### Instant dreaming
|
||||
|
||||
New `dreaming` parameter on `POST /v3/documents` and `POST /v3/documents/batch`. Default `"dynamic"` groups related documents together so memories form from coherent, logical units. Set `"dreaming": "instant"` to process a single document on its own — bills one extra operation per document. Omit the parameter and behavior is unchanged.
|
||||
|
||||
</Update>
|
||||
|
||||
<Update label="April 13, 2026" tags={["Integrations", "API"]}>
|
||||
|
||||
### Google Drive: scoped sync by default
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue