MemoryChunkResponse
MemoryChunkResponse documentation for Python SDK
Memory chunk information
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| chunk_id | str | Unique identifier of the memory chunk | |
| memory_id | str | ID of the memory this chunk belongs to | |
| chunk_sequence_number | int | Sequence number of this chunk within the memory | |
| chunk_text | str | The text content of this chunk | |
| vector_status | str | Status of vector processing for this chunk | |
| start_offset | int | Start offset of this chunk in the original content | [optional] |
| end_offset | int | End offset of this chunk in the original content | [optional] |
| created_at | int | Creation timestamp (milliseconds since epoch) | |
| updated_at | int | Last update timestamp (milliseconds since epoch) | |
| created_by_id | str | ID of the user who created the chunk | |
| updated_by_id | str | ID of the user who last updated the chunk |
Example
from goodmem_client.models.memory_chunk_response import MemoryChunkResponse
# TODO update the JSON string below
json = "{}"
# create an instance of MemoryChunkResponse from a JSON string
memory_chunk_response_instance = MemoryChunkResponse.from_json(json)
# print the JSON string representation of the object
print(MemoryChunkResponse.to_json())
# convert the object into a dict
memory_chunk_response_dict = memory_chunk_response_instance.to_dict()
# create an instance of MemoryChunkResponse from a dict
memory_chunk_response_from_dict = MemoryChunkResponse.from_dict(memory_chunk_response_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK