mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-16 02:02:13 +00:00
21 lines
505 B
C#
21 lines
505 B
C#
namespace AIStudio.Tools.Databases.IndexStore;
|
|
|
|
internal sealed class EmbeddingStateChunkEntity
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string ChunkId { get; set; } = string.Empty;
|
|
|
|
public string ParentFileId { get; set; } = string.Empty;
|
|
|
|
public int? PageNumber { get; set; }
|
|
|
|
public int ChunkIndex { get; set; }
|
|
|
|
public string ChunkText { get; set; } = string.Empty;
|
|
|
|
public DateTimeOffset EmbeddedAtUtc { get; set; }
|
|
|
|
public EmbeddingStateFileEntity? File { get; set; }
|
|
}
|