2023-08-31 15:48:59 +00:00
|
|
|
namespace BotSharp.Abstraction.Knowledges.Settings;
|
2023-06-26 23:08:24 +00:00
|
|
|
|
|
|
|
|
public class KnowledgeBaseSettings
|
|
|
|
|
{
|
|
|
|
|
public string VectorDb { get; set; }
|
|
|
|
|
public string TextEmbedding { get; set; }
|
2023-06-27 04:08:23 +00:00
|
|
|
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
|
|
|
}
|