BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Settings/AgentSettings.cs

17 lines
537 B
C#
Raw Normal View History

2023-07-21 22:17:16 +00:00
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;
2024-05-09 20:59:59 +00:00
public bool EnableTranslator { get; set; } = false;
2024-05-20 21:50:45 +00:00
public bool EnableHttpHandler { get; set; } = false;
2023-12-13 23:16:34 +00:00
/// <summary>
/// This is the default LLM config for agent
/// </summary>
public AgentLlmConfig LlmConfig { get; set; }
= new AgentLlmConfig();
2023-07-21 22:17:16 +00:00
}