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

8 lines
192 B
C#
Raw Normal View History

2025-09-30 20:03:06 +00:00
namespace BotSharp.Abstraction.Instructs.Models;
public class CodeInstructOptions
{
public string? CodeTemplateName { get; set; }
public string? CodeInterpretProvider { get; set; }
}