BotSharp/Infrastructure/BotSharp.Abstraction/Models/LlmResponse.cs
2023-05-20 16:31:31 -05:00

13 lines
350 B
C#

using Abstraction.Enums;
namespace Abstraction.Models;
public class LlmResponse
{
public string Model { get; set; } = string.Empty;
public LlmResponseExtractType Format { get; set; }
public string SessionId { get; set; } = string.Empty;
public string Content { get; set; } = string.Empty;
public bool Success { get; set; }
}