2024-09-09 17:05:11 +00:00
|
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
|
|
|
|
|
|
|
|
|
public class KnowledgeCollectionConfigDocument : MongoBase
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Type { get; set; }
|
2024-09-12 16:51:23 +00:00
|
|
|
public KnowledgeVectorStoreConfigMongoModel VectorStore { get; set; }
|
2024-09-09 17:05:11 +00:00
|
|
|
public KnowledgeEmbeddingConfigMongoModel TextEmbedding { get; set; }
|
|
|
|
|
}
|