mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-16 17:42:12 +00:00
23 lines
655 B
C#
23 lines
655 B
C#
|
|
namespace AIStudio.Tools.Databases.IndexStore;
|
||
|
|
|
||
|
|
internal sealed class EmbeddingStateDataSourceEntity
|
||
|
|
{
|
||
|
|
public string DataSourceId { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public string DataSourceName { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public string DataSourceType { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
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 DateTimeOffset UpdatedAtUtc { get; set; }
|
||
|
|
|
||
|
|
public List<EmbeddingStateFileEntity> Files { get; set; } = [];
|
||
|
|
}
|