BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/Models/CodeInstructOptions.cs
2025-09-30 15:03:06 -05:00

8 lines
192 B
C#

namespace BotSharp.Abstraction.Instructs.Models;
public class CodeInstructOptions
{
public string? CodeTemplateName { get; set; }
public string? CodeInterpretProvider { get; set; }
}