BotSharp/src/Plugins/BotSharp.Plugin.KnowledgeBase/MemVecDb/VecRecord.cs

14 lines
262 B
C#
Raw Normal View History

namespace BotSharp.Plugin.KnowledgeBase.MemVecDb;
2023-06-26 23:08:24 +00:00
public class VecRecord
{
2024-07-02 14:52:16 +00:00
public string Id { get; set; }
2023-06-26 23:08:24 +00:00
public float[] Vector { get; set; }
public string Text { get; set; }
public override string ToString()
{
return Text;
}
2023-06-26 23:08:24 +00:00
}