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

10 lines
244 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; }
public string Text { get; set; }
public string Answer { get; set; }
public float[]? Vector { get; set; }
}