mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-16 09:42:12 +00:00
15 lines
438 B
C#
15 lines
438 B
C#
namespace AIStudio.Tools.Services;
|
|
|
|
public sealed class DataSourceEmbeddingManifest
|
|
{
|
|
public string EmbeddingProviderId { get; set; } = string.Empty;
|
|
|
|
public string EmbeddingSignature { get; set; } = string.Empty;
|
|
|
|
public string SourceHash { get; set; } = string.Empty;
|
|
|
|
public int VectorSize { get; set; }
|
|
|
|
public Dictionary<string, EmbeddedFileRecord> Files { get; init; } = new(StringComparer.OrdinalIgnoreCase);
|
|
}
|