2023-07-21 22:17:16 +00:00
|
|
|
namespace BotSharp.Abstraction.Agents.Settings;
|
|
|
|
|
|
|
|
|
|
public class AgentSettings
|
|
|
|
|
{
|
2023-09-06 12:58:02 +00:00
|
|
|
public string DataDir { get; set; } = string.Empty;
|
|
|
|
|
public string TemplateFormat { get; set; } = "liquid";
|
2024-01-16 17:38:45 +00:00
|
|
|
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
|
|
|
}
|