namespace BotSharp.Abstraction.Knowledges; public interface IKnowledgeService { Task> GetKnowledgeCollections(); Task> SearchKnowledge(string collectionName, KnowledgeSearchOptions options); Task FeedKnowledge(string collectionName, KnowledgeCreationModel model); Task> GetKnowledgeCollectionData(string collectionName, KnowledgeFilter filter); Task DeleteKnowledgeCollectionData(string collectionName, string id); }