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

9 lines
272 B
C#
Raw Normal View History

2024-08-06 22:43:11 +00:00
namespace BotSharp.Abstraction.Knowledges.Models;
public class KnowledgeCollectionData
{
public string Id { get; set; }
2024-08-15 03:46:01 +00:00
public Dictionary<string, string> Data { get; set; } = new();
public double? Score { get; set; }
2024-08-06 22:43:11 +00:00
public float[]? Vector { get; set; }
2024-08-15 03:46:01 +00:00
}