From fe2878b24c4f426437e750af1c6ca00843c3cbfa Mon Sep 17 00:00:00 2001 From: "C. Oceania" Date: Wed, 10 Jul 2024 11:25:17 -0500 Subject: [PATCH] Update FaissDb.cs --- src/Plugins/BotSharp.Plugin.MetaAI/Providers/FaissDb.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/BotSharp.Plugin.MetaAI/Providers/FaissDb.cs b/src/Plugins/BotSharp.Plugin.MetaAI/Providers/FaissDb.cs index 3fac532d..c74c86bb 100644 --- a/src/Plugins/BotSharp.Plugin.MetaAI/Providers/FaissDb.cs +++ b/src/Plugins/BotSharp.Plugin.MetaAI/Providers/FaissDb.cs @@ -22,7 +22,7 @@ public class FaissDb : IVectorDb throw new NotImplementedException(); } - public Task Upsert(string collectionName, int id, float[] vector, string text) + public Task Upsert(string collectionName, string id, float[] vector, string text, Dictionary? payload = null) { throw new NotImplementedException(); }