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-10 19:02:25 +00:00
|
|
|
public KnowledgeVectorStorageConfigMongoModel VectorStorage { get; set; }
|
2024-09-09 17:05:11 +00:00
|
|
|
public KnowledgeEmbeddingConfigMongoModel TextEmbedding { get; set; }
|
|
|
|
|
}
|