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

12 lines
329 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Knowledges.Models;
public class KnowledgeSearchResult
{
public IDictionary<string, string> Data { get; set; } = new Dictionary<string, string>();
public double Score { get; set; }
public float[]? Vector { get; set; }
}
public class KnowledgeRetrievalResult : KnowledgeSearchResult
{
}