BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/ExtractedKnowledge.cs
2024-07-17 16:03:46 -05:00

11 lines
268 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;
}