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