fix missing implementation

This commit is contained in:
Jicheng Lu 2024-08-07 10:17:28 -05:00
parent 58cf4494f6
commit ac4e856f7b

View file

@ -1,8 +1,8 @@
using BotSharp.Abstraction.Knowledges.Models;
using BotSharp.Abstraction.Utilities;
using BotSharp.Abstraction.VectorStorage;
using Microsoft.SemanticKernel.Memory;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace BotSharp.Plugin.SemanticKernel
@ -24,6 +24,16 @@ namespace BotSharp.Plugin.SemanticKernel
await _memoryStore.CreateCollectionAsync(collectionName);
}
public Task<StringIdPagedItems<KnowledgeCollectionData>> GetCollectionData(KnowledgeFilter filter)
{
throw new System.NotImplementedException();
}
public Task<KnowledgeCollectionInfo> GetCollectionInfo(string collectionName)
{
throw new System.NotImplementedException();
}
public async Task<List<string>> GetCollections()
{
var result = new List<string>();