BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/KnowledgeCollectionInfo.cs

8 lines
176 B
C#
Raw Normal View History

2024-08-06 21:02:02 +00:00
namespace BotSharp.Abstraction.Knowledges.Models;
public class KnowledgeCollectionInfo
{
public ulong DataCount { get; set; }
public ulong VectorCount { get; set; }
}