BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Settings/KnowledgeBaseSettings.cs

13 lines
312 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Knowledges.Settings;
2023-06-26 23:08:24 +00:00
public class KnowledgeBaseSettings
{
public string VectorDb { get; set; }
public KnowledgeModelSetting TextEmbedding { get; set; }
2023-06-26 23:08:24 +00:00
}
public class KnowledgeModelSetting
{
public string Provider { get; set; }
public string Model { get; set; }
}