@superatomai/sdk-node 0.0.42 → 0.0.43-mds
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.d.mts +863 -68
- package/dist/index.d.ts +863 -68
- package/dist/index.js +13787 -7825
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13758 -7806
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -59,7 +59,18 @@ declare class Logger {
|
|
|
59
59
|
* Log debug message (only shown for verbose level)
|
|
60
60
|
*/
|
|
61
61
|
debug(...args: any[]): void;
|
|
62
|
+
/**
|
|
63
|
+
* Write to log file
|
|
64
|
+
*/
|
|
62
65
|
file(...args: any[]): void;
|
|
66
|
+
/**
|
|
67
|
+
* Clear the log file (call at start of new user request)
|
|
68
|
+
*/
|
|
69
|
+
clearFile(): void;
|
|
70
|
+
/**
|
|
71
|
+
* Log LLM method prompts with clear labeling
|
|
72
|
+
*/
|
|
73
|
+
logLLMPrompt(methodName: string, promptType: 'system' | 'user', content: string | object | any[]): void;
|
|
63
74
|
}
|
|
64
75
|
declare const logger: Logger;
|
|
65
76
|
|
|
@@ -623,19 +634,19 @@ declare const ComponentSchema: z.ZodObject<{
|
|
|
623
634
|
type: z.ZodString;
|
|
624
635
|
description: z.ZodString;
|
|
625
636
|
props: z.ZodObject<{
|
|
626
|
-
query: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>]
|
|
637
|
+
query: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>]>>>;
|
|
627
638
|
title: z.ZodOptional<z.ZodString>;
|
|
628
639
|
description: z.ZodOptional<z.ZodString>;
|
|
629
640
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
630
641
|
actions: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
631
642
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
632
|
-
query: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>]
|
|
643
|
+
query: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>]>>>;
|
|
633
644
|
title: z.ZodOptional<z.ZodString>;
|
|
634
645
|
description: z.ZodOptional<z.ZodString>;
|
|
635
646
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
636
647
|
actions: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
637
648
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
638
|
-
query: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>]
|
|
649
|
+
query: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>]>>>;
|
|
639
650
|
title: z.ZodOptional<z.ZodString>;
|
|
640
651
|
description: z.ZodOptional<z.ZodString>;
|
|
641
652
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -650,7 +661,7 @@ declare const ComponentSchema: z.ZodObject<{
|
|
|
650
661
|
description: string;
|
|
651
662
|
props: {
|
|
652
663
|
description?: string | undefined;
|
|
653
|
-
query?: string | {} | undefined;
|
|
664
|
+
query?: string | {} | null | undefined;
|
|
654
665
|
title?: string | undefined;
|
|
655
666
|
config?: Record<string, unknown> | undefined;
|
|
656
667
|
actions?: any[] | undefined;
|
|
@@ -668,7 +679,7 @@ declare const ComponentSchema: z.ZodObject<{
|
|
|
668
679
|
description: string;
|
|
669
680
|
props: {
|
|
670
681
|
description?: string | undefined;
|
|
671
|
-
query?: string | {} | undefined;
|
|
682
|
+
query?: string | {} | null | undefined;
|
|
672
683
|
title?: string | undefined;
|
|
673
684
|
config?: Record<string, unknown> | undefined;
|
|
674
685
|
actions?: any[] | undefined;
|
|
@@ -681,24 +692,137 @@ declare const ComponentSchema: z.ZodObject<{
|
|
|
681
692
|
keywords?: string[] | undefined;
|
|
682
693
|
}>;
|
|
683
694
|
type Component = z.infer<typeof ComponentSchema>;
|
|
695
|
+
declare const OutputFieldSchema: z.ZodObject<{
|
|
696
|
+
name: z.ZodString;
|
|
697
|
+
type: z.ZodEnum<["string", "number", "boolean", "date"]>;
|
|
698
|
+
description: z.ZodString;
|
|
699
|
+
}, "strip", z.ZodTypeAny, {
|
|
700
|
+
type: "string" | "number" | "boolean" | "date";
|
|
701
|
+
name: string;
|
|
702
|
+
description: string;
|
|
703
|
+
}, {
|
|
704
|
+
type: "string" | "number" | "boolean" | "date";
|
|
705
|
+
name: string;
|
|
706
|
+
description: string;
|
|
707
|
+
}>;
|
|
708
|
+
type OutputField = z.infer<typeof OutputFieldSchema>;
|
|
709
|
+
declare const OutputSchema: z.ZodObject<{
|
|
710
|
+
description: z.ZodString;
|
|
711
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
712
|
+
name: z.ZodString;
|
|
713
|
+
type: z.ZodEnum<["string", "number", "boolean", "date"]>;
|
|
714
|
+
description: z.ZodString;
|
|
715
|
+
}, "strip", z.ZodTypeAny, {
|
|
716
|
+
type: "string" | "number" | "boolean" | "date";
|
|
717
|
+
name: string;
|
|
718
|
+
description: string;
|
|
719
|
+
}, {
|
|
720
|
+
type: "string" | "number" | "boolean" | "date";
|
|
721
|
+
name: string;
|
|
722
|
+
description: string;
|
|
723
|
+
}>, "many">;
|
|
724
|
+
}, "strip", z.ZodTypeAny, {
|
|
725
|
+
description: string;
|
|
726
|
+
fields: {
|
|
727
|
+
type: "string" | "number" | "boolean" | "date";
|
|
728
|
+
name: string;
|
|
729
|
+
description: string;
|
|
730
|
+
}[];
|
|
731
|
+
}, {
|
|
732
|
+
description: string;
|
|
733
|
+
fields: {
|
|
734
|
+
type: "string" | "number" | "boolean" | "date";
|
|
735
|
+
name: string;
|
|
736
|
+
description: string;
|
|
737
|
+
}[];
|
|
738
|
+
}>;
|
|
739
|
+
type ToolOutputSchema = z.infer<typeof OutputSchema>;
|
|
684
740
|
declare const ToolSchema: z.ZodObject<{
|
|
685
741
|
id: z.ZodString;
|
|
686
742
|
name: z.ZodString;
|
|
687
743
|
description: z.ZodString;
|
|
744
|
+
/** Tool type: "source" = routed through SourceAgent, "direct" = called directly by MainAgent */
|
|
745
|
+
toolType: z.ZodOptional<z.ZodEnum<["source", "direct"]>>;
|
|
746
|
+
/** Full untruncated schema for source agent (all columns visible) */
|
|
747
|
+
fullSchema: z.ZodOptional<z.ZodString>;
|
|
688
748
|
params: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
689
749
|
fn: z.ZodFunction<z.ZodTuple<[z.ZodAny], z.ZodUnknown>, z.ZodAny>;
|
|
750
|
+
outputSchema: z.ZodOptional<z.ZodObject<{
|
|
751
|
+
description: z.ZodString;
|
|
752
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
753
|
+
name: z.ZodString;
|
|
754
|
+
type: z.ZodEnum<["string", "number", "boolean", "date"]>;
|
|
755
|
+
description: z.ZodString;
|
|
756
|
+
}, "strip", z.ZodTypeAny, {
|
|
757
|
+
type: "string" | "number" | "boolean" | "date";
|
|
758
|
+
name: string;
|
|
759
|
+
description: string;
|
|
760
|
+
}, {
|
|
761
|
+
type: "string" | "number" | "boolean" | "date";
|
|
762
|
+
name: string;
|
|
763
|
+
description: string;
|
|
764
|
+
}>, "many">;
|
|
765
|
+
}, "strip", z.ZodTypeAny, {
|
|
766
|
+
description: string;
|
|
767
|
+
fields: {
|
|
768
|
+
type: "string" | "number" | "boolean" | "date";
|
|
769
|
+
name: string;
|
|
770
|
+
description: string;
|
|
771
|
+
}[];
|
|
772
|
+
}, {
|
|
773
|
+
description: string;
|
|
774
|
+
fields: {
|
|
775
|
+
type: "string" | "number" | "boolean" | "date";
|
|
776
|
+
name: string;
|
|
777
|
+
description: string;
|
|
778
|
+
}[];
|
|
779
|
+
}>>;
|
|
780
|
+
/** Cache policy. `false` = never cache (live data, write ops). Mirrors HTTP `Cache-Control: no-store`. */
|
|
781
|
+
cache: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodObject<{
|
|
782
|
+
ttlMs: z.ZodOptional<z.ZodNumber>;
|
|
783
|
+
}, "strip", z.ZodTypeAny, {
|
|
784
|
+
ttlMs?: number | undefined;
|
|
785
|
+
}, {
|
|
786
|
+
ttlMs?: number | undefined;
|
|
787
|
+
}>]>>;
|
|
690
788
|
}, "strip", z.ZodTypeAny, {
|
|
691
789
|
id: string;
|
|
692
790
|
params: Record<string, string>;
|
|
693
791
|
name: string;
|
|
694
792
|
description: string;
|
|
695
793
|
fn: (args_0: any, ...args: unknown[]) => any;
|
|
794
|
+
toolType?: "source" | "direct" | undefined;
|
|
795
|
+
fullSchema?: string | undefined;
|
|
796
|
+
outputSchema?: {
|
|
797
|
+
description: string;
|
|
798
|
+
fields: {
|
|
799
|
+
type: "string" | "number" | "boolean" | "date";
|
|
800
|
+
name: string;
|
|
801
|
+
description: string;
|
|
802
|
+
}[];
|
|
803
|
+
} | undefined;
|
|
804
|
+
cache?: false | {
|
|
805
|
+
ttlMs?: number | undefined;
|
|
806
|
+
} | undefined;
|
|
696
807
|
}, {
|
|
697
808
|
id: string;
|
|
698
809
|
params: Record<string, string>;
|
|
699
810
|
name: string;
|
|
700
811
|
description: string;
|
|
701
812
|
fn: (args_0: any, ...args: unknown[]) => any;
|
|
813
|
+
toolType?: "source" | "direct" | undefined;
|
|
814
|
+
fullSchema?: string | undefined;
|
|
815
|
+
outputSchema?: {
|
|
816
|
+
description: string;
|
|
817
|
+
fields: {
|
|
818
|
+
type: "string" | "number" | "boolean" | "date";
|
|
819
|
+
name: string;
|
|
820
|
+
description: string;
|
|
821
|
+
}[];
|
|
822
|
+
} | undefined;
|
|
823
|
+
cache?: false | {
|
|
824
|
+
ttlMs?: number | undefined;
|
|
825
|
+
} | undefined;
|
|
702
826
|
}>;
|
|
703
827
|
type Tool$1 = z.infer<typeof ToolSchema>;
|
|
704
828
|
type CollectionOperation = 'getMany' | 'getOne' | 'query' | 'mutation' | 'updateOne' | 'deleteOne' | 'createOne';
|
|
@@ -733,7 +857,6 @@ interface SuperatomSDKConfig {
|
|
|
733
857
|
url?: string;
|
|
734
858
|
apiKey?: string;
|
|
735
859
|
projectId: string;
|
|
736
|
-
userId?: string;
|
|
737
860
|
type?: string;
|
|
738
861
|
bundleDir?: string;
|
|
739
862
|
promptsDir?: string;
|
|
@@ -751,27 +874,61 @@ interface SuperatomSDKConfig {
|
|
|
751
874
|
* - 'balanced': Use best model for complex tasks, fast model for simple tasks (default)
|
|
752
875
|
*/
|
|
753
876
|
modelStrategy?: ModelStrategy;
|
|
877
|
+
/**
|
|
878
|
+
* Model for the main agent (routing + analysis).
|
|
879
|
+
* Format: "provider/model-name" (e.g., "anthropic/claude-haiku-4-5-20251001")
|
|
880
|
+
* If not set, uses the provider's default model.
|
|
881
|
+
*/
|
|
882
|
+
mainAgentModel?: string;
|
|
883
|
+
/**
|
|
884
|
+
* Model for source agents (per-source query generation).
|
|
885
|
+
* Format: "provider/model-name" (e.g., "anthropic/claude-haiku-4-5-20251001")
|
|
886
|
+
* If not set, uses the provider's default model.
|
|
887
|
+
*/
|
|
888
|
+
sourceAgentModel?: string;
|
|
754
889
|
/**
|
|
755
890
|
* Separate model configuration for DASH_COMP flow (dashboard component picking)
|
|
756
891
|
* If not provided, falls back to provider-based model selection
|
|
757
892
|
*/
|
|
758
893
|
dashCompModels?: DashCompModelConfig;
|
|
894
|
+
/**
|
|
895
|
+
* Similarity threshold for conversation search (semantic matching)
|
|
896
|
+
* Value between 0 and 1 (e.g., 0.8 = 80% similarity required)
|
|
897
|
+
* Higher values require closer matches, lower values allow more distant matches
|
|
898
|
+
* Default: 0.8
|
|
899
|
+
*/
|
|
900
|
+
conversationSimilarityThreshold?: number;
|
|
901
|
+
/**
|
|
902
|
+
* Query cache TTL (Time To Live) in minutes
|
|
903
|
+
* Cached query results expire after this duration
|
|
904
|
+
* Default: 5 minutes
|
|
905
|
+
*/
|
|
906
|
+
queryCacheTTL?: number;
|
|
907
|
+
/**
|
|
908
|
+
* Dashboard conversation history TTL (Time To Live) in minutes
|
|
909
|
+
* Per-dashboard conversation histories expire after this duration
|
|
910
|
+
* Default: 30 minutes
|
|
911
|
+
*/
|
|
912
|
+
dashboardHistoryTTL?: number;
|
|
759
913
|
}
|
|
760
914
|
|
|
761
915
|
declare const KbNodesQueryFiltersSchema: z.ZodObject<{
|
|
762
916
|
query: z.ZodOptional<z.ZodString>;
|
|
763
917
|
category: z.ZodOptional<z.ZodString>;
|
|
764
918
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
765
|
-
|
|
919
|
+
type: z.ZodOptional<z.ZodEnum<["global", "user", "query"]>>;
|
|
920
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
766
921
|
}, "strip", z.ZodTypeAny, {
|
|
922
|
+
type?: "query" | "user" | "global" | undefined;
|
|
767
923
|
query?: string | undefined;
|
|
768
924
|
category?: string | undefined;
|
|
769
|
-
createdBy?:
|
|
925
|
+
createdBy?: string | undefined;
|
|
770
926
|
tags?: string[] | undefined;
|
|
771
927
|
}, {
|
|
928
|
+
type?: "query" | "user" | "global" | undefined;
|
|
772
929
|
query?: string | undefined;
|
|
773
930
|
category?: string | undefined;
|
|
774
|
-
createdBy?:
|
|
931
|
+
createdBy?: string | undefined;
|
|
775
932
|
tags?: string[] | undefined;
|
|
776
933
|
}>;
|
|
777
934
|
type KbNodesQueryFilters = z.infer<typeof KbNodesQueryFiltersSchema>;
|
|
@@ -783,106 +940,118 @@ declare const KbNodesRequestPayloadSchema: z.ZodObject<{
|
|
|
783
940
|
content: z.ZodOptional<z.ZodString>;
|
|
784
941
|
category: z.ZodOptional<z.ZodString>;
|
|
785
942
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
943
|
+
type: z.ZodOptional<z.ZodEnum<["global", "user", "query"]>>;
|
|
944
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
945
|
+
updatedBy: z.ZodOptional<z.ZodString>;
|
|
946
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
789
947
|
query: z.ZodOptional<z.ZodString>;
|
|
790
948
|
filters: z.ZodOptional<z.ZodObject<{
|
|
791
949
|
query: z.ZodOptional<z.ZodString>;
|
|
792
950
|
category: z.ZodOptional<z.ZodString>;
|
|
793
951
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
794
|
-
|
|
952
|
+
type: z.ZodOptional<z.ZodEnum<["global", "user", "query"]>>;
|
|
953
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
795
954
|
}, "strip", z.ZodTypeAny, {
|
|
955
|
+
type?: "query" | "user" | "global" | undefined;
|
|
796
956
|
query?: string | undefined;
|
|
797
957
|
category?: string | undefined;
|
|
798
|
-
createdBy?:
|
|
958
|
+
createdBy?: string | undefined;
|
|
799
959
|
tags?: string[] | undefined;
|
|
800
960
|
}, {
|
|
961
|
+
type?: "query" | "user" | "global" | undefined;
|
|
801
962
|
query?: string | undefined;
|
|
802
963
|
category?: string | undefined;
|
|
803
|
-
createdBy?:
|
|
964
|
+
createdBy?: string | undefined;
|
|
804
965
|
tags?: string[] | undefined;
|
|
805
966
|
}>>;
|
|
806
967
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
807
968
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
808
969
|
}, "strip", z.ZodTypeAny, {
|
|
809
970
|
id?: number | undefined;
|
|
971
|
+
type?: "query" | "user" | "global" | undefined;
|
|
810
972
|
query?: string | undefined;
|
|
811
973
|
title?: string | undefined;
|
|
812
974
|
category?: string | undefined;
|
|
813
|
-
userId?:
|
|
975
|
+
userId?: string | undefined;
|
|
814
976
|
limit?: number | undefined;
|
|
815
977
|
filters?: {
|
|
978
|
+
type?: "query" | "user" | "global" | undefined;
|
|
816
979
|
query?: string | undefined;
|
|
817
980
|
category?: string | undefined;
|
|
818
|
-
createdBy?:
|
|
981
|
+
createdBy?: string | undefined;
|
|
819
982
|
tags?: string[] | undefined;
|
|
820
983
|
} | undefined;
|
|
821
|
-
createdBy?:
|
|
822
|
-
updatedBy?:
|
|
984
|
+
createdBy?: string | undefined;
|
|
985
|
+
updatedBy?: string | undefined;
|
|
986
|
+
offset?: number | undefined;
|
|
823
987
|
tags?: string[] | undefined;
|
|
824
988
|
content?: string | undefined;
|
|
825
|
-
offset?: number | undefined;
|
|
826
989
|
}, {
|
|
827
990
|
id?: number | undefined;
|
|
991
|
+
type?: "query" | "user" | "global" | undefined;
|
|
828
992
|
query?: string | undefined;
|
|
829
993
|
title?: string | undefined;
|
|
830
994
|
category?: string | undefined;
|
|
831
|
-
userId?:
|
|
995
|
+
userId?: string | undefined;
|
|
832
996
|
limit?: number | undefined;
|
|
833
997
|
filters?: {
|
|
998
|
+
type?: "query" | "user" | "global" | undefined;
|
|
834
999
|
query?: string | undefined;
|
|
835
1000
|
category?: string | undefined;
|
|
836
|
-
createdBy?:
|
|
1001
|
+
createdBy?: string | undefined;
|
|
837
1002
|
tags?: string[] | undefined;
|
|
838
1003
|
} | undefined;
|
|
839
|
-
createdBy?:
|
|
840
|
-
updatedBy?:
|
|
1004
|
+
createdBy?: string | undefined;
|
|
1005
|
+
updatedBy?: string | undefined;
|
|
1006
|
+
offset?: number | undefined;
|
|
841
1007
|
tags?: string[] | undefined;
|
|
842
1008
|
content?: string | undefined;
|
|
843
|
-
offset?: number | undefined;
|
|
844
1009
|
}>>;
|
|
845
1010
|
}, "strip", z.ZodTypeAny, {
|
|
846
1011
|
operation: "create" | "getOne" | "update" | "delete" | "getAll" | "search" | "getByCategory" | "getByUser" | "getCategories" | "getTags";
|
|
847
1012
|
data?: {
|
|
848
1013
|
id?: number | undefined;
|
|
1014
|
+
type?: "query" | "user" | "global" | undefined;
|
|
849
1015
|
query?: string | undefined;
|
|
850
1016
|
title?: string | undefined;
|
|
851
1017
|
category?: string | undefined;
|
|
852
|
-
userId?:
|
|
1018
|
+
userId?: string | undefined;
|
|
853
1019
|
limit?: number | undefined;
|
|
854
1020
|
filters?: {
|
|
1021
|
+
type?: "query" | "user" | "global" | undefined;
|
|
855
1022
|
query?: string | undefined;
|
|
856
1023
|
category?: string | undefined;
|
|
857
|
-
createdBy?:
|
|
1024
|
+
createdBy?: string | undefined;
|
|
858
1025
|
tags?: string[] | undefined;
|
|
859
1026
|
} | undefined;
|
|
860
|
-
createdBy?:
|
|
861
|
-
updatedBy?:
|
|
1027
|
+
createdBy?: string | undefined;
|
|
1028
|
+
updatedBy?: string | undefined;
|
|
1029
|
+
offset?: number | undefined;
|
|
862
1030
|
tags?: string[] | undefined;
|
|
863
1031
|
content?: string | undefined;
|
|
864
|
-
offset?: number | undefined;
|
|
865
1032
|
} | undefined;
|
|
866
1033
|
}, {
|
|
867
1034
|
operation: "create" | "getOne" | "update" | "delete" | "getAll" | "search" | "getByCategory" | "getByUser" | "getCategories" | "getTags";
|
|
868
1035
|
data?: {
|
|
869
1036
|
id?: number | undefined;
|
|
1037
|
+
type?: "query" | "user" | "global" | undefined;
|
|
870
1038
|
query?: string | undefined;
|
|
871
1039
|
title?: string | undefined;
|
|
872
1040
|
category?: string | undefined;
|
|
873
|
-
userId?:
|
|
1041
|
+
userId?: string | undefined;
|
|
874
1042
|
limit?: number | undefined;
|
|
875
1043
|
filters?: {
|
|
1044
|
+
type?: "query" | "user" | "global" | undefined;
|
|
876
1045
|
query?: string | undefined;
|
|
877
1046
|
category?: string | undefined;
|
|
878
|
-
createdBy?:
|
|
1047
|
+
createdBy?: string | undefined;
|
|
879
1048
|
tags?: string[] | undefined;
|
|
880
1049
|
} | undefined;
|
|
881
|
-
createdBy?:
|
|
882
|
-
updatedBy?:
|
|
1050
|
+
createdBy?: string | undefined;
|
|
1051
|
+
updatedBy?: string | undefined;
|
|
1052
|
+
offset?: number | undefined;
|
|
883
1053
|
tags?: string[] | undefined;
|
|
884
1054
|
content?: string | undefined;
|
|
885
|
-
offset?: number | undefined;
|
|
886
1055
|
} | undefined;
|
|
887
1056
|
}>;
|
|
888
1057
|
type KbNodesRequestPayload = z.infer<typeof KbNodesRequestPayloadSchema>;
|
|
@@ -1151,6 +1320,360 @@ declare class ReportManager {
|
|
|
1151
1320
|
getReportCount(): number;
|
|
1152
1321
|
}
|
|
1153
1322
|
|
|
1323
|
+
/**
|
|
1324
|
+
* StreamBuffer - Buffered streaming utility for smoother text delivery
|
|
1325
|
+
* Batches small chunks together and flushes at regular intervals
|
|
1326
|
+
*/
|
|
1327
|
+
type StreamCallback = (chunk: string) => void;
|
|
1328
|
+
/**
|
|
1329
|
+
* StreamBuffer class for managing buffered streaming output
|
|
1330
|
+
* Provides smooth text delivery by batching small chunks
|
|
1331
|
+
*/
|
|
1332
|
+
declare class StreamBuffer {
|
|
1333
|
+
private buffer;
|
|
1334
|
+
private flushTimer;
|
|
1335
|
+
private callback;
|
|
1336
|
+
private fullText;
|
|
1337
|
+
constructor(callback?: StreamCallback);
|
|
1338
|
+
/**
|
|
1339
|
+
* Check if the buffer has a callback configured
|
|
1340
|
+
*/
|
|
1341
|
+
hasCallback(): boolean;
|
|
1342
|
+
/**
|
|
1343
|
+
* Get all text that has been written (including already flushed)
|
|
1344
|
+
*/
|
|
1345
|
+
getFullText(): string;
|
|
1346
|
+
/**
|
|
1347
|
+
* Write a chunk to the buffer
|
|
1348
|
+
* Large chunks or chunks with newlines are flushed immediately
|
|
1349
|
+
* Small chunks are batched and flushed after a short interval
|
|
1350
|
+
*
|
|
1351
|
+
* @param chunk - Text chunk to write
|
|
1352
|
+
*/
|
|
1353
|
+
write(chunk: string): void;
|
|
1354
|
+
/**
|
|
1355
|
+
* Flush the buffer immediately
|
|
1356
|
+
* Call this before tool execution or other operations that need clean output
|
|
1357
|
+
*/
|
|
1358
|
+
flush(): void;
|
|
1359
|
+
/**
|
|
1360
|
+
* Internal flush implementation
|
|
1361
|
+
*/
|
|
1362
|
+
private flushNow;
|
|
1363
|
+
/**
|
|
1364
|
+
* Clean up resources
|
|
1365
|
+
* Call this when done with the buffer
|
|
1366
|
+
*/
|
|
1367
|
+
dispose(): void;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
/**
|
|
1371
|
+
* ToolExecutorService - Handles execution of SQL queries and external tools
|
|
1372
|
+
* Extracted from BaseLLM.generateTextResponse for better separation of concerns
|
|
1373
|
+
*/
|
|
1374
|
+
|
|
1375
|
+
/**
|
|
1376
|
+
* External tool definition
|
|
1377
|
+
*/
|
|
1378
|
+
interface ExternalTool {
|
|
1379
|
+
id: string;
|
|
1380
|
+
name: string;
|
|
1381
|
+
description?: string;
|
|
1382
|
+
/** Tool type: "source" = routed through SourceAgent, "direct" = called directly by MainAgent */
|
|
1383
|
+
toolType?: 'source' | 'direct';
|
|
1384
|
+
/** Full untruncated schema for source agent (all columns visible) */
|
|
1385
|
+
fullSchema?: string;
|
|
1386
|
+
/** Schema size tier: small (≤50 tables), medium (51-200), large (201-500), very_large (500+) */
|
|
1387
|
+
schemaTier?: string;
|
|
1388
|
+
/** Schema search function for very_large tier — keyword search over entities */
|
|
1389
|
+
schemaSearchFn?: (keywords: string[]) => string;
|
|
1390
|
+
fn: (input: any) => Promise<any>;
|
|
1391
|
+
limit?: number;
|
|
1392
|
+
outputSchema?: any;
|
|
1393
|
+
executionType?: 'immediate' | 'deferred';
|
|
1394
|
+
userProvidedData?: any;
|
|
1395
|
+
params?: Record<string, any>;
|
|
1396
|
+
}
|
|
1397
|
+
/**
|
|
1398
|
+
* Executed tool tracking info
|
|
1399
|
+
*/
|
|
1400
|
+
interface ExecutedToolInfo {
|
|
1401
|
+
id: string;
|
|
1402
|
+
name: string;
|
|
1403
|
+
params: any;
|
|
1404
|
+
result: {
|
|
1405
|
+
_totalRecords: number;
|
|
1406
|
+
_recordsShown: number;
|
|
1407
|
+
_metadata?: any;
|
|
1408
|
+
_sampleData: any[];
|
|
1409
|
+
};
|
|
1410
|
+
outputSchema?: any;
|
|
1411
|
+
sourceSchema?: string;
|
|
1412
|
+
sourceType?: string;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
/**
|
|
1416
|
+
* Multi-Agent Architecture Types
|
|
1417
|
+
*
|
|
1418
|
+
* Defines interfaces for the hierarchical agent system:
|
|
1419
|
+
* - Main Agent: ONE LLM.streamWithTools() call with source agent tools
|
|
1420
|
+
* - Source Agents: independent agents that query individual data sources
|
|
1421
|
+
*
|
|
1422
|
+
* The main agent sees only source summaries. When it calls a source tool,
|
|
1423
|
+
* the SourceAgent runs independently (own LLM, own retries) and returns clean data.
|
|
1424
|
+
*/
|
|
1425
|
+
|
|
1426
|
+
/**
|
|
1427
|
+
* Per-entity detail: name, row count, and column names.
|
|
1428
|
+
* Gives the main agent enough context to route to the right source.
|
|
1429
|
+
*/
|
|
1430
|
+
interface EntityDetail {
|
|
1431
|
+
/** Entity name (table, sheet, endpoint) */
|
|
1432
|
+
name: string;
|
|
1433
|
+
/** Approximate row count */
|
|
1434
|
+
rowCount?: number;
|
|
1435
|
+
/** Column/field names */
|
|
1436
|
+
columns: string[];
|
|
1437
|
+
}
|
|
1438
|
+
/**
|
|
1439
|
+
* Representation of a data source for the main agent.
|
|
1440
|
+
* Contains entity names WITH column names so the LLM can route accurately.
|
|
1441
|
+
*/
|
|
1442
|
+
interface SourceSummary {
|
|
1443
|
+
/** Source ID (matches tool ID prefix) */
|
|
1444
|
+
id: string;
|
|
1445
|
+
/** Human-readable source name */
|
|
1446
|
+
name: string;
|
|
1447
|
+
/** Source type: postgres, excel, rest_api, etc. */
|
|
1448
|
+
type: string;
|
|
1449
|
+
/** Brief description of what data this source contains */
|
|
1450
|
+
description: string;
|
|
1451
|
+
/** Detailed entity info with column names for routing */
|
|
1452
|
+
entityDetails: EntityDetail[];
|
|
1453
|
+
/** The tool ID associated with this source */
|
|
1454
|
+
toolId: string;
|
|
1455
|
+
}
|
|
1456
|
+
/**
|
|
1457
|
+
* What a source agent returns after querying its data source.
|
|
1458
|
+
* The main agent uses this to analyze and compose the final response.
|
|
1459
|
+
*/
|
|
1460
|
+
interface SourceAgentResult {
|
|
1461
|
+
/** Source ID */
|
|
1462
|
+
sourceId: string;
|
|
1463
|
+
/** Source name */
|
|
1464
|
+
sourceName: string;
|
|
1465
|
+
/** Whether the query succeeded */
|
|
1466
|
+
success: boolean;
|
|
1467
|
+
/** Result data rows */
|
|
1468
|
+
data: any[];
|
|
1469
|
+
/** Metadata about the query execution */
|
|
1470
|
+
metadata: SourceAgentMetadata;
|
|
1471
|
+
/** Tool execution info for the last successful query (backward compat) */
|
|
1472
|
+
executedTool: ExecutedToolInfo;
|
|
1473
|
+
/** All successful tool executions (primary + follow-up queries) */
|
|
1474
|
+
allExecutedTools?: ExecutedToolInfo[];
|
|
1475
|
+
/** Error message if failed */
|
|
1476
|
+
error?: string;
|
|
1477
|
+
}
|
|
1478
|
+
interface SourceAgentMetadata {
|
|
1479
|
+
/** Total rows that matched the query (before limit) */
|
|
1480
|
+
totalRowsMatched: number;
|
|
1481
|
+
/** Rows actually returned (after limit) */
|
|
1482
|
+
rowsReturned: number;
|
|
1483
|
+
/** Whether the result was truncated by the row limit */
|
|
1484
|
+
isLimited: boolean;
|
|
1485
|
+
/** The query/params that were executed */
|
|
1486
|
+
queryExecuted?: string;
|
|
1487
|
+
/** Execution time in milliseconds */
|
|
1488
|
+
executionTimeMs: number;
|
|
1489
|
+
}
|
|
1490
|
+
/**
|
|
1491
|
+
* A pre-built, multi-step UI flow registered with the SDK.
|
|
1492
|
+
*
|
|
1493
|
+
* When the main agent decides a user's question matches a workflow's whenToUse
|
|
1494
|
+
* trigger, it picks the workflow instead of running source agents / generating
|
|
1495
|
+
* dashboard components. The LLM extracts the workflow's required props from the
|
|
1496
|
+
* prompt (using `propsSchema` as the tool input_schema) and the SDK returns the
|
|
1497
|
+
* workflow component directly — no analysis text, no chart generation. The
|
|
1498
|
+
* frontend renders the registered workflow component with the LLM-extracted
|
|
1499
|
+
* props.
|
|
1500
|
+
*/
|
|
1501
|
+
interface WorkflowDescriptor {
|
|
1502
|
+
/** Unique workflow id (used as the LLM tool name) */
|
|
1503
|
+
id: string;
|
|
1504
|
+
/** Component name on the frontend (matches the registered React component) */
|
|
1505
|
+
name: string;
|
|
1506
|
+
/** Short human-readable description of what this workflow does */
|
|
1507
|
+
description: string;
|
|
1508
|
+
/**
|
|
1509
|
+
* 1–2 sentence trigger condition. The LLM uses this to decide if the
|
|
1510
|
+
* user's prompt matches this workflow. Be specific — e.g.
|
|
1511
|
+
* "User wants to *initiate* an inventory transfer (review + submit POs),
|
|
1512
|
+
* not just see analysis or charts."
|
|
1513
|
+
*/
|
|
1514
|
+
whenToUse: string;
|
|
1515
|
+
/**
|
|
1516
|
+
* JSON-schema-style description of the props the workflow needs. Becomes
|
|
1517
|
+
* the LLM tool's input_schema, so the model fills these from the prompt.
|
|
1518
|
+
* Use the same shape as `params` on direct tools — string descriptors with
|
|
1519
|
+
* an optional "(optional)" suffix.
|
|
1520
|
+
*
|
|
1521
|
+
* Example:
|
|
1522
|
+
* ```
|
|
1523
|
+
* {
|
|
1524
|
+
* selectedStore: 'object — { id, name } of the source branch',
|
|
1525
|
+
* minROI: 'number (optional) — only show transfers with ROI ≥ this',
|
|
1526
|
+
* }
|
|
1527
|
+
* ```
|
|
1528
|
+
*/
|
|
1529
|
+
propsSchema: Record<string, string>;
|
|
1530
|
+
/**
|
|
1531
|
+
* Optional: static prop defaults merged with LLM-extracted props before
|
|
1532
|
+
* the component is returned. Useful for things like the embedded
|
|
1533
|
+
* `externalTool` config that the workflow uses to fetch its own data.
|
|
1534
|
+
*/
|
|
1535
|
+
defaultProps?: Record<string, any>;
|
|
1536
|
+
}
|
|
1537
|
+
/**
|
|
1538
|
+
* The workflow selection captured during a routing call.
|
|
1539
|
+
* Set on AgentResponse when the LLM picks a workflow tool.
|
|
1540
|
+
*/
|
|
1541
|
+
interface SelectedWorkflow {
|
|
1542
|
+
/** Component name (matches WorkflowDescriptor.name) */
|
|
1543
|
+
name: string;
|
|
1544
|
+
/** Props extracted from the prompt + merged with workflow.defaultProps */
|
|
1545
|
+
props: Record<string, any>;
|
|
1546
|
+
}
|
|
1547
|
+
/**
|
|
1548
|
+
* The complete response from the multi-agent system.
|
|
1549
|
+
* Contains everything needed for text display + component generation.
|
|
1550
|
+
*/
|
|
1551
|
+
interface AgentResponse {
|
|
1552
|
+
/** Generated text response (analysis of the data) */
|
|
1553
|
+
text: string;
|
|
1554
|
+
/** All executed tools across all source agents (for component generation) */
|
|
1555
|
+
executedTools: ExecutedToolInfo[];
|
|
1556
|
+
/** Individual results from each source agent */
|
|
1557
|
+
sourceResults: SourceAgentResult[];
|
|
1558
|
+
/**
|
|
1559
|
+
* Set when the LLM routed the question to a registered workflow component.
|
|
1560
|
+
* When present, the upstream caller should skip component generation and
|
|
1561
|
+
* return this workflow as the response.
|
|
1562
|
+
*/
|
|
1563
|
+
workflow?: SelectedWorkflow;
|
|
1564
|
+
}
|
|
1565
|
+
/**
|
|
1566
|
+
* Configuration for the multi-agent system.
|
|
1567
|
+
* Controls limits, models, and behavior.
|
|
1568
|
+
*/
|
|
1569
|
+
interface AgentConfig {
|
|
1570
|
+
/** Max rows a source agent can return (default: 50) */
|
|
1571
|
+
maxRowsPerSource: number;
|
|
1572
|
+
/** Model for the main agent (routing + analysis in one LLM call) */
|
|
1573
|
+
mainAgentModel: string;
|
|
1574
|
+
/** Model for source agent query generation */
|
|
1575
|
+
sourceAgentModel: string;
|
|
1576
|
+
/** API key for LLM calls */
|
|
1577
|
+
apiKey?: string;
|
|
1578
|
+
/** Max retry attempts per source agent */
|
|
1579
|
+
maxRetries: number;
|
|
1580
|
+
/** Max tool calling iterations for the main agent loop */
|
|
1581
|
+
maxIterations: number;
|
|
1582
|
+
/** Global knowledge base context (static, same for all users/questions — cached in system prompt) */
|
|
1583
|
+
globalKnowledgeBase?: string;
|
|
1584
|
+
/** Per-request knowledge base context (user-specific + query-matched — dynamic, not cached) */
|
|
1585
|
+
knowledgeBaseContext?: string;
|
|
1586
|
+
}
|
|
1587
|
+
/**
|
|
1588
|
+
* Default agent configuration
|
|
1589
|
+
*/
|
|
1590
|
+
declare const DEFAULT_AGENT_CONFIG: AgentConfig;
|
|
1591
|
+
|
|
1592
|
+
/**
|
|
1593
|
+
* Main Agent (Orchestrator)
|
|
1594
|
+
*
|
|
1595
|
+
* A single LLM.streamWithTools() call that handles everything:
|
|
1596
|
+
* - Routing: decides which source(s) to query based on summaries
|
|
1597
|
+
* - Querying: calls source tools (each wraps an independent SourceAgent)
|
|
1598
|
+
* - Direct tools: calls pre-built function tools directly with LLM-provided params
|
|
1599
|
+
* - Re-querying: if data is wrong/incomplete, calls tools again with modified intent
|
|
1600
|
+
* - Analysis: generates final text response from the data
|
|
1601
|
+
*
|
|
1602
|
+
* Two tool types:
|
|
1603
|
+
* - "source" tools: main agent sees summaries, SourceAgent handles SQL generation independently
|
|
1604
|
+
* - "direct" tools: main agent calls fn() directly with structured params (no SourceAgent)
|
|
1605
|
+
*/
|
|
1606
|
+
|
|
1607
|
+
declare class MainAgent {
|
|
1608
|
+
private externalTools;
|
|
1609
|
+
private workflows;
|
|
1610
|
+
private config;
|
|
1611
|
+
private streamBuffer;
|
|
1612
|
+
constructor(externalTools: ExternalTool[], config: AgentConfig, streamBuffer?: StreamBuffer, workflows?: WorkflowDescriptor[]);
|
|
1613
|
+
/**
|
|
1614
|
+
* Handle a user question using the multi-agent system.
|
|
1615
|
+
*
|
|
1616
|
+
* This is ONE LLM.streamWithTools() call. The LLM:
|
|
1617
|
+
* 1. Sees source summaries + direct tool descriptions in system prompt
|
|
1618
|
+
* 2. Decides which tool(s) to call (routing)
|
|
1619
|
+
* 3. Source tools → SourceAgent runs independently → returns data
|
|
1620
|
+
* 4. Direct tools → fn() called directly with LLM params → returns data
|
|
1621
|
+
* 5. Generates final analysis text
|
|
1622
|
+
*/
|
|
1623
|
+
handleQuestion(userPrompt: string, apiKey?: string, conversationHistory?: string, streamCallback?: (chunk: string) => void): Promise<AgentResponse>;
|
|
1624
|
+
/**
|
|
1625
|
+
* Execute a direct tool — call fn() with LLM-provided params, no SourceAgent.
|
|
1626
|
+
*/
|
|
1627
|
+
private handleDirectTool;
|
|
1628
|
+
/**
|
|
1629
|
+
* Build the main agent's system prompt with source summaries, direct tool descriptions,
|
|
1630
|
+
* and workflow component descriptions.
|
|
1631
|
+
*/
|
|
1632
|
+
private buildSystemPrompt;
|
|
1633
|
+
/**
|
|
1634
|
+
* Build tool definitions for source tools — summary-only descriptions.
|
|
1635
|
+
* The full schema is inside the SourceAgent which runs independently.
|
|
1636
|
+
*/
|
|
1637
|
+
private buildSourceToolDefinitions;
|
|
1638
|
+
/**
|
|
1639
|
+
* Build tool definitions for direct tools — expose their actual params.
|
|
1640
|
+
* These are called directly by the main agent LLM, no SourceAgent.
|
|
1641
|
+
*/
|
|
1642
|
+
private buildDirectToolDefinitions;
|
|
1643
|
+
/**
|
|
1644
|
+
* Capture a workflow selection. We do NOT execute anything — the LLM has
|
|
1645
|
+
* already extracted the props it wants the workflow rendered with. We
|
|
1646
|
+
* record the selection (via the capture callback) and return a short
|
|
1647
|
+
* acknowledgement so the LLM ends its turn cleanly without writing
|
|
1648
|
+
* analysis text or calling more tools.
|
|
1649
|
+
*/
|
|
1650
|
+
private handleWorkflow;
|
|
1651
|
+
/**
|
|
1652
|
+
* Build LLM tool definitions for workflow components. The workflow's
|
|
1653
|
+
* propsSchema becomes the tool's input_schema so the LLM extracts props
|
|
1654
|
+
* directly from the prompt — same mechanic as direct tools.
|
|
1655
|
+
*/
|
|
1656
|
+
private buildWorkflowToolDefinitions;
|
|
1657
|
+
/**
|
|
1658
|
+
* Format a source agent's result as a clean string for the main agent LLM.
|
|
1659
|
+
*/
|
|
1660
|
+
private formatResultForMainAgent;
|
|
1661
|
+
/**
|
|
1662
|
+
* Get source summaries (for external inspection/debugging).
|
|
1663
|
+
*/
|
|
1664
|
+
getSourceSummaries(): SourceSummary[];
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
/**
|
|
1668
|
+
* Represents an action that can be performed on a UIBlock
|
|
1669
|
+
*/
|
|
1670
|
+
interface Action {
|
|
1671
|
+
id: string;
|
|
1672
|
+
name: string;
|
|
1673
|
+
type: string;
|
|
1674
|
+
[key: string]: any;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1154
1677
|
type SystemPrompt = string | Anthropic.Messages.TextBlockParam[];
|
|
1155
1678
|
interface LLMMessages {
|
|
1156
1679
|
sys: SystemPrompt;
|
|
@@ -1208,6 +1731,11 @@ declare class LLM {
|
|
|
1208
1731
|
private static _groqStream;
|
|
1209
1732
|
private static _geminiText;
|
|
1210
1733
|
private static _geminiStream;
|
|
1734
|
+
/**
|
|
1735
|
+
* Recursively strip unsupported JSON Schema properties for Gemini
|
|
1736
|
+
* Gemini doesn't support: additionalProperties, $schema, etc.
|
|
1737
|
+
*/
|
|
1738
|
+
private static _cleanSchemaForGemini;
|
|
1211
1739
|
private static _geminiStreamWithTools;
|
|
1212
1740
|
private static _openaiText;
|
|
1213
1741
|
private static _openaiStream;
|
|
@@ -1300,16 +1828,6 @@ declare class UILogCollector {
|
|
|
1300
1828
|
setUIBlockId(uiBlockId: string): void;
|
|
1301
1829
|
}
|
|
1302
1830
|
|
|
1303
|
-
/**
|
|
1304
|
-
* Represents an action that can be performed on a UIBlock
|
|
1305
|
-
*/
|
|
1306
|
-
interface Action {
|
|
1307
|
-
id: string;
|
|
1308
|
-
name: string;
|
|
1309
|
-
type: string;
|
|
1310
|
-
[key: string]: any;
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
1831
|
/**
|
|
1314
1832
|
* UIBlock represents a single user and assistant message block in a thread
|
|
1315
1833
|
* Contains user question, component metadata, component data, text response, and available actions
|
|
@@ -1492,12 +2010,20 @@ declare class Thread {
|
|
|
1492
2010
|
|
|
1493
2011
|
/**
|
|
1494
2012
|
* ThreadManager manages all threads globally
|
|
1495
|
-
* Provides methods to create, retrieve, and delete threads
|
|
2013
|
+
* Provides methods to create, retrieve, and delete threads.
|
|
2014
|
+
* Includes automatic cleanup to prevent unbounded memory growth.
|
|
1496
2015
|
*/
|
|
1497
2016
|
declare class ThreadManager {
|
|
1498
2017
|
private static instance;
|
|
1499
2018
|
private threads;
|
|
2019
|
+
private cleanupInterval;
|
|
2020
|
+
private readonly threadTtlMs;
|
|
1500
2021
|
private constructor();
|
|
2022
|
+
/**
|
|
2023
|
+
* Periodically remove threads older than 7 days.
|
|
2024
|
+
* Runs every hour to avoid frequent iteration over the map.
|
|
2025
|
+
*/
|
|
2026
|
+
private startCleanup;
|
|
1501
2027
|
/**
|
|
1502
2028
|
* Get singleton instance of ThreadManager
|
|
1503
2029
|
*/
|
|
@@ -1896,6 +2422,92 @@ declare function rerankConversationResults<T extends {
|
|
|
1896
2422
|
bm25Score: number;
|
|
1897
2423
|
}>;
|
|
1898
2424
|
|
|
2425
|
+
/**
|
|
2426
|
+
* QueryExecutionService - Handles all query execution, validation, and retry logic
|
|
2427
|
+
* Extracted from BaseLLM for better separation of concerns
|
|
2428
|
+
*/
|
|
2429
|
+
|
|
2430
|
+
/**
|
|
2431
|
+
* Context for component when requesting query fix
|
|
2432
|
+
*/
|
|
2433
|
+
interface ComponentContext {
|
|
2434
|
+
name: string;
|
|
2435
|
+
type: string;
|
|
2436
|
+
title?: string;
|
|
2437
|
+
}
|
|
2438
|
+
/**
|
|
2439
|
+
* Result of query validation
|
|
2440
|
+
*/
|
|
2441
|
+
interface QueryValidationResult {
|
|
2442
|
+
component: Component | null;
|
|
2443
|
+
queryKey: string;
|
|
2444
|
+
result: any;
|
|
2445
|
+
validated: boolean;
|
|
2446
|
+
}
|
|
2447
|
+
/**
|
|
2448
|
+
* Result of batch query validation
|
|
2449
|
+
*/
|
|
2450
|
+
interface BatchValidationResult {
|
|
2451
|
+
components: Component[];
|
|
2452
|
+
queryResults: Map<string, any>;
|
|
2453
|
+
}
|
|
2454
|
+
/**
|
|
2455
|
+
* Configuration for QueryExecutionService
|
|
2456
|
+
*/
|
|
2457
|
+
interface QueryExecutionServiceConfig {
|
|
2458
|
+
defaultLimit: number;
|
|
2459
|
+
getModelForTask: (taskType: 'simple' | 'complex') => string;
|
|
2460
|
+
getApiKey: (apiKey?: string) => string | undefined;
|
|
2461
|
+
providerName: string;
|
|
2462
|
+
}
|
|
2463
|
+
/**
|
|
2464
|
+
* QueryExecutionService handles all query-related operations
|
|
2465
|
+
*/
|
|
2466
|
+
declare class QueryExecutionService {
|
|
2467
|
+
private config;
|
|
2468
|
+
constructor(config: QueryExecutionServiceConfig);
|
|
2469
|
+
/**
|
|
2470
|
+
* Get the cache key for a query
|
|
2471
|
+
* This ensures the cache key matches what the frontend will send
|
|
2472
|
+
*/
|
|
2473
|
+
getQueryCacheKey(query: any): string;
|
|
2474
|
+
/**
|
|
2475
|
+
* Execute a query against the database
|
|
2476
|
+
* @param query - The SQL query to execute (string or object with sql/values)
|
|
2477
|
+
* @param collections - Collections object containing database execute function
|
|
2478
|
+
* @returns Object with result data and cache key
|
|
2479
|
+
*/
|
|
2480
|
+
executeQuery(query: any, collections: any): Promise<{
|
|
2481
|
+
result: any;
|
|
2482
|
+
cacheKey: string;
|
|
2483
|
+
}>;
|
|
2484
|
+
/**
|
|
2485
|
+
* Request the LLM to fix a failed SQL query
|
|
2486
|
+
* @param failedQuery - The query that failed execution
|
|
2487
|
+
* @param errorMessage - The error message from the failed execution
|
|
2488
|
+
* @param componentContext - Context about the component
|
|
2489
|
+
* @param apiKey - Optional API key
|
|
2490
|
+
* @returns Fixed query string
|
|
2491
|
+
*/
|
|
2492
|
+
requestQueryFix(failedQuery: string, errorMessage: string, componentContext: ComponentContext, apiKey?: string): Promise<string>;
|
|
2493
|
+
/**
|
|
2494
|
+
* Validate a single component's query with retry logic
|
|
2495
|
+
* @param component - The component to validate
|
|
2496
|
+
* @param collections - Collections object containing database execute function
|
|
2497
|
+
* @param apiKey - Optional API key for LLM calls
|
|
2498
|
+
* @returns Validation result with component, query key, and result
|
|
2499
|
+
*/
|
|
2500
|
+
validateSingleQuery(component: Component, collections: any, apiKey?: string): Promise<QueryValidationResult>;
|
|
2501
|
+
/**
|
|
2502
|
+
* Validate multiple component queries in parallel
|
|
2503
|
+
* @param components - Array of components with potential queries
|
|
2504
|
+
* @param collections - Collections object containing database execute function
|
|
2505
|
+
* @param apiKey - Optional API key for LLM calls
|
|
2506
|
+
* @returns Object with validated components and query results map
|
|
2507
|
+
*/
|
|
2508
|
+
validateComponentQueries(components: Component[], collections: any, apiKey?: string): Promise<BatchValidationResult>;
|
|
2509
|
+
}
|
|
2510
|
+
|
|
1899
2511
|
/**
|
|
1900
2512
|
* Task types for model selection
|
|
1901
2513
|
* - 'complex': Text generation, component matching, parameter adaptation (uses best model in balanced mode)
|
|
@@ -1914,6 +2526,7 @@ interface BaseLLMConfig {
|
|
|
1914
2526
|
* - 'balanced': Use best model for complex tasks, fast model for simple tasks (default)
|
|
1915
2527
|
*/
|
|
1916
2528
|
modelStrategy?: ModelStrategy;
|
|
2529
|
+
conversationSimilarityThreshold?: number;
|
|
1917
2530
|
}
|
|
1918
2531
|
/**
|
|
1919
2532
|
* BaseLLM abstract class for AI-powered component generation and matching
|
|
@@ -1925,6 +2538,8 @@ declare abstract class BaseLLM {
|
|
|
1925
2538
|
protected defaultLimit: number;
|
|
1926
2539
|
protected apiKey?: string;
|
|
1927
2540
|
protected modelStrategy: ModelStrategy;
|
|
2541
|
+
protected conversationSimilarityThreshold: number;
|
|
2542
|
+
protected queryService: QueryExecutionService;
|
|
1928
2543
|
constructor(config?: BaseLLMConfig);
|
|
1929
2544
|
/**
|
|
1930
2545
|
* Get the appropriate model based on task type and model strategy
|
|
@@ -1942,6 +2557,16 @@ declare abstract class BaseLLM {
|
|
|
1942
2557
|
* @returns The current model strategy
|
|
1943
2558
|
*/
|
|
1944
2559
|
getModelStrategy(): ModelStrategy;
|
|
2560
|
+
/**
|
|
2561
|
+
* Set the conversation similarity threshold at runtime
|
|
2562
|
+
* @param threshold - Value between 0 and 1 (e.g., 0.8 = 80% similarity required)
|
|
2563
|
+
*/
|
|
2564
|
+
setConversationSimilarityThreshold(threshold: number): void;
|
|
2565
|
+
/**
|
|
2566
|
+
* Get the current conversation similarity threshold
|
|
2567
|
+
* @returns The current threshold value
|
|
2568
|
+
*/
|
|
2569
|
+
getConversationSimilarityThreshold(): number;
|
|
1945
2570
|
/**
|
|
1946
2571
|
* Get the default model for this provider (used for complex tasks like text generation)
|
|
1947
2572
|
*/
|
|
@@ -1977,11 +2602,10 @@ declare abstract class BaseLLM {
|
|
|
1977
2602
|
* @param analysisContent - The text response containing component suggestions
|
|
1978
2603
|
* @param components - List of available components
|
|
1979
2604
|
* @param apiKey - Optional API key
|
|
1980
|
-
* @param logCollector - Optional log collector
|
|
1981
2605
|
* @param componentStreamCallback - Optional callback to stream primary KPI component as soon as it's identified
|
|
1982
2606
|
* @returns Object containing matched components, layout title/description, and follow-up actions
|
|
1983
2607
|
*/
|
|
1984
|
-
matchComponentsFromAnalysis(analysisContent: string, components: Component[],
|
|
2608
|
+
matchComponentsFromAnalysis(analysisContent: string, components: Component[], userPrompt: string, apiKey?: string, componentStreamCallback?: (component: Component) => void, deferredTools?: any[], executedTools?: any[], collections?: any, userId?: string): Promise<{
|
|
1985
2609
|
components: Component[];
|
|
1986
2610
|
layoutTitle: string;
|
|
1987
2611
|
layoutDescription: string;
|
|
@@ -1991,7 +2615,7 @@ declare abstract class BaseLLM {
|
|
|
1991
2615
|
* Classify user question into category and detect external tools needed
|
|
1992
2616
|
* Determines if question is for data analysis, requires external tools, or needs text response
|
|
1993
2617
|
*/
|
|
1994
|
-
classifyQuestionCategory(userPrompt: string, apiKey?: string,
|
|
2618
|
+
classifyQuestionCategory(userPrompt: string, apiKey?: string, conversationHistory?: string, externalTools?: any[]): Promise<{
|
|
1995
2619
|
category: 'data_analysis' | 'data_modification' | 'general';
|
|
1996
2620
|
externalTools: Array<{
|
|
1997
2621
|
type: string;
|
|
@@ -2006,10 +2630,12 @@ declare abstract class BaseLLM {
|
|
|
2006
2630
|
/**
|
|
2007
2631
|
* Adapt UI block parameters based on current user question
|
|
2008
2632
|
* Takes a matched UI block from semantic search and modifies its props to answer the new question
|
|
2633
|
+
* Also adapts the cached text response to match the new question
|
|
2009
2634
|
*/
|
|
2010
|
-
adaptUIBlockParameters(currentUserPrompt: string, originalUserPrompt: string, matchedUIBlock: any, apiKey?: string,
|
|
2635
|
+
adaptUIBlockParameters(currentUserPrompt: string, originalUserPrompt: string, matchedUIBlock: any, apiKey?: string, cachedTextResponse?: string): Promise<{
|
|
2011
2636
|
success: boolean;
|
|
2012
2637
|
adaptedComponent?: Component;
|
|
2638
|
+
adaptedTextResponse?: string;
|
|
2013
2639
|
parametersChanged?: Array<{
|
|
2014
2640
|
field: string;
|
|
2015
2641
|
reason: string;
|
|
@@ -2021,13 +2647,8 @@ declare abstract class BaseLLM {
|
|
|
2021
2647
|
* This provides conversational text responses instead of component generation
|
|
2022
2648
|
* Supports tool calling for query execution with automatic retry on errors (max 3 attempts)
|
|
2023
2649
|
* After generating text response, if components are provided, matches suggested components
|
|
2024
|
-
* @param streamCallback - Optional callback function to receive text chunks as they stream
|
|
2025
|
-
* @param collections - Collection registry for executing database queries via database.execute
|
|
2026
|
-
* @param components - Optional list of available components for matching suggestions
|
|
2027
|
-
* @param externalTools - Optional array of external tools (email, calendar, etc.) that can be called
|
|
2028
|
-
* @param category - Question category ('data_analysis' | 'data_modification' | 'general'). For data_modification, answer component streaming is skipped. For general, component generation is skipped entirely.
|
|
2029
2650
|
*/
|
|
2030
|
-
generateTextResponse(userPrompt: string, apiKey?: string,
|
|
2651
|
+
generateTextResponse(userPrompt: string, apiKey?: string, conversationHistory?: string, streamCallback?: (chunk: string) => void, collections?: any, components?: Component[], externalTools?: any[], category?: 'data_analysis' | 'data_modification' | 'general', userId?: string): Promise<T_RESPONSE>;
|
|
2031
2652
|
/**
|
|
2032
2653
|
* Main orchestration function with semantic search and multi-step classification
|
|
2033
2654
|
* NEW FLOW (Recommended):
|
|
@@ -2035,19 +2656,14 @@ declare abstract class BaseLLM {
|
|
|
2035
2656
|
* - If match found → Adapt UI block parameters and return
|
|
2036
2657
|
* 2. Category classification: Determine if data_analysis, requires_external_tools, or text_response
|
|
2037
2658
|
* 3. Route appropriately based on category and response mode
|
|
2038
|
-
*
|
|
2039
|
-
* @param responseMode - 'component' for component generation (default), 'text' for text responses
|
|
2040
|
-
* @param streamCallback - Optional callback function to receive text chunks as they stream (only for text mode)
|
|
2041
|
-
* @param collections - Collection registry for executing database queries (required for text mode)
|
|
2042
|
-
* @param externalTools - Optional array of external tools (email, calendar, etc.) that can be called (only for text mode)
|
|
2043
2659
|
*/
|
|
2044
|
-
handleUserRequest(userPrompt: string, components: Component[], apiKey?: string,
|
|
2660
|
+
handleUserRequest(userPrompt: string, components: Component[], apiKey?: string, conversationHistory?: string, responseMode?: 'component' | 'text', streamCallback?: (chunk: string) => void, collections?: any, externalTools?: any[], userId?: string): Promise<T_RESPONSE>;
|
|
2045
2661
|
/**
|
|
2046
2662
|
* Generate next questions that the user might ask based on the original prompt and generated component
|
|
2047
2663
|
* This helps provide intelligent suggestions for follow-up queries
|
|
2048
2664
|
* For general/conversational questions without components, pass textResponse instead
|
|
2049
2665
|
*/
|
|
2050
|
-
generateNextQuestions(originalUserPrompt: string, component?: Component | null, componentData?: Record<string, unknown>, apiKey?: string,
|
|
2666
|
+
generateNextQuestions(originalUserPrompt: string, component?: Component | null, componentData?: Record<string, unknown>, apiKey?: string, conversationHistory?: string, textResponse?: string): Promise<string[]>;
|
|
2051
2667
|
}
|
|
2052
2668
|
|
|
2053
2669
|
interface AnthropicLLMConfig extends BaseLLMConfig {
|
|
@@ -2106,14 +2722,159 @@ declare class OpenAILLM extends BaseLLM {
|
|
|
2106
2722
|
}
|
|
2107
2723
|
declare const openaiLLM: OpenAILLM;
|
|
2108
2724
|
|
|
2109
|
-
|
|
2725
|
+
/**
|
|
2726
|
+
* Query Cache — Two mechanisms:
|
|
2727
|
+
*
|
|
2728
|
+
* 1. `cache` (query string → result data) — TTL-based with max size, for avoiding re-execution
|
|
2729
|
+
* of recently validated queries. True LRU eviction: reads bubble entries to the back via
|
|
2730
|
+
* delete+re-set so the oldest *unused* entry is evicted, not the oldest *inserted*.
|
|
2731
|
+
*
|
|
2732
|
+
* 2. Encrypted queryId tokens — SQL is encrypted into the queryId itself (self-contained).
|
|
2733
|
+
* No server-side storage needed for SQL mappings. The token is decrypted on each request.
|
|
2734
|
+
* This eliminates the unbounded queryIdCache that previously grew forever and caused
|
|
2735
|
+
* memory bloat (hundreds of MBs after thousands of queries).
|
|
2736
|
+
*
|
|
2737
|
+
* Result data can still be cached temporarily via the data cache (mechanism 1).
|
|
2738
|
+
*/
|
|
2739
|
+
declare class QueryCache {
|
|
2740
|
+
private cache;
|
|
2741
|
+
private ttlMs;
|
|
2742
|
+
private maxCacheSize;
|
|
2743
|
+
private cleanupInterval;
|
|
2744
|
+
private readonly algorithm;
|
|
2745
|
+
private encryptionKey;
|
|
2746
|
+
constructor();
|
|
2747
|
+
/**
|
|
2748
|
+
* Set the cache TTL (Time To Live)
|
|
2749
|
+
* @param minutes - TTL in minutes (default: 10)
|
|
2750
|
+
*/
|
|
2751
|
+
setTTL(minutes: number): void;
|
|
2752
|
+
/**
|
|
2753
|
+
* Get the current TTL in minutes
|
|
2754
|
+
*/
|
|
2755
|
+
getTTL(): number;
|
|
2756
|
+
/**
|
|
2757
|
+
* Store query result in data cache.
|
|
2758
|
+
* If the key already exists, it's removed first so the re-insert places it
|
|
2759
|
+
* at the back of the iteration order (LRU). Eviction only fires when adding
|
|
2760
|
+
* a genuinely new key past the size limit.
|
|
2761
|
+
*/
|
|
2762
|
+
set(query: string, data: any): void;
|
|
2763
|
+
/**
|
|
2764
|
+
* Get cached result if exists and not expired.
|
|
2765
|
+
* On hit, re-inserts the entry so it moves to the back of the Map's
|
|
2766
|
+
* iteration order — turning FIFO eviction into true LRU.
|
|
2767
|
+
*/
|
|
2768
|
+
get(query: string): any | null;
|
|
2769
|
+
/**
|
|
2770
|
+
* Check if query exists in cache (not expired)
|
|
2771
|
+
*/
|
|
2772
|
+
has(query: string): boolean;
|
|
2773
|
+
/**
|
|
2774
|
+
* Remove a specific query from cache
|
|
2775
|
+
*/
|
|
2776
|
+
delete(query: string): void;
|
|
2777
|
+
/**
|
|
2778
|
+
* Clear all cached entries
|
|
2779
|
+
*/
|
|
2780
|
+
clear(): void;
|
|
2781
|
+
/**
|
|
2782
|
+
* Get cache statistics
|
|
2783
|
+
*/
|
|
2784
|
+
getStats(): {
|
|
2785
|
+
size: number;
|
|
2786
|
+
queryIdCount: number;
|
|
2787
|
+
oldestEntryAge: number | null;
|
|
2788
|
+
};
|
|
2789
|
+
/**
|
|
2790
|
+
* Start periodic cleanup of expired data cache entries.
|
|
2791
|
+
*/
|
|
2792
|
+
private startCleanup;
|
|
2793
|
+
/**
|
|
2794
|
+
* Encrypt a payload into a self-contained token.
|
|
2795
|
+
*/
|
|
2796
|
+
private encrypt;
|
|
2797
|
+
/**
|
|
2798
|
+
* Decrypt a token back to the original payload.
|
|
2799
|
+
*/
|
|
2800
|
+
private decrypt;
|
|
2801
|
+
/**
|
|
2802
|
+
* Store a query by generating an encrypted token as queryId.
|
|
2803
|
+
* The SQL is encrypted INTO the token — nothing stored in memory.
|
|
2804
|
+
* If data is provided, it's cached temporarily in the data cache.
|
|
2805
|
+
*/
|
|
2806
|
+
storeQuery(query: any, data?: any): string;
|
|
2807
|
+
/**
|
|
2808
|
+
* Get a stored query by decrypting its token.
|
|
2809
|
+
* Returns the SQL + any cached result data.
|
|
2810
|
+
*/
|
|
2811
|
+
getQuery(queryId: string): {
|
|
2812
|
+
query: any;
|
|
2813
|
+
data: any;
|
|
2814
|
+
} | null;
|
|
2815
|
+
/**
|
|
2816
|
+
* Update cached data for a queryId token
|
|
2817
|
+
*/
|
|
2818
|
+
setQueryData(queryId: string, data: any): void;
|
|
2819
|
+
/**
|
|
2820
|
+
* Stop cleanup interval (for graceful shutdown)
|
|
2821
|
+
*/
|
|
2822
|
+
destroy(): void;
|
|
2823
|
+
}
|
|
2824
|
+
declare const queryCache: QueryCache;
|
|
2825
|
+
|
|
2826
|
+
/**
|
|
2827
|
+
* Manages conversation history scoped per user + dashboard.
|
|
2828
|
+
* Each user-dashboard pair has its own isolated history that expires after a configurable TTL.
|
|
2829
|
+
*/
|
|
2830
|
+
declare class DashboardConversationHistory {
|
|
2831
|
+
private histories;
|
|
2832
|
+
private ttlMs;
|
|
2833
|
+
private maxEntries;
|
|
2834
|
+
private cleanupInterval;
|
|
2835
|
+
constructor();
|
|
2836
|
+
/**
|
|
2837
|
+
* Set the TTL for dashboard histories
|
|
2838
|
+
* @param minutes - TTL in minutes
|
|
2839
|
+
*/
|
|
2840
|
+
setTTL(minutes: number): void;
|
|
2841
|
+
/**
|
|
2842
|
+
* Set max entries per dashboard
|
|
2843
|
+
*/
|
|
2844
|
+
setMaxEntries(max: number): void;
|
|
2845
|
+
/**
|
|
2846
|
+
* Add a conversation entry for a user's dashboard
|
|
2847
|
+
*/
|
|
2848
|
+
addEntry(dashboardId: string, userPrompt: string, componentSummary: string, userId?: string): void;
|
|
2849
|
+
/**
|
|
2850
|
+
* Get formatted conversation history for a user's dashboard
|
|
2851
|
+
*/
|
|
2852
|
+
getHistory(dashboardId: string, userId?: string): string;
|
|
2853
|
+
/**
|
|
2854
|
+
* Clear history for a specific user's dashboard
|
|
2855
|
+
*/
|
|
2856
|
+
clearDashboard(dashboardId: string, userId?: string): void;
|
|
2857
|
+
/**
|
|
2858
|
+
* Clear all dashboard histories
|
|
2859
|
+
*/
|
|
2860
|
+
clearAll(): void;
|
|
2861
|
+
/**
|
|
2862
|
+
* Start periodic cleanup of expired histories
|
|
2863
|
+
*/
|
|
2864
|
+
private startCleanup;
|
|
2865
|
+
/**
|
|
2866
|
+
* Stop cleanup interval (for graceful shutdown)
|
|
2867
|
+
*/
|
|
2868
|
+
destroy(): void;
|
|
2869
|
+
}
|
|
2870
|
+
declare const dashboardConversationHistory: DashboardConversationHistory;
|
|
2871
|
+
|
|
2110
2872
|
type MessageTypeHandler = (message: IncomingMessage) => void | Promise<void>;
|
|
2111
2873
|
declare class SuperatomSDK {
|
|
2112
2874
|
private ws;
|
|
2113
2875
|
private url;
|
|
2114
2876
|
private apiKey?;
|
|
2115
2877
|
private projectId;
|
|
2116
|
-
private userId;
|
|
2117
2878
|
private type;
|
|
2118
2879
|
private bundleDir;
|
|
2119
2880
|
private messageHandlers;
|
|
@@ -2124,6 +2885,7 @@ declare class SuperatomSDK {
|
|
|
2124
2885
|
private collections;
|
|
2125
2886
|
private components;
|
|
2126
2887
|
private tools;
|
|
2888
|
+
private workflows;
|
|
2127
2889
|
private anthropicApiKey;
|
|
2128
2890
|
private groqApiKey;
|
|
2129
2891
|
private geminiApiKey;
|
|
@@ -2131,6 +2893,10 @@ declare class SuperatomSDK {
|
|
|
2131
2893
|
private llmProviders;
|
|
2132
2894
|
private databaseType;
|
|
2133
2895
|
private modelStrategy;
|
|
2896
|
+
private mainAgentModel;
|
|
2897
|
+
private sourceAgentModel;
|
|
2898
|
+
private dashCompModels?;
|
|
2899
|
+
private conversationSimilarityThreshold;
|
|
2134
2900
|
private userManager;
|
|
2135
2901
|
private dashboardManager;
|
|
2136
2902
|
private reportManager;
|
|
@@ -2177,9 +2943,11 @@ declare class SuperatomSDK {
|
|
|
2177
2943
|
*/
|
|
2178
2944
|
private handleMessage;
|
|
2179
2945
|
/**
|
|
2180
|
-
* Send a message to the Superatom service
|
|
2946
|
+
* Send a message to the Superatom service.
|
|
2947
|
+
* Returns true if the message was sent, false if the WebSocket is not connected.
|
|
2948
|
+
* Does NOT throw on closed connections — callers can check the return value if needed.
|
|
2181
2949
|
*/
|
|
2182
|
-
send(message: Message):
|
|
2950
|
+
send(message: Message): boolean;
|
|
2183
2951
|
/**
|
|
2184
2952
|
* Register a message handler to receive all messages
|
|
2185
2953
|
*/
|
|
@@ -2227,6 +2995,19 @@ declare class SuperatomSDK {
|
|
|
2227
2995
|
* Get the stored tools
|
|
2228
2996
|
*/
|
|
2229
2997
|
getTools(): Tool$1[];
|
|
2998
|
+
/**
|
|
2999
|
+
* Register workflow components for the SDK instance.
|
|
3000
|
+
*
|
|
3001
|
+
* Workflows are pre-built multi-step UI flows the main agent can pick when
|
|
3002
|
+
* the user's prompt matches a workflow's `whenToUse` trigger. Picking a
|
|
3003
|
+
* workflow short-circuits analysis text + dashboard component generation —
|
|
3004
|
+
* the workflow component is returned directly, with the LLM-extracted props.
|
|
3005
|
+
*/
|
|
3006
|
+
setWorkflows(workflows: WorkflowDescriptor[]): void;
|
|
3007
|
+
/**
|
|
3008
|
+
* Get the registered workflow components.
|
|
3009
|
+
*/
|
|
3010
|
+
getWorkflows(): WorkflowDescriptor[];
|
|
2230
3011
|
/**
|
|
2231
3012
|
* Apply model strategy to all LLM provider singletons
|
|
2232
3013
|
* @param strategy - 'best', 'fast', or 'balanced'
|
|
@@ -2241,6 +3022,20 @@ declare class SuperatomSDK {
|
|
|
2241
3022
|
* Get current model strategy
|
|
2242
3023
|
*/
|
|
2243
3024
|
getModelStrategy(): ModelStrategy;
|
|
3025
|
+
/**
|
|
3026
|
+
* Apply conversation similarity threshold to all LLM provider singletons
|
|
3027
|
+
* @param threshold - Value between 0 and 1 (e.g., 0.8 = 80% similarity required)
|
|
3028
|
+
*/
|
|
3029
|
+
private applyConversationSimilarityThreshold;
|
|
3030
|
+
/**
|
|
3031
|
+
* Set conversation similarity threshold at runtime
|
|
3032
|
+
* @param threshold - Value between 0 and 1 (e.g., 0.8 = 80% similarity required)
|
|
3033
|
+
*/
|
|
3034
|
+
setConversationSimilarityThreshold(threshold: number): void;
|
|
3035
|
+
/**
|
|
3036
|
+
* Get current conversation similarity threshold
|
|
3037
|
+
*/
|
|
3038
|
+
getConversationSimilarityThreshold(): number;
|
|
2244
3039
|
}
|
|
2245
3040
|
|
|
2246
|
-
export { type Action, BM25L, type BM25LOptions, type BaseLLMConfig, CONTEXT_CONFIG, type CapturedLog, CleanupService, type CollectionHandler, type CollectionOperation, type DBUIBlock, type DatabaseType, type HybridSearchOptions, type IncomingMessage, type KbNodesQueryFilters, type KbNodesRequestPayload, LLM, type LLMUsageEntry, type LogLevel, type Message, type ModelStrategy, type
|
|
3041
|
+
export { type Action, type AgentConfig, type AgentResponse, BM25L, type BM25LOptions, type BaseLLMConfig, CONTEXT_CONFIG, type CapturedLog, CleanupService, type CollectionHandler, type CollectionOperation, type DBUIBlock, DEFAULT_AGENT_CONFIG, type DatabaseType, type HybridSearchOptions, type IncomingMessage, type KbNodesQueryFilters, type KbNodesRequestPayload, LLM, type LLMUsageEntry, type LogLevel, MainAgent, type Message, type ModelStrategy, type OutputField, type RerankedResult, STORAGE_CONFIG, type SelectedWorkflow, SuperatomSDK, type SuperatomSDKConfig, type TaskType, Thread, ThreadManager, type Tool$1 as Tool, type ToolOutputSchema, UIBlock, UILogCollector, type User, UserManager, type UsersData, type WorkflowDescriptor, anthropicLLM, dashboardConversationHistory, geminiLLM, groqLLM, hybridRerank, llmUsageLogger, logger, openaiLLM, queryCache, rerankChromaResults, rerankConversationResults, userPromptErrorLogger };
|