8 lines
171 B
C#
8 lines
171 B
C#
|
|
namespace BotSharp.Core.Plugins.Knowledges;
|
||
|
|
|
||
|
|
public class KnowledgeBaseSettings
|
||
|
|
{
|
||
|
|
public string VectorDb { get; set; }
|
||
|
|
public string TextEmbedding { get; set; }
|
||
|
|
}
|