@workglow/knowledge-base 0.0.121 → 0.0.122
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/document/Document.d.ts.map +1 -1
- package/dist/document/DocumentSchema.d.ts +170 -170
- package/dist/document/StructuralParser.d.ts.map +1 -1
- package/dist/knowledge-base/InMemoryKnowledgeBaseRepository.d.ts.map +1 -1
- package/dist/knowledge-base/KnowledgeBase.d.ts.map +1 -1
- package/dist/knowledge-base/KnowledgeBaseRepository.d.ts.map +1 -1
- package/package.json +14 -14
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Document.d.ts","sourceRoot":"","sources":["../../src/document/Document.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,KAAK,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEvE;;;;;;;GAOG;AACH,qBAAa,QAAQ;IACZ,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,SAAgB,QAAQ,EAAE,gBAAgB,CAAC;IAC3C,SAAgB,IAAI,EAAE,YAAY,CAAC;IACnC,OAAO,CAAC,MAAM,CAAgB;
|
|
1
|
+
{"version":3,"file":"Document.d.ts","sourceRoot":"","sources":["../../src/document/Document.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,KAAK,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEvE;;;;;;;GAOG;AACH,qBAAa,QAAQ;IACZ,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,SAAgB,QAAQ,EAAE,gBAAgB,CAAC;IAC3C,SAAgB,IAAI,EAAE,YAAY,CAAC;IACnC,OAAO,CAAC,MAAM,CAAgB;IAE9B,YACE,IAAI,EAAE,YAAY,EAClB,QAAQ,EAAE,gBAAgB,EAC1B,MAAM,GAAE,WAAW,EAAO,EAC1B,MAAM,CAAC,EAAE,MAAM,EAMhB;IAED;;OAEG;IACH,SAAS,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,IAAI,CAErC;IAED;;OAEG;IACH,SAAS,IAAI,WAAW,EAAE,CAEzB;IAED;;OAEG;IACH,QAAQ,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAE7B;IAED;;OAEG;IACH,kBAAkB,CAAC,MAAM,EAAE,MAAM,GAAG,WAAW,EAAE,CAEhD;IAED;;OAEG;IACH,MAAM,IAAI;QACR,QAAQ,EAAE,gBAAgB,CAAC;QAC3B,IAAI,EAAE,YAAY,CAAC;QACnB,MAAM,EAAE,WAAW,EAAE,CAAC;KACvB,CAMA;IAED;;OAEG;IACH,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,QAAQ,CAGvD;CACF"}
|
|
@@ -127,7 +127,7 @@ export declare const DocumentNodeBaseSchema: {
|
|
|
127
127
|
};
|
|
128
128
|
readonly kind: {
|
|
129
129
|
readonly type: "string";
|
|
130
|
-
readonly enum: ("document" | "
|
|
130
|
+
readonly enum: ("document" | "paragraph" | "section" | "sentence" | "topic")[];
|
|
131
131
|
readonly title: "Kind";
|
|
132
132
|
readonly description: "Node type discriminator";
|
|
133
133
|
};
|
|
@@ -213,21 +213,6 @@ export declare const DocumentNodeSchema: {
|
|
|
213
213
|
readonly title: "Document Node";
|
|
214
214
|
readonly description: "A node in the hierarchical document tree";
|
|
215
215
|
readonly properties: {
|
|
216
|
-
readonly level: {
|
|
217
|
-
readonly type: "integer";
|
|
218
|
-
readonly title: "Level";
|
|
219
|
-
readonly description: "Header level for section nodes";
|
|
220
|
-
};
|
|
221
|
-
readonly title: {
|
|
222
|
-
readonly type: "string";
|
|
223
|
-
readonly title: "Title";
|
|
224
|
-
readonly description: "Section title";
|
|
225
|
-
};
|
|
226
|
-
readonly children: {
|
|
227
|
-
readonly type: "array";
|
|
228
|
-
readonly title: "Children";
|
|
229
|
-
readonly description: "Child nodes";
|
|
230
|
-
};
|
|
231
216
|
readonly nodeId: {
|
|
232
217
|
readonly type: "string";
|
|
233
218
|
readonly title: "Node ID";
|
|
@@ -235,7 +220,7 @@ export declare const DocumentNodeSchema: {
|
|
|
235
220
|
};
|
|
236
221
|
readonly kind: {
|
|
237
222
|
readonly type: "string";
|
|
238
|
-
readonly enum: ("document" | "
|
|
223
|
+
readonly enum: ("document" | "paragraph" | "section" | "sentence" | "topic")[];
|
|
239
224
|
readonly title: "Kind";
|
|
240
225
|
readonly description: "Node type discriminator";
|
|
241
226
|
};
|
|
@@ -307,6 +292,21 @@ export declare const DocumentNodeSchema: {
|
|
|
307
292
|
};
|
|
308
293
|
readonly additionalProperties: false;
|
|
309
294
|
};
|
|
295
|
+
readonly level: {
|
|
296
|
+
readonly type: "integer";
|
|
297
|
+
readonly title: "Level";
|
|
298
|
+
readonly description: "Header level for section nodes";
|
|
299
|
+
};
|
|
300
|
+
readonly title: {
|
|
301
|
+
readonly type: "string";
|
|
302
|
+
readonly title: "Title";
|
|
303
|
+
readonly description: "Section title";
|
|
304
|
+
};
|
|
305
|
+
readonly children: {
|
|
306
|
+
readonly type: "array";
|
|
307
|
+
readonly title: "Children";
|
|
308
|
+
readonly description: "Child nodes";
|
|
309
|
+
};
|
|
310
310
|
};
|
|
311
311
|
readonly required: readonly ["nodeId", "kind", "range", "text"];
|
|
312
312
|
readonly additionalProperties: false;
|
|
@@ -317,12 +317,6 @@ export declare const DocumentNodeSchema: {
|
|
|
317
317
|
export declare const ParagraphNodeSchema: {
|
|
318
318
|
readonly type: "object";
|
|
319
319
|
readonly properties: {
|
|
320
|
-
readonly kind: {
|
|
321
|
-
readonly type: "string";
|
|
322
|
-
readonly const: "paragraph";
|
|
323
|
-
readonly title: "Kind";
|
|
324
|
-
readonly description: "Node type discriminator";
|
|
325
|
-
};
|
|
326
320
|
readonly nodeId: {
|
|
327
321
|
readonly type: "string";
|
|
328
322
|
readonly title: "Node ID";
|
|
@@ -396,6 +390,12 @@ export declare const ParagraphNodeSchema: {
|
|
|
396
390
|
};
|
|
397
391
|
readonly additionalProperties: false;
|
|
398
392
|
};
|
|
393
|
+
readonly kind: {
|
|
394
|
+
readonly type: "string";
|
|
395
|
+
readonly const: "paragraph";
|
|
396
|
+
readonly title: "Kind";
|
|
397
|
+
readonly description: "Node type discriminator";
|
|
398
|
+
};
|
|
399
399
|
};
|
|
400
400
|
readonly required: readonly ["nodeId", "kind", "range", "text"];
|
|
401
401
|
readonly additionalProperties: false;
|
|
@@ -406,12 +406,6 @@ export declare const ParagraphNodeSchema: {
|
|
|
406
406
|
export declare const SentenceNodeSchema: {
|
|
407
407
|
readonly type: "object";
|
|
408
408
|
readonly properties: {
|
|
409
|
-
readonly kind: {
|
|
410
|
-
readonly type: "string";
|
|
411
|
-
readonly const: "sentence";
|
|
412
|
-
readonly title: "Kind";
|
|
413
|
-
readonly description: "Node type discriminator";
|
|
414
|
-
};
|
|
415
409
|
readonly nodeId: {
|
|
416
410
|
readonly type: "string";
|
|
417
411
|
readonly title: "Node ID";
|
|
@@ -485,6 +479,12 @@ export declare const SentenceNodeSchema: {
|
|
|
485
479
|
};
|
|
486
480
|
readonly additionalProperties: false;
|
|
487
481
|
};
|
|
482
|
+
readonly kind: {
|
|
483
|
+
readonly type: "string";
|
|
484
|
+
readonly const: "sentence";
|
|
485
|
+
readonly title: "Kind";
|
|
486
|
+
readonly description: "Node type discriminator";
|
|
487
|
+
};
|
|
488
488
|
};
|
|
489
489
|
readonly required: readonly ["nodeId", "kind", "range", "text"];
|
|
490
490
|
readonly additionalProperties: false;
|
|
@@ -495,6 +495,79 @@ export declare const SentenceNodeSchema: {
|
|
|
495
495
|
export declare const SectionNodeSchema: {
|
|
496
496
|
readonly type: "object";
|
|
497
497
|
readonly properties: {
|
|
498
|
+
readonly nodeId: {
|
|
499
|
+
readonly type: "string";
|
|
500
|
+
readonly title: "Node ID";
|
|
501
|
+
readonly description: "Unique identifier for this node";
|
|
502
|
+
};
|
|
503
|
+
readonly range: {
|
|
504
|
+
readonly type: "object";
|
|
505
|
+
readonly properties: {
|
|
506
|
+
readonly startOffset: {
|
|
507
|
+
readonly type: "integer";
|
|
508
|
+
readonly title: "Start Offset";
|
|
509
|
+
readonly description: "Starting character offset";
|
|
510
|
+
};
|
|
511
|
+
readonly endOffset: {
|
|
512
|
+
readonly type: "integer";
|
|
513
|
+
readonly title: "End Offset";
|
|
514
|
+
readonly description: "Ending character offset";
|
|
515
|
+
};
|
|
516
|
+
};
|
|
517
|
+
readonly required: readonly ["startOffset", "endOffset"];
|
|
518
|
+
readonly additionalProperties: false;
|
|
519
|
+
};
|
|
520
|
+
readonly text: {
|
|
521
|
+
readonly type: "string";
|
|
522
|
+
readonly title: "Text";
|
|
523
|
+
readonly description: "Text content of the node";
|
|
524
|
+
};
|
|
525
|
+
readonly enrichment: {
|
|
526
|
+
readonly type: "object";
|
|
527
|
+
readonly properties: {
|
|
528
|
+
readonly summary: {
|
|
529
|
+
readonly type: "string";
|
|
530
|
+
readonly title: "Summary";
|
|
531
|
+
readonly description: "Summary of the node content";
|
|
532
|
+
};
|
|
533
|
+
readonly entities: {
|
|
534
|
+
readonly type: "array";
|
|
535
|
+
readonly items: {
|
|
536
|
+
readonly type: "object";
|
|
537
|
+
readonly properties: {
|
|
538
|
+
readonly text: {
|
|
539
|
+
readonly type: "string";
|
|
540
|
+
readonly title: "Text";
|
|
541
|
+
readonly description: "Entity text";
|
|
542
|
+
};
|
|
543
|
+
readonly type: {
|
|
544
|
+
readonly type: "string";
|
|
545
|
+
readonly title: "Type";
|
|
546
|
+
readonly description: "Entity type (e.g., PERSON, ORG, LOC)";
|
|
547
|
+
};
|
|
548
|
+
readonly score: {
|
|
549
|
+
readonly type: "number";
|
|
550
|
+
readonly title: "Score";
|
|
551
|
+
readonly description: "Confidence score";
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
readonly required: readonly ["text", "type", "score"];
|
|
555
|
+
readonly additionalProperties: false;
|
|
556
|
+
};
|
|
557
|
+
readonly title: "Entities";
|
|
558
|
+
readonly description: "Named entities extracted from the node";
|
|
559
|
+
};
|
|
560
|
+
readonly keywords: {
|
|
561
|
+
readonly type: "array";
|
|
562
|
+
readonly items: {
|
|
563
|
+
readonly type: "string";
|
|
564
|
+
};
|
|
565
|
+
readonly title: "Keywords";
|
|
566
|
+
readonly description: "Keywords associated with the node";
|
|
567
|
+
};
|
|
568
|
+
};
|
|
569
|
+
readonly additionalProperties: false;
|
|
570
|
+
};
|
|
498
571
|
readonly kind: {
|
|
499
572
|
readonly type: "string";
|
|
500
573
|
readonly const: "section";
|
|
@@ -520,21 +593,6 @@ export declare const SectionNodeSchema: {
|
|
|
520
593
|
readonly title: "Document Node";
|
|
521
594
|
readonly description: "A node in the hierarchical document tree";
|
|
522
595
|
readonly properties: {
|
|
523
|
-
readonly level: {
|
|
524
|
-
readonly type: "integer";
|
|
525
|
-
readonly title: "Level";
|
|
526
|
-
readonly description: "Header level for section nodes";
|
|
527
|
-
};
|
|
528
|
-
readonly title: {
|
|
529
|
-
readonly type: "string";
|
|
530
|
-
readonly title: "Title";
|
|
531
|
-
readonly description: "Section title";
|
|
532
|
-
};
|
|
533
|
-
readonly children: {
|
|
534
|
-
readonly type: "array";
|
|
535
|
-
readonly title: "Children";
|
|
536
|
-
readonly description: "Child nodes";
|
|
537
|
-
};
|
|
538
596
|
readonly nodeId: {
|
|
539
597
|
readonly type: "string";
|
|
540
598
|
readonly title: "Node ID";
|
|
@@ -542,7 +600,7 @@ export declare const SectionNodeSchema: {
|
|
|
542
600
|
};
|
|
543
601
|
readonly kind: {
|
|
544
602
|
readonly type: "string";
|
|
545
|
-
readonly enum: ("document" | "
|
|
603
|
+
readonly enum: ("document" | "paragraph" | "section" | "sentence" | "topic")[];
|
|
546
604
|
readonly title: "Kind";
|
|
547
605
|
readonly description: "Node type discriminator";
|
|
548
606
|
};
|
|
@@ -614,6 +672,21 @@ export declare const SectionNodeSchema: {
|
|
|
614
672
|
};
|
|
615
673
|
readonly additionalProperties: false;
|
|
616
674
|
};
|
|
675
|
+
readonly level: {
|
|
676
|
+
readonly type: "integer";
|
|
677
|
+
readonly title: "Level";
|
|
678
|
+
readonly description: "Header level for section nodes";
|
|
679
|
+
};
|
|
680
|
+
readonly title: {
|
|
681
|
+
readonly type: "string";
|
|
682
|
+
readonly title: "Title";
|
|
683
|
+
readonly description: "Section title";
|
|
684
|
+
};
|
|
685
|
+
readonly children: {
|
|
686
|
+
readonly type: "array";
|
|
687
|
+
readonly title: "Children";
|
|
688
|
+
readonly description: "Child nodes";
|
|
689
|
+
};
|
|
617
690
|
};
|
|
618
691
|
readonly required: readonly ["nodeId", "kind", "range", "text"];
|
|
619
692
|
readonly additionalProperties: false;
|
|
@@ -621,6 +694,16 @@ export declare const SectionNodeSchema: {
|
|
|
621
694
|
readonly title: "Children";
|
|
622
695
|
readonly description: "Child nodes";
|
|
623
696
|
};
|
|
697
|
+
};
|
|
698
|
+
readonly required: readonly ["nodeId", "kind", "range", "text", "level", "title", "children"];
|
|
699
|
+
readonly additionalProperties: false;
|
|
700
|
+
};
|
|
701
|
+
/**
|
|
702
|
+
* Schema for topic node
|
|
703
|
+
*/
|
|
704
|
+
export declare const TopicNodeSchema: {
|
|
705
|
+
readonly type: "object";
|
|
706
|
+
readonly properties: {
|
|
624
707
|
readonly nodeId: {
|
|
625
708
|
readonly type: "string";
|
|
626
709
|
readonly title: "Node ID";
|
|
@@ -694,16 +777,6 @@ export declare const SectionNodeSchema: {
|
|
|
694
777
|
};
|
|
695
778
|
readonly additionalProperties: false;
|
|
696
779
|
};
|
|
697
|
-
};
|
|
698
|
-
readonly required: readonly ["nodeId", "kind", "range", "text", "level", "title", "children"];
|
|
699
|
-
readonly additionalProperties: false;
|
|
700
|
-
};
|
|
701
|
-
/**
|
|
702
|
-
* Schema for topic node
|
|
703
|
-
*/
|
|
704
|
-
export declare const TopicNodeSchema: {
|
|
705
|
-
readonly type: "object";
|
|
706
|
-
readonly properties: {
|
|
707
780
|
readonly kind: {
|
|
708
781
|
readonly type: "string";
|
|
709
782
|
readonly const: "topic";
|
|
@@ -717,21 +790,6 @@ export declare const TopicNodeSchema: {
|
|
|
717
790
|
readonly title: "Document Node";
|
|
718
791
|
readonly description: "A node in the hierarchical document tree";
|
|
719
792
|
readonly properties: {
|
|
720
|
-
readonly level: {
|
|
721
|
-
readonly type: "integer";
|
|
722
|
-
readonly title: "Level";
|
|
723
|
-
readonly description: "Header level for section nodes";
|
|
724
|
-
};
|
|
725
|
-
readonly title: {
|
|
726
|
-
readonly type: "string";
|
|
727
|
-
readonly title: "Title";
|
|
728
|
-
readonly description: "Section title";
|
|
729
|
-
};
|
|
730
|
-
readonly children: {
|
|
731
|
-
readonly type: "array";
|
|
732
|
-
readonly title: "Children";
|
|
733
|
-
readonly description: "Child nodes";
|
|
734
|
-
};
|
|
735
793
|
readonly nodeId: {
|
|
736
794
|
readonly type: "string";
|
|
737
795
|
readonly title: "Node ID";
|
|
@@ -739,7 +797,7 @@ export declare const TopicNodeSchema: {
|
|
|
739
797
|
};
|
|
740
798
|
readonly kind: {
|
|
741
799
|
readonly type: "string";
|
|
742
|
-
readonly enum: ("document" | "
|
|
800
|
+
readonly enum: ("document" | "paragraph" | "section" | "sentence" | "topic")[];
|
|
743
801
|
readonly title: "Kind";
|
|
744
802
|
readonly description: "Node type discriminator";
|
|
745
803
|
};
|
|
@@ -811,6 +869,21 @@ export declare const TopicNodeSchema: {
|
|
|
811
869
|
};
|
|
812
870
|
readonly additionalProperties: false;
|
|
813
871
|
};
|
|
872
|
+
readonly level: {
|
|
873
|
+
readonly type: "integer";
|
|
874
|
+
readonly title: "Level";
|
|
875
|
+
readonly description: "Header level for section nodes";
|
|
876
|
+
};
|
|
877
|
+
readonly title: {
|
|
878
|
+
readonly type: "string";
|
|
879
|
+
readonly title: "Title";
|
|
880
|
+
readonly description: "Section title";
|
|
881
|
+
};
|
|
882
|
+
readonly children: {
|
|
883
|
+
readonly type: "array";
|
|
884
|
+
readonly title: "Children";
|
|
885
|
+
readonly description: "Child nodes";
|
|
886
|
+
};
|
|
814
887
|
};
|
|
815
888
|
readonly required: readonly ["nodeId", "kind", "range", "text"];
|
|
816
889
|
readonly additionalProperties: false;
|
|
@@ -818,6 +891,16 @@ export declare const TopicNodeSchema: {
|
|
|
818
891
|
readonly title: "Children";
|
|
819
892
|
readonly description: "Child nodes";
|
|
820
893
|
};
|
|
894
|
+
};
|
|
895
|
+
readonly required: readonly ["nodeId", "kind", "range", "text", "children"];
|
|
896
|
+
readonly additionalProperties: false;
|
|
897
|
+
};
|
|
898
|
+
/**
|
|
899
|
+
* Schema for document root node
|
|
900
|
+
*/
|
|
901
|
+
export declare const DocumentRootNodeSchema: {
|
|
902
|
+
readonly type: "object";
|
|
903
|
+
readonly properties: {
|
|
821
904
|
readonly nodeId: {
|
|
822
905
|
readonly type: "string";
|
|
823
906
|
readonly title: "Node ID";
|
|
@@ -891,16 +974,6 @@ export declare const TopicNodeSchema: {
|
|
|
891
974
|
};
|
|
892
975
|
readonly additionalProperties: false;
|
|
893
976
|
};
|
|
894
|
-
};
|
|
895
|
-
readonly required: readonly ["nodeId", "kind", "range", "text", "children"];
|
|
896
|
-
readonly additionalProperties: false;
|
|
897
|
-
};
|
|
898
|
-
/**
|
|
899
|
-
* Schema for document root node
|
|
900
|
-
*/
|
|
901
|
-
export declare const DocumentRootNodeSchema: {
|
|
902
|
-
readonly type: "object";
|
|
903
|
-
readonly properties: {
|
|
904
977
|
readonly kind: {
|
|
905
978
|
readonly type: "string";
|
|
906
979
|
readonly const: "document";
|
|
@@ -919,21 +992,6 @@ export declare const DocumentRootNodeSchema: {
|
|
|
919
992
|
readonly title: "Document Node";
|
|
920
993
|
readonly description: "A node in the hierarchical document tree";
|
|
921
994
|
readonly properties: {
|
|
922
|
-
readonly level: {
|
|
923
|
-
readonly type: "integer";
|
|
924
|
-
readonly title: "Level";
|
|
925
|
-
readonly description: "Header level for section nodes";
|
|
926
|
-
};
|
|
927
|
-
readonly title: {
|
|
928
|
-
readonly type: "string";
|
|
929
|
-
readonly title: "Title";
|
|
930
|
-
readonly description: "Section title";
|
|
931
|
-
};
|
|
932
|
-
readonly children: {
|
|
933
|
-
readonly type: "array";
|
|
934
|
-
readonly title: "Children";
|
|
935
|
-
readonly description: "Child nodes";
|
|
936
|
-
};
|
|
937
995
|
readonly nodeId: {
|
|
938
996
|
readonly type: "string";
|
|
939
997
|
readonly title: "Node ID";
|
|
@@ -941,7 +999,7 @@ export declare const DocumentRootNodeSchema: {
|
|
|
941
999
|
};
|
|
942
1000
|
readonly kind: {
|
|
943
1001
|
readonly type: "string";
|
|
944
|
-
readonly enum: ("document" | "
|
|
1002
|
+
readonly enum: ("document" | "paragraph" | "section" | "sentence" | "topic")[];
|
|
945
1003
|
readonly title: "Kind";
|
|
946
1004
|
readonly description: "Node type discriminator";
|
|
947
1005
|
};
|
|
@@ -1013,6 +1071,21 @@ export declare const DocumentRootNodeSchema: {
|
|
|
1013
1071
|
};
|
|
1014
1072
|
readonly additionalProperties: false;
|
|
1015
1073
|
};
|
|
1074
|
+
readonly level: {
|
|
1075
|
+
readonly type: "integer";
|
|
1076
|
+
readonly title: "Level";
|
|
1077
|
+
readonly description: "Header level for section nodes";
|
|
1078
|
+
};
|
|
1079
|
+
readonly title: {
|
|
1080
|
+
readonly type: "string";
|
|
1081
|
+
readonly title: "Title";
|
|
1082
|
+
readonly description: "Section title";
|
|
1083
|
+
};
|
|
1084
|
+
readonly children: {
|
|
1085
|
+
readonly type: "array";
|
|
1086
|
+
readonly title: "Children";
|
|
1087
|
+
readonly description: "Child nodes";
|
|
1088
|
+
};
|
|
1016
1089
|
};
|
|
1017
1090
|
readonly required: readonly ["nodeId", "kind", "range", "text"];
|
|
1018
1091
|
readonly additionalProperties: false;
|
|
@@ -1020,79 +1093,6 @@ export declare const DocumentRootNodeSchema: {
|
|
|
1020
1093
|
readonly title: "Children";
|
|
1021
1094
|
readonly description: "Child nodes";
|
|
1022
1095
|
};
|
|
1023
|
-
readonly nodeId: {
|
|
1024
|
-
readonly type: "string";
|
|
1025
|
-
readonly title: "Node ID";
|
|
1026
|
-
readonly description: "Unique identifier for this node";
|
|
1027
|
-
};
|
|
1028
|
-
readonly range: {
|
|
1029
|
-
readonly type: "object";
|
|
1030
|
-
readonly properties: {
|
|
1031
|
-
readonly startOffset: {
|
|
1032
|
-
readonly type: "integer";
|
|
1033
|
-
readonly title: "Start Offset";
|
|
1034
|
-
readonly description: "Starting character offset";
|
|
1035
|
-
};
|
|
1036
|
-
readonly endOffset: {
|
|
1037
|
-
readonly type: "integer";
|
|
1038
|
-
readonly title: "End Offset";
|
|
1039
|
-
readonly description: "Ending character offset";
|
|
1040
|
-
};
|
|
1041
|
-
};
|
|
1042
|
-
readonly required: readonly ["startOffset", "endOffset"];
|
|
1043
|
-
readonly additionalProperties: false;
|
|
1044
|
-
};
|
|
1045
|
-
readonly text: {
|
|
1046
|
-
readonly type: "string";
|
|
1047
|
-
readonly title: "Text";
|
|
1048
|
-
readonly description: "Text content of the node";
|
|
1049
|
-
};
|
|
1050
|
-
readonly enrichment: {
|
|
1051
|
-
readonly type: "object";
|
|
1052
|
-
readonly properties: {
|
|
1053
|
-
readonly summary: {
|
|
1054
|
-
readonly type: "string";
|
|
1055
|
-
readonly title: "Summary";
|
|
1056
|
-
readonly description: "Summary of the node content";
|
|
1057
|
-
};
|
|
1058
|
-
readonly entities: {
|
|
1059
|
-
readonly type: "array";
|
|
1060
|
-
readonly items: {
|
|
1061
|
-
readonly type: "object";
|
|
1062
|
-
readonly properties: {
|
|
1063
|
-
readonly text: {
|
|
1064
|
-
readonly type: "string";
|
|
1065
|
-
readonly title: "Text";
|
|
1066
|
-
readonly description: "Entity text";
|
|
1067
|
-
};
|
|
1068
|
-
readonly type: {
|
|
1069
|
-
readonly type: "string";
|
|
1070
|
-
readonly title: "Type";
|
|
1071
|
-
readonly description: "Entity type (e.g., PERSON, ORG, LOC)";
|
|
1072
|
-
};
|
|
1073
|
-
readonly score: {
|
|
1074
|
-
readonly type: "number";
|
|
1075
|
-
readonly title: "Score";
|
|
1076
|
-
readonly description: "Confidence score";
|
|
1077
|
-
};
|
|
1078
|
-
};
|
|
1079
|
-
readonly required: readonly ["text", "type", "score"];
|
|
1080
|
-
readonly additionalProperties: false;
|
|
1081
|
-
};
|
|
1082
|
-
readonly title: "Entities";
|
|
1083
|
-
readonly description: "Named entities extracted from the node";
|
|
1084
|
-
};
|
|
1085
|
-
readonly keywords: {
|
|
1086
|
-
readonly type: "array";
|
|
1087
|
-
readonly items: {
|
|
1088
|
-
readonly type: "string";
|
|
1089
|
-
};
|
|
1090
|
-
readonly title: "Keywords";
|
|
1091
|
-
readonly description: "Keywords associated with the node";
|
|
1092
|
-
};
|
|
1093
|
-
};
|
|
1094
|
-
readonly additionalProperties: false;
|
|
1095
|
-
};
|
|
1096
1096
|
};
|
|
1097
1097
|
readonly required: readonly ["nodeId", "kind", "range", "text", "title", "children"];
|
|
1098
1098
|
readonly additionalProperties: false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StructuralParser.d.ts","sourceRoot":"","sources":["../../src/document/StructuralParser.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EACL,KAAK,gBAAgB,EAItB,MAAM,kBAAkB,CAAC;AAE1B;;GAEG;AACH,qBAAa,gBAAgB;IAC3B;;OAEG;
|
|
1
|
+
{"version":3,"file":"StructuralParser.d.ts","sourceRoot":"","sources":["../../src/document/StructuralParser.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EACL,KAAK,gBAAgB,EAItB,MAAM,kBAAkB,CAAC;AAE1B;;GAEG;AACH,qBAAa,gBAAgB;IAC3B;;OAEG;IACH,OAAa,aAAa,CACxB,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,gBAAgB,CAAC,CAmH3B;IAED;;;OAGG;IACH,OAAa,cAAc,CACzB,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,gBAAgB,CAAC,CAkE3B;IAED;;OAEG;IACH,MAAM,CAAC,KAAK,CACV,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,EACb,MAAM,CAAC,EAAE,UAAU,GAAG,MAAM,GAC3B,OAAO,CAAC,gBAAgB,CAAC,CAK3B;IAED;;;OAGG;IACH,OAAO,CAAC,MAAM,CAAC,iBAAiB;CAIjC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InMemoryKnowledgeBaseRepository.d.ts","sourceRoot":"","sources":["../../src/knowledge-base/InMemoryKnowledgeBaseRepository.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAGpE;;GAEG;AACH,qBAAa,+BAAgC,SAAQ,uBAAuB
|
|
1
|
+
{"version":3,"file":"InMemoryKnowledgeBaseRepository.d.ts","sourceRoot":"","sources":["../../src/knowledge-base/InMemoryKnowledgeBaseRepository.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAGpE;;GAEG;AACH,qBAAa,+BAAgC,SAAQ,uBAAuB;IAC1E,cAEC;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KnowledgeBase.d.ts","sourceRoot":"","sources":["../../src/knowledge-base/KnowledgeBase.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAClF,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,KAAK,EACV,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,uBAAuB,EACxB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,KAAK,EAEV,sBAAsB,EAEvB,MAAM,mCAAmC,CAAC;AAE3C;;;GAGG;AACH,qBAAa,aAAa;IACxB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,OAAO,CAAC,cAAc,CAAyB;IAC/C,OAAO,CAAC,YAAY,CAAqB;
|
|
1
|
+
{"version":3,"file":"KnowledgeBase.d.ts","sourceRoot":"","sources":["../../src/knowledge-base/KnowledgeBase.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KnowledgeBaseRepository.d.ts","sourceRoot":"","sources":["../../src/knowledge-base/KnowledgeBaseRepository.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAEpE,OAAO,EACL,4BAA4B,EAC5B,KAAK,mBAAmB,EACxB,yBAAyB,EAC1B,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AAEH,MAAM,MAAM,2BAA2B,GAAG;IACxC,oBAAoB,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAC;IAC5D,sBAAsB,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAC;IAC9D,sBAAsB,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAC;CAC/D,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,MAAM,2BAA2B,CAAC;AAEpE,MAAM,MAAM,0BAA0B,CAAC,KAAK,SAAS,mBAAmB,IACtE,2BAA2B,CAAC,KAAK,CAAC,CAAC;AAErC,MAAM,MAAM,4BAA4B,CAAC,KAAK,SAAS,mBAAmB,IAAI,eAAe,CAC3F,2BAA2B,EAC3B,KAAK,CACN,CAAC;AAEF;;;GAGG;AACH,qBAAa,uBAAuB;IAClC;;OAEG;IACH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,eAAe,CACzC,OAAO,yBAAyB,EAChC,OAAO,4BAA4B,CACpC,CAAC;
|
|
1
|
+
{"version":3,"file":"KnowledgeBaseRepository.d.ts","sourceRoot":"","sources":["../../src/knowledge-base/KnowledgeBaseRepository.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAEpE,OAAO,EACL,4BAA4B,EAC5B,KAAK,mBAAmB,EACxB,yBAAyB,EAC1B,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AAEH,MAAM,MAAM,2BAA2B,GAAG;IACxC,oBAAoB,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAC;IAC5D,sBAAsB,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAC;IAC9D,sBAAsB,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAC;CAC/D,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,MAAM,2BAA2B,CAAC;AAEpE,MAAM,MAAM,0BAA0B,CAAC,KAAK,SAAS,mBAAmB,IACtE,2BAA2B,CAAC,KAAK,CAAC,CAAC;AAErC,MAAM,MAAM,4BAA4B,CAAC,KAAK,SAAS,mBAAmB,IAAI,eAAe,CAC3F,2BAA2B,EAC3B,KAAK,CACN,CAAC;AAEF;;;GAGG;AACH,qBAAa,uBAAuB;IAClC;;OAEG;IACH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,eAAe,CACzC,OAAO,yBAAyB,EAChC,OAAO,4BAA4B,CACpC,CAAC;IAEF,YACE,OAAO,EAAE,eAAe,CACtB,OAAO,yBAAyB,EAChC,OAAO,4BAA4B,CACpC,EAGF;IAED,0CAA0C;IAC1C,SAAS,CAAC,MAAM,4CAAmD;IAEnE;;;OAGG;IACG,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC,CAEnC;IAED;;OAEG;IACH,EAAE,CAAC,KAAK,SAAS,mBAAmB,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE,0BAA0B,CAAC,KAAK,CAAC,QAEvF;IAED;;OAEG;IACH,GAAG,CAAC,KAAK,SAAS,mBAAmB,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE,0BAA0B,CAAC,KAAK,CAAC,QAExF;IAED;;OAEG;IACH,IAAI,CAAC,KAAK,SAAS,mBAAmB,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE,0BAA0B,CAAC,KAAK,CAAC,QAEzF;IAED;;OAEG;IACH,MAAM,CAAC,KAAK,SAAS,mBAAmB,EAAE,IAAI,EAAE,KAAK,2FAEpD;IAED;;OAEG;IACG,gBAAgB,CAAC,MAAM,EAAE,mBAAmB,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAIhF;IAED;;OAEG;IACG,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAOtD;IAED;;OAEG;IACG,gBAAgB,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,GAAG,SAAS,CAAC,CAI9E;IAED;;OAEG;IACG,YAAY,IAAI,OAAO,CAAC,mBAAmB,EAAE,CAAC,CAInD;IAED;;OAEG;IACG,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC,CAE5B;CACF"}
|
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workglow/knowledge-base",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.122",
|
|
5
5
|
"description": "Dataset package for Workglow.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"watch": "concurrently -c 'auto' 'bun:watch-*'",
|
|
8
8
|
"watch-js": "concurrently -c 'auto' -n 'browser,node,bun' 'bun run watch-browser' 'bun run watch-node' 'bun run watch-bun'",
|
|
9
|
-
"watch-browser": "bun build --
|
|
10
|
-
"watch-node": "bun build --
|
|
11
|
-
"watch-bun": "bun build --
|
|
9
|
+
"watch-browser": "bun build --watch --no-clear-screen --target=browser --sourcemap=external --packages=external --outdir ./dist ./src/browser.ts",
|
|
10
|
+
"watch-node": "bun build --watch --no-clear-screen --target=node --sourcemap=external --packages=external --outdir ./dist ./src/node.ts",
|
|
11
|
+
"watch-bun": "bun build --watch --no-clear-screen --target=bun --sourcemap=external --packages=external --outdir ./dist ./src/bun.ts",
|
|
12
12
|
"watch-types": "tsc --watch --preserveWatchOutput",
|
|
13
13
|
"build-package": "concurrently -c 'auto' -n 'browser,node,bun,types' 'bun run build-browser' 'bun run build-node' 'bun run build-bun' 'bun run build-types'",
|
|
14
14
|
"build-js": "concurrently -c 'auto' -n 'browser,node,bun' 'bun run build-browser' 'bun run build-node' 'bun run build-bun'",
|
|
15
15
|
"build-clean": "rm -fr dist/* tsconfig.tsbuildinfo",
|
|
16
|
-
"build-browser": "bun build --
|
|
17
|
-
"build-node": "bun build --
|
|
18
|
-
"build-bun": "bun build --
|
|
19
|
-
"build-types": "rm -f tsconfig.tsbuildinfo &&
|
|
16
|
+
"build-browser": "bun build --target=browser --sourcemap=external --packages=external --outdir ./dist ./src/browser.ts",
|
|
17
|
+
"build-node": "bun build --target=node --sourcemap=external --packages=external --outdir ./dist ./src/node.ts",
|
|
18
|
+
"build-bun": "bun build --target=bun --sourcemap=external --packages=external --outdir ./dist ./src/bun.ts",
|
|
19
|
+
"build-types": "rm -f tsconfig.tsbuildinfo && tsgo",
|
|
20
20
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
21
21
|
"test": "bun test"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@workglow/storage": "0.0.
|
|
25
|
-
"@workglow/util": "0.0.
|
|
26
|
-
"@workglow/sqlite": "0.0.
|
|
24
|
+
"@workglow/storage": "0.0.122",
|
|
25
|
+
"@workglow/util": "0.0.122",
|
|
26
|
+
"@workglow/sqlite": "0.0.122"
|
|
27
27
|
},
|
|
28
28
|
"peerDependenciesMeta": {
|
|
29
29
|
"@workglow/storage": {
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@workglow/storage": "0.0.
|
|
41
|
-
"@workglow/util": "0.0.
|
|
42
|
-
"@workglow/sqlite": "0.0.
|
|
40
|
+
"@workglow/storage": "0.0.122",
|
|
41
|
+
"@workglow/util": "0.0.122",
|
|
42
|
+
"@workglow/sqlite": "0.0.122"
|
|
43
43
|
},
|
|
44
44
|
"exports": {
|
|
45
45
|
".": {
|