mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 22:13:38 +00:00
4 lines
208 B
C#
4 lines
208 B
C#
|
|
namespace AIStudio.Tools.Databases.IndexStore;
|
||
|
|
|
||
|
|
public sealed record EmbeddingStateChunk(string ChunkId, string ParentFileId, int? PageNumber, int ChunkIndex, string ChunkText, DateTimeOffset EmbeddedAtUtc);
|