BotSharp/src/Infrastructure/BotSharp.Core/Plugins/Knowledges/KnowledgeBaseSettings.cs

10 lines
268 B
C#
Raw Normal View History

2023-06-26 23:08:24 +00:00
namespace BotSharp.Core.Plugins.Knowledges;
public class KnowledgeBaseSettings
{
public string VectorDb { get; set; }
public string TextEmbedding { get; set; }
public string TextCompletion { get; set; }
2023-08-28 15:24:43 +00:00
public string Pdf2TextConverter { get; set; }
2023-06-26 23:08:24 +00:00
}