10 lines
248 B
C#
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; }
|
|
}
|