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

9 lines
230 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-06-19 16:33:27 +00:00
}