branch: externals/vecdb commit 34044cf6533673db63f1a806803b02efb2999663 Author: Andrew Hyatt <ahy...@gmail.com> Commit: Andrew Hyatt <ahy...@gmail.com>
Fix embed-db-get-item signature --- embed-db.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/embed-db.el b/embed-db.el index ead4942237..d2ff59b32c 100644 --- a/embed-db.el +++ b/embed-db.el @@ -74,9 +74,9 @@ An ID may be an integer or a string, and is used to uniquely identify the item." (signal 'not-implemented (list "embed-db-upsert not implemented for" (embed-db-provider-name provider)))) -(cl-defgeneric embed-db-get-item (provider collection ids &optional sync) - "Get items with IDs from the COLLECTION with PROVIDER." - (ignore collection ids sync) +(cl-defgeneric embed-db-get-item (provider collection id) + "Get items with ID from the COLLECTION with PROVIDER." + (ignore collection id) (signal 'not-implemented (list "embed-db-get not implemented for" (embed-db-provider-name provider))))