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";
|
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
|
|
|
}
|