BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/KnowledgeCollectionData.cs
Jicheng Lu ba9180120d rename
2024-08-07 09:57:07 -05:00

10 lines
248 B
C#

namespace BotSharp.Abstraction.Knowledges.Models;
public class KnowledgeCollectionData
{
public string Id { get; set; }
public string Question { get; set; }
public string Answer { get; set; }
public float[]? Vector { get; set; }
}