mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 19:53:37 +00:00
25 lines
741 B
C#
25 lines
741 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; } = [];
|
|
|
|
public List<IndexingFailureEntity> PermanentIndexingFailures { get; set; } = [];
|
|
}
|