BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/KnowledgeCollectionInfo.cs
2024-08-06 16:02:02 -05:00

8 lines
176 B
C#

namespace BotSharp.Abstraction.Knowledges.Models;
public class KnowledgeCollectionInfo
{
public ulong DataCount { get; set; }
public ulong VectorCount { get; set; }
}