BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/ExtractedKnowledge.cs

11 lines
268 B
C#
Raw Normal View History

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;
}