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

10 lines
313 B
C#

namespace BotSharp.Abstraction.Knowledges;
public interface IVectorDb
{
Task<List<string>> GetCollections();
Task CreateCollection(string collectionName);
Task Upsert(string collectionName, int id, float[] vector);
Task<List<int>> Search(string collectionName, float[] vector, int limit = 10);
}