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

15 lines
347 B
C#
Raw Normal View History

2023-08-09 21:49:55 +00:00
using System.Text.Json.Serialization;
namespace BotSharp.Abstraction.Knowledges.Models;
public class RetrievedResult
{
public int Paragraph { get; set; }
[JsonPropertyName("cite_source")]
public string CiteSource { get; set; } = "related text";
[JsonPropertyName("reasoning")]
public string Reasoning { get; set; } = "";
}