BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/Models/InstructResponseModel.cs

9 lines
209 B
C#
Raw Normal View History

2025-03-04 23:25:35 +00:00
namespace BotSharp.Abstraction.Instructs.Models;
public class InstructResponseModel
{
public string? AgentId { get; set; }
public string Provider { get; set; }
public string Model { get; set; }
}