BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/KnowledgeCollectionFileMetaDocument.cs
2024-09-18 10:35:28 -05:00

16 lines
614 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class KnowledgeCollectionFileMetaDocument : MongoBase
{
public string Collection { get; set; }
public Guid FileId { get; set; }
public string FileName { get; set; }
public string FileSource { get; set; }
public string ContentType { get; set; }
public string VectorStoreProvider { get; set; }
public IEnumerable<string> VectorDataIds { get; set; } = new List<string>();
public KnowledgeFileMetaRefMongoModel? RefData { get; set; }
public DateTime CreateDate { get; set; }
public string CreateUserId { get; set; }
}