fix missing implementation
This commit is contained in:
parent
58cf4494f6
commit
ac4e856f7b
|
|
@ -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>();
|
||||
|
|
|
|||
Loading…
Reference in a new issue