BotSharp/src/Infrastructure/BotSharp.Core/Knowledges/KnowledgeBase.cs
2023-06-17 21:56:22 -05:00

25 lines
573 B
C#

namespace BotSharp.Core.Knowledges;
public class KnowledgeBase : IVectorDb
{
public Task CreateCollection(string collectionName)
{
throw new NotImplementedException();
}
public Task<List<string>> GetCollections()
{
throw new NotImplementedException();
}
public Task<List<int>> Search(string collectionName, float[] vector, int limit = 10)
{
throw new NotImplementedException();
}
public Task Upsert(string collectionName, int id, float[] vector)
{
throw new NotImplementedException();
}
}