@workglow/ai 0.2.28 → 0.2.30
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/README.md +22 -14
- package/dist/browser.js +9 -6
- package/dist/browser.js.map +5 -5
- package/dist/bun.js +9 -6
- package/dist/bun.js.map +5 -5
- package/dist/node.js +9 -6
- package/dist/node.js.map +5 -5
- package/dist/task/ChunkVectorUpsertTask.d.ts +1 -1
- package/dist/task/ChunkVectorUpsertTask.d.ts.map +1 -1
- package/dist/task/DocumentUpsertTask.d.ts.map +1 -1
- package/dist/task/KbToDocumentsTask.d.ts.map +1 -1
- package/package.json +11 -11
package/dist/node.js
CHANGED
|
@@ -1971,7 +1971,7 @@ var outputSchema2 = {
|
|
|
1971
1971
|
|
|
1972
1972
|
class ChunkVectorUpsertTask extends Task3 {
|
|
1973
1973
|
static type = "ChunkVectorUpsertTask";
|
|
1974
|
-
static category = "
|
|
1974
|
+
static category = "Document";
|
|
1975
1975
|
static title = "Add to Vector Store";
|
|
1976
1976
|
static description = "Store chunks + their embeddings in a knowledge base (1:1 aligned)";
|
|
1977
1977
|
static cacheable = false;
|
|
@@ -2748,8 +2748,11 @@ var documentEnricher = (input, config) => {
|
|
|
2748
2748
|
Workflow9.prototype.documentEnricher = CreateWorkflow9(DocumentEnricherTask);
|
|
2749
2749
|
|
|
2750
2750
|
// src/task/DocumentUpsertTask.ts
|
|
2751
|
-
import {
|
|
2752
|
-
|
|
2751
|
+
import {
|
|
2752
|
+
Document,
|
|
2753
|
+
DocumentMetadataSchema,
|
|
2754
|
+
TypeKnowledgeBase as TypeKnowledgeBase3
|
|
2755
|
+
} from "@workglow/knowledge-base";
|
|
2753
2756
|
import { CreateWorkflow as CreateWorkflow10, Task as Task6, Workflow as Workflow10 } from "@workglow/task-graph";
|
|
2754
2757
|
var inputSchema5 = {
|
|
2755
2758
|
type: "object",
|
|
@@ -2797,7 +2800,7 @@ var outputSchema5 = {
|
|
|
2797
2800
|
|
|
2798
2801
|
class DocumentUpsertTask extends Task6 {
|
|
2799
2802
|
static type = "DocumentUpsertTask";
|
|
2800
|
-
static category = "
|
|
2803
|
+
static category = "Document";
|
|
2801
2804
|
static title = "Add Document";
|
|
2802
2805
|
static description = "Persist a parsed document tree to a knowledge base";
|
|
2803
2806
|
static cacheable = false;
|
|
@@ -4133,7 +4136,7 @@ var outputSchema8 = {
|
|
|
4133
4136
|
|
|
4134
4137
|
class KbToDocumentsTask extends Task9 {
|
|
4135
4138
|
static type = "KbToDocumentsTask";
|
|
4136
|
-
static category = "
|
|
4139
|
+
static category = "Document";
|
|
4137
4140
|
static title = "Knowledge Base to Documents";
|
|
4138
4141
|
static description = "List documents from a knowledge base, optionally filtering to only those that need embedding";
|
|
4139
4142
|
static cacheable = false;
|
|
@@ -7444,4 +7447,4 @@ export {
|
|
|
7444
7447
|
AiChatInputSchema
|
|
7445
7448
|
};
|
|
7446
7449
|
|
|
7447
|
-
//# debugId=
|
|
7450
|
+
//# debugId=E069F62C45DFC53C64756E2164756E21
|