Space Model
Space Model documentation for .NET SDK
A Space is a container for organizing related memories with vector embeddings.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| SpaceId | string | The unique identifier for this space. | |
| Name | string | The name of the space. | |
| Labels | Dictionary<string, string> | Key-value pairs of metadata associated with the space. | [optional] |
| SpaceEmbedders | List<SpaceEmbedder> | The list of embedders associated with this space. | |
| CreatedAt | long | Timestamp when this space was created (milliseconds since epoch). | |
| UpdatedAt | long | Timestamp when this space was last updated (milliseconds since epoch). | |
| OwnerId | string | The ID of the user who owns this space. | |
| CreatedById | string | The ID of the user who created this space. | |
| UpdatedById | string | The ID of the user who last updated this space. | |
| PublicRead | bool | Whether this space is publicly readable by all users. | |
| DefaultChunkingConfig | ChunkingConfiguration | [optional] |