BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Settings/AgentSettings.cs
2024-05-20 16:50:45 -05:00

17 lines
537 B
C#

namespace BotSharp.Abstraction.Agents.Settings;
public class AgentSettings
{
public string DataDir { get; set; } = string.Empty;
public string TemplateFormat { get; set; } = "liquid";
public string HostAgentId { get; set; } = string.Empty;
public bool EnableTranslator { get; set; } = false;
public bool EnableHttpHandler { get; set; } = false;
/// <summary>
/// This is the default LLM config for agent
/// </summary>
public AgentLlmConfig LlmConfig { get; set; }
= new AgentLlmConfig();
}