BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/KnowledgeCollectionFileMetaDocument.cs

16 lines
589 B
C#
Raw Normal View History

namespace BotSharp.Plugin.MongoStorage.Collections;
2024-09-17 17:50:39 +00:00
public class KnowledgeCollectionFileMetaDocument : MongoBase
{
public string Collection { get; set; }
2024-09-17 17:50:39 +00:00
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>();
2024-09-17 20:22:36 +00:00
public string? WebUrl { get; set; }
public DateTime CreateDate { get; set; }
public string CreateUserId { get; set; }
}