14 lines
380 B
C#
14 lines
380 B
C#
namespace BotSharp.Abstraction.Knowledges.Models;
|
|
|
|
public class ExtractedKnowledge
|
|
{
|
|
[JsonPropertyName("question")]
|
|
public string Question { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("answer")]
|
|
public string Answer { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("refined_collection")]
|
|
public string RefinedCollection { get; set; } = string.Empty;
|
|
}
|