2024-07-17 21:03:46 +00:00
|
|
|
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;
|
2024-10-10 14:59:42 +00:00
|
|
|
|
|
|
|
|
[JsonPropertyName("refined_collection")]
|
|
|
|
|
public string RefinedCollection { get; set; } = string.Empty;
|
2024-07-17 21:03:46 +00:00
|
|
|
}
|