RetrieveMemoryRequest
RetrieveMemoryRequest documentation for .NET SDK
Request body for semantic memory retrieval with optional embedder weight overrides.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Message | string | Primary query/message for semantic search. | |
| Context | List<ContextItem> | Optional context items (text or binary) to provide additional context for the search. | [optional] |
| SpaceKeys | List<SpaceKey> | List of spaces to search with optional per-embedder weight overrides. | |
| RequestedSize | int? | Maximum number of memories to retrieve. | [optional] |
| FetchMemory | bool? | Whether to include streamed memory-definition records in the response. Defaults to true when omitted. These records include memory metadata and audit fields, but omit originalContent unless fetchMemoryContent is true. | [optional] [default to true] |
| FetchMemoryContent | bool? | Whether streamed memory-definition records include originalContent bytes. Requires fetchMemory=true. Defaults to false when omitted. | [optional] [default to false] |
| Hnsw | HnswOptions | [optional] | |
| PostProcessor | PostProcessor | [optional] |