MemoryChunkResponse
MemoryChunkResponse documentation for Java SDK
MemoryChunkResponse
Memory chunk information
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| chunkId | UUID | Unique identifier of the memory chunk | |
| memoryId | UUID | ID of the memory this chunk belongs to | |
| chunkSequenceNumber | Integer | Sequence number of this chunk within the memory | |
| chunkText | String | The text content of this chunk | |
| vectorStatus | VectorStatusEnum | Status of vector processing for this chunk | |
| startOffset | Integer | Start offset of this chunk in the original content | [optional] |
| endOffset | Integer | End offset of this chunk in the original content | [optional] |
| metadata | Object | Additional metadata for the memory chunk | [optional] |
| createdAt | Long | Creation timestamp (milliseconds since epoch) | |
| updatedAt | Long | Last update timestamp (milliseconds since epoch) | |
| createdById | UUID | ID of the user who created the chunk | |
| updatedById | UUID | ID of the user who last updated the chunk |
Enum: VectorStatusEnum
| Name | Value |
|---|---|
| PENDING | "PENDING" |
| PROCESSING | "PROCESSING" |
| COMPLETED | "COMPLETED" |
| FAILED | "FAILED" |