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

10 lines
248 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-07 14:57:07 +00:00
public string Question { get; set; }
2024-08-06 22:43:11 +00:00
public string Answer { get; set; }
public float[]? Vector { get; set; }
}