AI-Studio/app/MindWork AI Studio/Tools/Databases/IndexStore/EmbeddingStateChunkEntity.cs

21 lines
505 B
C#
Raw Normal View History

2026-08-14 12:25:53 +00:00
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; }
}