BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Settings/ConversationSetting.cs

11 lines
327 B
C#
Raw Normal View History

2023-06-19 16:33:27 +00:00
namespace BotSharp.Abstraction.Conversations.Settings;
public class ConversationSetting
{
2023-08-10 04:53:22 +00:00
public string DataDir { get; set; }
2023-06-27 18:31:13 +00:00
public string ChatCompletion { get; set; }
2023-06-29 23:14:57 +00:00
public bool EnableKnowledgeBase { get; set; }
2023-08-20 20:33:35 +00:00
public bool ShowVerboseLog { get; set; }
2023-08-28 03:50:10 +00:00
public int MaxRecursiveDepth { get; set; } = 3;
2023-06-19 16:33:27 +00:00
}