BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Repository/MongoRepository.Knowledge.cs

13 lines
412 B
C#
Raw Normal View History

2024-09-09 16:32:31 +00:00
using BotSharp.Abstraction.VectorStorage.Models;
namespace BotSharp.Plugin.MongoStorage.Repository;
public partial class MongoRepository
{
public bool SaveKnowledgeCollectionConfigs(List<VectorCollectionConfig> configs) =>
throw new NotImplementedException();
public VectorCollectionConfig? GetKnowledgeCollectionConfig(string collectionName) =>
throw new NotImplementedException();
}