BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/KnowledgeSearchResult.cs
2024-08-09 16:03:29 -05:00

12 lines
329 B
C#

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
{
}