@freehour/supabase-langchain 1.3.7 → 1.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -11932,7 +11932,7 @@ var Dm = class {
|
|
|
11932
11932
|
async ingest(e, t) {
|
|
11933
11933
|
let n = await this.storage.getFileStorageLocation(e);
|
|
11934
11934
|
return this.updateEmbeddings(n, typeof t == "function" ? t(n) : t).catch((e) => {
|
|
11935
|
-
throw new km(
|
|
11935
|
+
throw new km(`Failed to update embedding: ${e.message}`, {
|
|
11936
11936
|
cause: e,
|
|
11937
11937
|
location: n
|
|
11938
11938
|
});
|
package/package.json
CHANGED
|
@@ -42,7 +42,7 @@ $function$
|
|
|
42
42
|
;
|
|
43
43
|
|
|
44
44
|
CREATE OR REPLACE FUNCTION langchain.get_outdated_embeddings(bucket text)
|
|
45
|
-
RETURNS TABLE(file_id uuid, bucket_id
|
|
45
|
+
RETURNS TABLE(file_id uuid, bucket_id text, path_tokens text[])
|
|
46
46
|
LANGUAGE plpgsql
|
|
47
47
|
SET search_path TO ''
|
|
48
48
|
AS $function$
|