mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-16 19:22:11 +00:00
17 lines
426 B
C#
17 lines
426 B
C#
|
|
namespace AIStudio.Tools.Databases.IndexStore;
|
||
|
|
|
||
|
|
public sealed record EmbeddingStateFile(
|
||
|
|
string ParentFileId,
|
||
|
|
string AbsolutePath,
|
||
|
|
string FileName,
|
||
|
|
string RelativePath,
|
||
|
|
string FileType,
|
||
|
|
string Fingerprint,
|
||
|
|
long FileSize,
|
||
|
|
DateTimeOffset CreationUtc,
|
||
|
|
DateTimeOffset LastWriteUtc,
|
||
|
|
DateTimeOffset EmbeddedAtUtc,
|
||
|
|
int ChunkCount,
|
||
|
|
string ConfidenceLevel,
|
||
|
|
int ConfidenceLevelRank);
|