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; }
|
2024-08-09 21:03:29 +00:00
|
|
|
public KnowledgeModelSetting TextEmbedding { get; set; }
|
2023-06-26 23:08:24 +00:00
|
|
|
}
|
2024-08-09 21:03:29 +00:00
|
|
|
|
|
|
|
|
public class KnowledgeModelSetting
|
|
|
|
|
{
|
|
|
|
|
public string Provider { get; set; }
|
|
|
|
|
public string Model { get; set; }
|
|
|
|
|
}
|