librechat-data-provider 0.8.403 → 0.8.404
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.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/react-query/index.es.js +1 -1
- package/dist/react-query/index.es.js.map +1 -1
- package/dist/types/api-endpoints.d.ts +1 -0
- package/dist/types/config.d.ts +1358 -425
- package/dist/types/data-service.d.ts +3 -0
- package/dist/types/mcp.d.ts +27 -27
- package/dist/types/models.d.ts +6 -136
- package/dist/types/schemas.d.ts +295 -0
- package/package.json +2 -1
package/dist/types/config.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
import type { ZodError } from 'zod';
|
|
3
3
|
import type { TEndpointsConfig, TModelsConfig, TConfig } from './types';
|
|
4
4
|
import { EModelEndpoint } from './schemas';
|
|
5
|
+
import { ComponentTypes, SettingTypes, OptionTypes } from './generate';
|
|
5
6
|
import { TSpecsConfig } from './models';
|
|
6
7
|
import { FileSources } from './types/files';
|
|
7
8
|
export declare const defaultSocialLogins: string[];
|
|
@@ -444,7 +445,7 @@ export declare const assistantEndpointSchema: z.ZodObject<{
|
|
|
444
445
|
}>;
|
|
445
446
|
export type TAssistantEndpoint = z.infer<typeof assistantEndpointSchema>;
|
|
446
447
|
export declare const defaultAgentCapabilities: AgentCapabilities[];
|
|
447
|
-
export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<{
|
|
448
|
+
export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
448
449
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
449
450
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
450
451
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -455,7 +456,7 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<{
|
|
|
455
456
|
titlePromptTemplate: z.ZodOptional<z.ZodString>;
|
|
456
457
|
/** Maximum characters allowed in a single tool result before truncation. */
|
|
457
458
|
maxToolResultChars: z.ZodOptional<z.ZodNumber>;
|
|
458
|
-
} & {
|
|
459
|
+
}, "baseURL"> & {
|
|
459
460
|
recursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
460
461
|
disableBuilder: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
461
462
|
maxRecursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -470,7 +471,6 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<{
|
|
|
470
471
|
maxCitations: number;
|
|
471
472
|
maxCitationsPerFile: number;
|
|
472
473
|
minRelevanceScore: number;
|
|
473
|
-
baseURL?: string | undefined;
|
|
474
474
|
streamRate?: number | undefined;
|
|
475
475
|
titlePrompt?: string | undefined;
|
|
476
476
|
titleModel?: string | undefined;
|
|
@@ -483,7 +483,6 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<{
|
|
|
483
483
|
maxRecursionLimit?: number | undefined;
|
|
484
484
|
allowedProviders?: string[] | undefined;
|
|
485
485
|
}, {
|
|
486
|
-
baseURL?: string | undefined;
|
|
487
486
|
streamRate?: number | undefined;
|
|
488
487
|
titlePrompt?: string | undefined;
|
|
489
488
|
titleModel?: string | undefined;
|
|
@@ -543,8 +542,6 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
543
542
|
fetch?: boolean | undefined;
|
|
544
543
|
userIdQuery?: boolean | undefined;
|
|
545
544
|
}>;
|
|
546
|
-
summarize: z.ZodOptional<z.ZodBoolean>;
|
|
547
|
-
summaryModel: z.ZodOptional<z.ZodString>;
|
|
548
545
|
iconURL: z.ZodOptional<z.ZodString>;
|
|
549
546
|
modelDisplayLabel: z.ZodOptional<z.ZodString>;
|
|
550
547
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -552,15 +549,187 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
552
549
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
553
550
|
customParams: z.ZodOptional<z.ZodObject<{
|
|
554
551
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
555
|
-
paramDefinitions: z.ZodOptional<z.ZodArray<z.
|
|
552
|
+
paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
553
|
+
key: z.ZodString;
|
|
554
|
+
description: z.ZodOptional<z.ZodString>;
|
|
555
|
+
type: z.ZodOptional<z.ZodNativeEnum<typeof SettingTypes>>;
|
|
556
|
+
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
557
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
558
|
+
showDefault: z.ZodOptional<z.ZodBoolean>;
|
|
559
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
560
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
561
|
+
min: z.ZodNumber;
|
|
562
|
+
max: z.ZodNumber;
|
|
563
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
564
|
+
}, "strip", z.ZodTypeAny, {
|
|
565
|
+
min: number;
|
|
566
|
+
max: number;
|
|
567
|
+
step?: number | undefined;
|
|
568
|
+
}, {
|
|
569
|
+
min: number;
|
|
570
|
+
max: number;
|
|
571
|
+
step?: number | undefined;
|
|
572
|
+
}>>;
|
|
573
|
+
enumMappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString]>>>;
|
|
574
|
+
component: z.ZodOptional<z.ZodNativeEnum<typeof ComponentTypes>>;
|
|
575
|
+
optionType: z.ZodOptional<z.ZodNativeEnum<typeof OptionTypes>>;
|
|
576
|
+
columnSpan: z.ZodOptional<z.ZodNumber>;
|
|
577
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
578
|
+
label: z.ZodOptional<z.ZodString>;
|
|
579
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
580
|
+
labelCode: z.ZodOptional<z.ZodBoolean>;
|
|
581
|
+
placeholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
582
|
+
descriptionCode: z.ZodOptional<z.ZodBoolean>;
|
|
583
|
+
minText: z.ZodOptional<z.ZodNumber>;
|
|
584
|
+
maxText: z.ZodOptional<z.ZodNumber>;
|
|
585
|
+
minTags: z.ZodOptional<z.ZodNumber>;
|
|
586
|
+
maxTags: z.ZodOptional<z.ZodNumber>;
|
|
587
|
+
includeInput: z.ZodOptional<z.ZodBoolean>;
|
|
588
|
+
descriptionSide: z.ZodOptional<z.ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
589
|
+
searchPlaceholder: z.ZodOptional<z.ZodString>;
|
|
590
|
+
selectPlaceholder: z.ZodOptional<z.ZodString>;
|
|
591
|
+
searchPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
592
|
+
selectPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
593
|
+
}, "strip", z.ZodTypeAny, {
|
|
594
|
+
key: string;
|
|
595
|
+
default?: string | number | boolean | string[] | undefined;
|
|
596
|
+
options?: string[] | undefined;
|
|
597
|
+
type?: SettingTypes | undefined;
|
|
598
|
+
description?: string | undefined;
|
|
599
|
+
placeholder?: string | undefined;
|
|
600
|
+
label?: string | undefined;
|
|
601
|
+
showLabel?: boolean | undefined;
|
|
602
|
+
showDefault?: boolean | undefined;
|
|
603
|
+
range?: {
|
|
604
|
+
min: number;
|
|
605
|
+
max: number;
|
|
606
|
+
step?: number | undefined;
|
|
607
|
+
} | undefined;
|
|
608
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
609
|
+
component?: ComponentTypes | undefined;
|
|
610
|
+
optionType?: OptionTypes | undefined;
|
|
611
|
+
columnSpan?: number | undefined;
|
|
612
|
+
columns?: number | undefined;
|
|
613
|
+
labelCode?: boolean | undefined;
|
|
614
|
+
placeholderCode?: boolean | undefined;
|
|
615
|
+
descriptionCode?: boolean | undefined;
|
|
616
|
+
minText?: number | undefined;
|
|
617
|
+
maxText?: number | undefined;
|
|
618
|
+
minTags?: number | undefined;
|
|
619
|
+
maxTags?: number | undefined;
|
|
620
|
+
includeInput?: boolean | undefined;
|
|
621
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
622
|
+
searchPlaceholder?: string | undefined;
|
|
623
|
+
selectPlaceholder?: string | undefined;
|
|
624
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
625
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
626
|
+
}, {
|
|
627
|
+
key: string;
|
|
628
|
+
default?: string | number | boolean | string[] | undefined;
|
|
629
|
+
options?: string[] | undefined;
|
|
630
|
+
type?: SettingTypes | undefined;
|
|
631
|
+
description?: string | undefined;
|
|
632
|
+
placeholder?: string | undefined;
|
|
633
|
+
label?: string | undefined;
|
|
634
|
+
showLabel?: boolean | undefined;
|
|
635
|
+
showDefault?: boolean | undefined;
|
|
636
|
+
range?: {
|
|
637
|
+
min: number;
|
|
638
|
+
max: number;
|
|
639
|
+
step?: number | undefined;
|
|
640
|
+
} | undefined;
|
|
641
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
642
|
+
component?: ComponentTypes | undefined;
|
|
643
|
+
optionType?: OptionTypes | undefined;
|
|
644
|
+
columnSpan?: number | undefined;
|
|
645
|
+
columns?: number | undefined;
|
|
646
|
+
labelCode?: boolean | undefined;
|
|
647
|
+
placeholderCode?: boolean | undefined;
|
|
648
|
+
descriptionCode?: boolean | undefined;
|
|
649
|
+
minText?: number | undefined;
|
|
650
|
+
maxText?: number | undefined;
|
|
651
|
+
minTags?: number | undefined;
|
|
652
|
+
maxTags?: number | undefined;
|
|
653
|
+
includeInput?: boolean | undefined;
|
|
654
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
655
|
+
searchPlaceholder?: string | undefined;
|
|
656
|
+
selectPlaceholder?: string | undefined;
|
|
657
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
658
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
659
|
+
}>, "many">>;
|
|
556
660
|
}, "strict", z.ZodTypeAny, {
|
|
557
661
|
defaultParamsEndpoint: string;
|
|
558
|
-
paramDefinitions?:
|
|
662
|
+
paramDefinitions?: {
|
|
663
|
+
key: string;
|
|
664
|
+
default?: string | number | boolean | string[] | undefined;
|
|
665
|
+
options?: string[] | undefined;
|
|
666
|
+
type?: SettingTypes | undefined;
|
|
667
|
+
description?: string | undefined;
|
|
668
|
+
placeholder?: string | undefined;
|
|
669
|
+
label?: string | undefined;
|
|
670
|
+
showLabel?: boolean | undefined;
|
|
671
|
+
showDefault?: boolean | undefined;
|
|
672
|
+
range?: {
|
|
673
|
+
min: number;
|
|
674
|
+
max: number;
|
|
675
|
+
step?: number | undefined;
|
|
676
|
+
} | undefined;
|
|
677
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
678
|
+
component?: ComponentTypes | undefined;
|
|
679
|
+
optionType?: OptionTypes | undefined;
|
|
680
|
+
columnSpan?: number | undefined;
|
|
681
|
+
columns?: number | undefined;
|
|
682
|
+
labelCode?: boolean | undefined;
|
|
683
|
+
placeholderCode?: boolean | undefined;
|
|
684
|
+
descriptionCode?: boolean | undefined;
|
|
685
|
+
minText?: number | undefined;
|
|
686
|
+
maxText?: number | undefined;
|
|
687
|
+
minTags?: number | undefined;
|
|
688
|
+
maxTags?: number | undefined;
|
|
689
|
+
includeInput?: boolean | undefined;
|
|
690
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
691
|
+
searchPlaceholder?: string | undefined;
|
|
692
|
+
selectPlaceholder?: string | undefined;
|
|
693
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
694
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
695
|
+
}[] | undefined;
|
|
559
696
|
}, {
|
|
560
697
|
defaultParamsEndpoint?: string | undefined;
|
|
561
|
-
paramDefinitions?:
|
|
698
|
+
paramDefinitions?: {
|
|
699
|
+
key: string;
|
|
700
|
+
default?: string | number | boolean | string[] | undefined;
|
|
701
|
+
options?: string[] | undefined;
|
|
702
|
+
type?: SettingTypes | undefined;
|
|
703
|
+
description?: string | undefined;
|
|
704
|
+
placeholder?: string | undefined;
|
|
705
|
+
label?: string | undefined;
|
|
706
|
+
showLabel?: boolean | undefined;
|
|
707
|
+
showDefault?: boolean | undefined;
|
|
708
|
+
range?: {
|
|
709
|
+
min: number;
|
|
710
|
+
max: number;
|
|
711
|
+
step?: number | undefined;
|
|
712
|
+
} | undefined;
|
|
713
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
714
|
+
component?: ComponentTypes | undefined;
|
|
715
|
+
optionType?: OptionTypes | undefined;
|
|
716
|
+
columnSpan?: number | undefined;
|
|
717
|
+
columns?: number | undefined;
|
|
718
|
+
labelCode?: boolean | undefined;
|
|
719
|
+
placeholderCode?: boolean | undefined;
|
|
720
|
+
descriptionCode?: boolean | undefined;
|
|
721
|
+
minText?: number | undefined;
|
|
722
|
+
maxText?: number | undefined;
|
|
723
|
+
minTags?: number | undefined;
|
|
724
|
+
maxTags?: number | undefined;
|
|
725
|
+
includeInput?: boolean | undefined;
|
|
726
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
727
|
+
searchPlaceholder?: string | undefined;
|
|
728
|
+
selectPlaceholder?: string | undefined;
|
|
729
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
730
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
731
|
+
}[] | undefined;
|
|
562
732
|
}>>;
|
|
563
|
-
customOrder: z.ZodOptional<z.ZodNumber>;
|
|
564
733
|
directEndpoint: z.ZodOptional<z.ZodBoolean>;
|
|
565
734
|
titleMessageRole: z.ZodOptional<z.ZodString>;
|
|
566
735
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -587,14 +756,44 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
587
756
|
maxToolResultChars?: number | undefined;
|
|
588
757
|
addParams?: Record<string, any> | undefined;
|
|
589
758
|
dropParams?: string[] | undefined;
|
|
590
|
-
summarize?: boolean | undefined;
|
|
591
|
-
summaryModel?: string | undefined;
|
|
592
759
|
modelDisplayLabel?: string | undefined;
|
|
593
760
|
customParams?: {
|
|
594
761
|
defaultParamsEndpoint: string;
|
|
595
|
-
paramDefinitions?:
|
|
762
|
+
paramDefinitions?: {
|
|
763
|
+
key: string;
|
|
764
|
+
default?: string | number | boolean | string[] | undefined;
|
|
765
|
+
options?: string[] | undefined;
|
|
766
|
+
type?: SettingTypes | undefined;
|
|
767
|
+
description?: string | undefined;
|
|
768
|
+
placeholder?: string | undefined;
|
|
769
|
+
label?: string | undefined;
|
|
770
|
+
showLabel?: boolean | undefined;
|
|
771
|
+
showDefault?: boolean | undefined;
|
|
772
|
+
range?: {
|
|
773
|
+
min: number;
|
|
774
|
+
max: number;
|
|
775
|
+
step?: number | undefined;
|
|
776
|
+
} | undefined;
|
|
777
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
778
|
+
component?: ComponentTypes | undefined;
|
|
779
|
+
optionType?: OptionTypes | undefined;
|
|
780
|
+
columnSpan?: number | undefined;
|
|
781
|
+
columns?: number | undefined;
|
|
782
|
+
labelCode?: boolean | undefined;
|
|
783
|
+
placeholderCode?: boolean | undefined;
|
|
784
|
+
descriptionCode?: boolean | undefined;
|
|
785
|
+
minText?: number | undefined;
|
|
786
|
+
maxText?: number | undefined;
|
|
787
|
+
minTags?: number | undefined;
|
|
788
|
+
maxTags?: number | undefined;
|
|
789
|
+
includeInput?: boolean | undefined;
|
|
790
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
791
|
+
searchPlaceholder?: string | undefined;
|
|
792
|
+
selectPlaceholder?: string | undefined;
|
|
793
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
794
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
795
|
+
}[] | undefined;
|
|
596
796
|
} | undefined;
|
|
597
|
-
customOrder?: number | undefined;
|
|
598
797
|
directEndpoint?: boolean | undefined;
|
|
599
798
|
titleMessageRole?: string | undefined;
|
|
600
799
|
}, {
|
|
@@ -621,14 +820,44 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
621
820
|
maxToolResultChars?: number | undefined;
|
|
622
821
|
addParams?: Record<string, any> | undefined;
|
|
623
822
|
dropParams?: string[] | undefined;
|
|
624
|
-
summarize?: boolean | undefined;
|
|
625
|
-
summaryModel?: string | undefined;
|
|
626
823
|
modelDisplayLabel?: string | undefined;
|
|
627
824
|
customParams?: {
|
|
628
825
|
defaultParamsEndpoint?: string | undefined;
|
|
629
|
-
paramDefinitions?:
|
|
826
|
+
paramDefinitions?: {
|
|
827
|
+
key: string;
|
|
828
|
+
default?: string | number | boolean | string[] | undefined;
|
|
829
|
+
options?: string[] | undefined;
|
|
830
|
+
type?: SettingTypes | undefined;
|
|
831
|
+
description?: string | undefined;
|
|
832
|
+
placeholder?: string | undefined;
|
|
833
|
+
label?: string | undefined;
|
|
834
|
+
showLabel?: boolean | undefined;
|
|
835
|
+
showDefault?: boolean | undefined;
|
|
836
|
+
range?: {
|
|
837
|
+
min: number;
|
|
838
|
+
max: number;
|
|
839
|
+
step?: number | undefined;
|
|
840
|
+
} | undefined;
|
|
841
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
842
|
+
component?: ComponentTypes | undefined;
|
|
843
|
+
optionType?: OptionTypes | undefined;
|
|
844
|
+
columnSpan?: number | undefined;
|
|
845
|
+
columns?: number | undefined;
|
|
846
|
+
labelCode?: boolean | undefined;
|
|
847
|
+
placeholderCode?: boolean | undefined;
|
|
848
|
+
descriptionCode?: boolean | undefined;
|
|
849
|
+
minText?: number | undefined;
|
|
850
|
+
maxText?: number | undefined;
|
|
851
|
+
minTags?: number | undefined;
|
|
852
|
+
maxTags?: number | undefined;
|
|
853
|
+
includeInput?: boolean | undefined;
|
|
854
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
855
|
+
searchPlaceholder?: string | undefined;
|
|
856
|
+
selectPlaceholder?: string | undefined;
|
|
857
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
858
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
859
|
+
}[] | undefined;
|
|
630
860
|
} | undefined;
|
|
631
|
-
customOrder?: number | undefined;
|
|
632
861
|
directEndpoint?: boolean | undefined;
|
|
633
862
|
titleMessageRole?: string | undefined;
|
|
634
863
|
}>;
|
|
@@ -697,7 +926,6 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
697
926
|
dropParams?: string[] | undefined;
|
|
698
927
|
additionalHeaders?: Record<string, any> | undefined;
|
|
699
928
|
}>>, "many">;
|
|
700
|
-
plugins: z.ZodOptional<z.ZodBoolean>;
|
|
701
929
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
702
930
|
}, "strip", z.ZodTypeAny, {
|
|
703
931
|
groups: ({
|
|
@@ -720,7 +948,6 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
720
948
|
additionalHeaders?: Record<string, any> | undefined;
|
|
721
949
|
})[];
|
|
722
950
|
assistants?: boolean | undefined;
|
|
723
|
-
plugins?: boolean | undefined;
|
|
724
951
|
}, {
|
|
725
952
|
groups: ({
|
|
726
953
|
group: string;
|
|
@@ -742,7 +969,6 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
742
969
|
additionalHeaders?: Record<string, any> | undefined;
|
|
743
970
|
})[];
|
|
744
971
|
assistants?: boolean | undefined;
|
|
745
|
-
plugins?: boolean | undefined;
|
|
746
972
|
}>, z.ZodObject<{
|
|
747
973
|
streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
748
974
|
titlePrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -750,9 +976,6 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
750
976
|
titleConvo: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
751
977
|
titleMethod: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"completion">, z.ZodLiteral<"functions">, z.ZodLiteral<"structured">]>>>;
|
|
752
978
|
titlePromptTemplate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
753
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
754
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
755
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
756
979
|
}, "strip", z.ZodTypeAny, {
|
|
757
980
|
streamRate?: number | undefined;
|
|
758
981
|
titlePrompt?: string | undefined;
|
|
@@ -760,9 +983,6 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
760
983
|
titleConvo?: boolean | undefined;
|
|
761
984
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
762
985
|
titlePromptTemplate?: string | undefined;
|
|
763
|
-
summarize?: boolean | undefined;
|
|
764
|
-
summaryModel?: string | undefined;
|
|
765
|
-
customOrder?: number | undefined;
|
|
766
986
|
}, {
|
|
767
987
|
streamRate?: number | undefined;
|
|
768
988
|
titlePrompt?: string | undefined;
|
|
@@ -770,9 +990,6 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
770
990
|
titleConvo?: boolean | undefined;
|
|
771
991
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
772
992
|
titlePromptTemplate?: string | undefined;
|
|
773
|
-
summarize?: boolean | undefined;
|
|
774
|
-
summaryModel?: string | undefined;
|
|
775
|
-
customOrder?: number | undefined;
|
|
776
993
|
}>>;
|
|
777
994
|
export type TAzureConfig = Omit<z.infer<typeof azureEndpointSchema>, 'groups'> & TAzureConfigValidationResult;
|
|
778
995
|
/**
|
|
@@ -2077,8 +2294,6 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2077
2294
|
fetch?: boolean | undefined;
|
|
2078
2295
|
userIdQuery?: boolean | undefined;
|
|
2079
2296
|
}>>;
|
|
2080
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2081
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2082
2297
|
iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2083
2298
|
modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2084
2299
|
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
@@ -2086,15 +2301,187 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2086
2301
|
dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2087
2302
|
customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
2088
2303
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
2089
|
-
paramDefinitions: z.ZodOptional<z.ZodArray<z.
|
|
2304
|
+
paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2305
|
+
key: z.ZodString;
|
|
2306
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2307
|
+
type: z.ZodOptional<z.ZodNativeEnum<typeof SettingTypes>>;
|
|
2308
|
+
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
2309
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
2310
|
+
showDefault: z.ZodOptional<z.ZodBoolean>;
|
|
2311
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2312
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
2313
|
+
min: z.ZodNumber;
|
|
2314
|
+
max: z.ZodNumber;
|
|
2315
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
2316
|
+
}, "strip", z.ZodTypeAny, {
|
|
2317
|
+
min: number;
|
|
2318
|
+
max: number;
|
|
2319
|
+
step?: number | undefined;
|
|
2320
|
+
}, {
|
|
2321
|
+
min: number;
|
|
2322
|
+
max: number;
|
|
2323
|
+
step?: number | undefined;
|
|
2324
|
+
}>>;
|
|
2325
|
+
enumMappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString]>>>;
|
|
2326
|
+
component: z.ZodOptional<z.ZodNativeEnum<typeof ComponentTypes>>;
|
|
2327
|
+
optionType: z.ZodOptional<z.ZodNativeEnum<typeof OptionTypes>>;
|
|
2328
|
+
columnSpan: z.ZodOptional<z.ZodNumber>;
|
|
2329
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
2330
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2331
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
2332
|
+
labelCode: z.ZodOptional<z.ZodBoolean>;
|
|
2333
|
+
placeholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
2334
|
+
descriptionCode: z.ZodOptional<z.ZodBoolean>;
|
|
2335
|
+
minText: z.ZodOptional<z.ZodNumber>;
|
|
2336
|
+
maxText: z.ZodOptional<z.ZodNumber>;
|
|
2337
|
+
minTags: z.ZodOptional<z.ZodNumber>;
|
|
2338
|
+
maxTags: z.ZodOptional<z.ZodNumber>;
|
|
2339
|
+
includeInput: z.ZodOptional<z.ZodBoolean>;
|
|
2340
|
+
descriptionSide: z.ZodOptional<z.ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
2341
|
+
searchPlaceholder: z.ZodOptional<z.ZodString>;
|
|
2342
|
+
selectPlaceholder: z.ZodOptional<z.ZodString>;
|
|
2343
|
+
searchPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
2344
|
+
selectPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
2345
|
+
}, "strip", z.ZodTypeAny, {
|
|
2346
|
+
key: string;
|
|
2347
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2348
|
+
options?: string[] | undefined;
|
|
2349
|
+
type?: SettingTypes | undefined;
|
|
2350
|
+
description?: string | undefined;
|
|
2351
|
+
placeholder?: string | undefined;
|
|
2352
|
+
label?: string | undefined;
|
|
2353
|
+
showLabel?: boolean | undefined;
|
|
2354
|
+
showDefault?: boolean | undefined;
|
|
2355
|
+
range?: {
|
|
2356
|
+
min: number;
|
|
2357
|
+
max: number;
|
|
2358
|
+
step?: number | undefined;
|
|
2359
|
+
} | undefined;
|
|
2360
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2361
|
+
component?: ComponentTypes | undefined;
|
|
2362
|
+
optionType?: OptionTypes | undefined;
|
|
2363
|
+
columnSpan?: number | undefined;
|
|
2364
|
+
columns?: number | undefined;
|
|
2365
|
+
labelCode?: boolean | undefined;
|
|
2366
|
+
placeholderCode?: boolean | undefined;
|
|
2367
|
+
descriptionCode?: boolean | undefined;
|
|
2368
|
+
minText?: number | undefined;
|
|
2369
|
+
maxText?: number | undefined;
|
|
2370
|
+
minTags?: number | undefined;
|
|
2371
|
+
maxTags?: number | undefined;
|
|
2372
|
+
includeInput?: boolean | undefined;
|
|
2373
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2374
|
+
searchPlaceholder?: string | undefined;
|
|
2375
|
+
selectPlaceholder?: string | undefined;
|
|
2376
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2377
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2378
|
+
}, {
|
|
2379
|
+
key: string;
|
|
2380
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2381
|
+
options?: string[] | undefined;
|
|
2382
|
+
type?: SettingTypes | undefined;
|
|
2383
|
+
description?: string | undefined;
|
|
2384
|
+
placeholder?: string | undefined;
|
|
2385
|
+
label?: string | undefined;
|
|
2386
|
+
showLabel?: boolean | undefined;
|
|
2387
|
+
showDefault?: boolean | undefined;
|
|
2388
|
+
range?: {
|
|
2389
|
+
min: number;
|
|
2390
|
+
max: number;
|
|
2391
|
+
step?: number | undefined;
|
|
2392
|
+
} | undefined;
|
|
2393
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2394
|
+
component?: ComponentTypes | undefined;
|
|
2395
|
+
optionType?: OptionTypes | undefined;
|
|
2396
|
+
columnSpan?: number | undefined;
|
|
2397
|
+
columns?: number | undefined;
|
|
2398
|
+
labelCode?: boolean | undefined;
|
|
2399
|
+
placeholderCode?: boolean | undefined;
|
|
2400
|
+
descriptionCode?: boolean | undefined;
|
|
2401
|
+
minText?: number | undefined;
|
|
2402
|
+
maxText?: number | undefined;
|
|
2403
|
+
minTags?: number | undefined;
|
|
2404
|
+
maxTags?: number | undefined;
|
|
2405
|
+
includeInput?: boolean | undefined;
|
|
2406
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2407
|
+
searchPlaceholder?: string | undefined;
|
|
2408
|
+
selectPlaceholder?: string | undefined;
|
|
2409
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2410
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2411
|
+
}>, "many">>;
|
|
2090
2412
|
}, "strict", z.ZodTypeAny, {
|
|
2091
2413
|
defaultParamsEndpoint: string;
|
|
2092
|
-
paramDefinitions?:
|
|
2414
|
+
paramDefinitions?: {
|
|
2415
|
+
key: string;
|
|
2416
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2417
|
+
options?: string[] | undefined;
|
|
2418
|
+
type?: SettingTypes | undefined;
|
|
2419
|
+
description?: string | undefined;
|
|
2420
|
+
placeholder?: string | undefined;
|
|
2421
|
+
label?: string | undefined;
|
|
2422
|
+
showLabel?: boolean | undefined;
|
|
2423
|
+
showDefault?: boolean | undefined;
|
|
2424
|
+
range?: {
|
|
2425
|
+
min: number;
|
|
2426
|
+
max: number;
|
|
2427
|
+
step?: number | undefined;
|
|
2428
|
+
} | undefined;
|
|
2429
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2430
|
+
component?: ComponentTypes | undefined;
|
|
2431
|
+
optionType?: OptionTypes | undefined;
|
|
2432
|
+
columnSpan?: number | undefined;
|
|
2433
|
+
columns?: number | undefined;
|
|
2434
|
+
labelCode?: boolean | undefined;
|
|
2435
|
+
placeholderCode?: boolean | undefined;
|
|
2436
|
+
descriptionCode?: boolean | undefined;
|
|
2437
|
+
minText?: number | undefined;
|
|
2438
|
+
maxText?: number | undefined;
|
|
2439
|
+
minTags?: number | undefined;
|
|
2440
|
+
maxTags?: number | undefined;
|
|
2441
|
+
includeInput?: boolean | undefined;
|
|
2442
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2443
|
+
searchPlaceholder?: string | undefined;
|
|
2444
|
+
selectPlaceholder?: string | undefined;
|
|
2445
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2446
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2447
|
+
}[] | undefined;
|
|
2093
2448
|
}, {
|
|
2094
2449
|
defaultParamsEndpoint?: string | undefined;
|
|
2095
|
-
paramDefinitions?:
|
|
2450
|
+
paramDefinitions?: {
|
|
2451
|
+
key: string;
|
|
2452
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2453
|
+
options?: string[] | undefined;
|
|
2454
|
+
type?: SettingTypes | undefined;
|
|
2455
|
+
description?: string | undefined;
|
|
2456
|
+
placeholder?: string | undefined;
|
|
2457
|
+
label?: string | undefined;
|
|
2458
|
+
showLabel?: boolean | undefined;
|
|
2459
|
+
showDefault?: boolean | undefined;
|
|
2460
|
+
range?: {
|
|
2461
|
+
min: number;
|
|
2462
|
+
max: number;
|
|
2463
|
+
step?: number | undefined;
|
|
2464
|
+
} | undefined;
|
|
2465
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2466
|
+
component?: ComponentTypes | undefined;
|
|
2467
|
+
optionType?: OptionTypes | undefined;
|
|
2468
|
+
columnSpan?: number | undefined;
|
|
2469
|
+
columns?: number | undefined;
|
|
2470
|
+
labelCode?: boolean | undefined;
|
|
2471
|
+
placeholderCode?: boolean | undefined;
|
|
2472
|
+
descriptionCode?: boolean | undefined;
|
|
2473
|
+
minText?: number | undefined;
|
|
2474
|
+
maxText?: number | undefined;
|
|
2475
|
+
minTags?: number | undefined;
|
|
2476
|
+
maxTags?: number | undefined;
|
|
2477
|
+
includeInput?: boolean | undefined;
|
|
2478
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2479
|
+
searchPlaceholder?: string | undefined;
|
|
2480
|
+
selectPlaceholder?: string | undefined;
|
|
2481
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2482
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2483
|
+
}[] | undefined;
|
|
2096
2484
|
}>>>;
|
|
2097
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2098
2485
|
directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2099
2486
|
titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2100
2487
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2121,14 +2508,44 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2121
2508
|
} | undefined;
|
|
2122
2509
|
addParams?: Record<string, any> | undefined;
|
|
2123
2510
|
dropParams?: string[] | undefined;
|
|
2124
|
-
summarize?: boolean | undefined;
|
|
2125
|
-
summaryModel?: string | undefined;
|
|
2126
2511
|
modelDisplayLabel?: string | undefined;
|
|
2127
2512
|
customParams?: {
|
|
2128
2513
|
defaultParamsEndpoint: string;
|
|
2129
|
-
paramDefinitions?:
|
|
2514
|
+
paramDefinitions?: {
|
|
2515
|
+
key: string;
|
|
2516
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2517
|
+
options?: string[] | undefined;
|
|
2518
|
+
type?: SettingTypes | undefined;
|
|
2519
|
+
description?: string | undefined;
|
|
2520
|
+
placeholder?: string | undefined;
|
|
2521
|
+
label?: string | undefined;
|
|
2522
|
+
showLabel?: boolean | undefined;
|
|
2523
|
+
showDefault?: boolean | undefined;
|
|
2524
|
+
range?: {
|
|
2525
|
+
min: number;
|
|
2526
|
+
max: number;
|
|
2527
|
+
step?: number | undefined;
|
|
2528
|
+
} | undefined;
|
|
2529
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2530
|
+
component?: ComponentTypes | undefined;
|
|
2531
|
+
optionType?: OptionTypes | undefined;
|
|
2532
|
+
columnSpan?: number | undefined;
|
|
2533
|
+
columns?: number | undefined;
|
|
2534
|
+
labelCode?: boolean | undefined;
|
|
2535
|
+
placeholderCode?: boolean | undefined;
|
|
2536
|
+
descriptionCode?: boolean | undefined;
|
|
2537
|
+
minText?: number | undefined;
|
|
2538
|
+
maxText?: number | undefined;
|
|
2539
|
+
minTags?: number | undefined;
|
|
2540
|
+
maxTags?: number | undefined;
|
|
2541
|
+
includeInput?: boolean | undefined;
|
|
2542
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2543
|
+
searchPlaceholder?: string | undefined;
|
|
2544
|
+
selectPlaceholder?: string | undefined;
|
|
2545
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2546
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2547
|
+
}[] | undefined;
|
|
2130
2548
|
} | undefined;
|
|
2131
|
-
customOrder?: number | undefined;
|
|
2132
2549
|
directEndpoint?: boolean | undefined;
|
|
2133
2550
|
titleMessageRole?: string | undefined;
|
|
2134
2551
|
}, {
|
|
@@ -2155,14 +2572,44 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2155
2572
|
} | undefined;
|
|
2156
2573
|
addParams?: Record<string, any> | undefined;
|
|
2157
2574
|
dropParams?: string[] | undefined;
|
|
2158
|
-
summarize?: boolean | undefined;
|
|
2159
|
-
summaryModel?: string | undefined;
|
|
2160
2575
|
modelDisplayLabel?: string | undefined;
|
|
2161
2576
|
customParams?: {
|
|
2162
2577
|
defaultParamsEndpoint?: string | undefined;
|
|
2163
|
-
paramDefinitions?:
|
|
2578
|
+
paramDefinitions?: {
|
|
2579
|
+
key: string;
|
|
2580
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2581
|
+
options?: string[] | undefined;
|
|
2582
|
+
type?: SettingTypes | undefined;
|
|
2583
|
+
description?: string | undefined;
|
|
2584
|
+
placeholder?: string | undefined;
|
|
2585
|
+
label?: string | undefined;
|
|
2586
|
+
showLabel?: boolean | undefined;
|
|
2587
|
+
showDefault?: boolean | undefined;
|
|
2588
|
+
range?: {
|
|
2589
|
+
min: number;
|
|
2590
|
+
max: number;
|
|
2591
|
+
step?: number | undefined;
|
|
2592
|
+
} | undefined;
|
|
2593
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2594
|
+
component?: ComponentTypes | undefined;
|
|
2595
|
+
optionType?: OptionTypes | undefined;
|
|
2596
|
+
columnSpan?: number | undefined;
|
|
2597
|
+
columns?: number | undefined;
|
|
2598
|
+
labelCode?: boolean | undefined;
|
|
2599
|
+
placeholderCode?: boolean | undefined;
|
|
2600
|
+
descriptionCode?: boolean | undefined;
|
|
2601
|
+
minText?: number | undefined;
|
|
2602
|
+
maxText?: number | undefined;
|
|
2603
|
+
minTags?: number | undefined;
|
|
2604
|
+
maxTags?: number | undefined;
|
|
2605
|
+
includeInput?: boolean | undefined;
|
|
2606
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2607
|
+
searchPlaceholder?: string | undefined;
|
|
2608
|
+
selectPlaceholder?: string | undefined;
|
|
2609
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2610
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2611
|
+
}[] | undefined;
|
|
2164
2612
|
} | undefined;
|
|
2165
|
-
customOrder?: number | undefined;
|
|
2166
2613
|
directEndpoint?: boolean | undefined;
|
|
2167
2614
|
titleMessageRole?: string | undefined;
|
|
2168
2615
|
}>, "many">>;
|
|
@@ -2608,16 +3055,16 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2608
3055
|
description: string;
|
|
2609
3056
|
}>>>;
|
|
2610
3057
|
} & {
|
|
2611
|
-
type: z.
|
|
3058
|
+
type: z.ZodDefault<z.ZodLiteral<"stdio">>;
|
|
2612
3059
|
command: z.ZodString;
|
|
2613
3060
|
args: z.ZodArray<z.ZodString, "many">;
|
|
2614
3061
|
env: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>, Record<string, string> | undefined, Record<string, string> | undefined>;
|
|
2615
|
-
stderr: z.ZodOptional<z.
|
|
3062
|
+
stderr: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["pipe", "ignore", "inherit"]>, z.ZodNumber]>>;
|
|
2616
3063
|
}, "strip", z.ZodTypeAny, {
|
|
3064
|
+
type: "stdio";
|
|
2617
3065
|
command: string;
|
|
2618
3066
|
args: string[];
|
|
2619
3067
|
title?: string | undefined;
|
|
2620
|
-
type?: "stdio" | undefined;
|
|
2621
3068
|
description?: string | undefined;
|
|
2622
3069
|
apiKey?: {
|
|
2623
3070
|
source: "user" | "admin";
|
|
@@ -2655,7 +3102,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2655
3102
|
description: string;
|
|
2656
3103
|
}> | undefined;
|
|
2657
3104
|
env?: Record<string, string> | undefined;
|
|
2658
|
-
stderr?:
|
|
3105
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
2659
3106
|
}, {
|
|
2660
3107
|
command: string;
|
|
2661
3108
|
args: string[];
|
|
@@ -2698,7 +3145,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2698
3145
|
description: string;
|
|
2699
3146
|
}> | undefined;
|
|
2700
3147
|
env?: Record<string, string> | undefined;
|
|
2701
|
-
stderr?:
|
|
3148
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
2702
3149
|
}>, z.ZodObject<{
|
|
2703
3150
|
title: z.ZodOptional<z.ZodString>;
|
|
2704
3151
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2784,12 +3231,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2784
3231
|
description: string;
|
|
2785
3232
|
}>>>;
|
|
2786
3233
|
} & {
|
|
2787
|
-
type: z.
|
|
3234
|
+
type: z.ZodDefault<z.ZodLiteral<"websocket">>;
|
|
2788
3235
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
2789
3236
|
}, "strip", z.ZodTypeAny, {
|
|
3237
|
+
type: "websocket";
|
|
2790
3238
|
url: string;
|
|
2791
3239
|
title?: string | undefined;
|
|
2792
|
-
type?: "websocket" | undefined;
|
|
2793
3240
|
description?: string | undefined;
|
|
2794
3241
|
apiKey?: {
|
|
2795
3242
|
source: "user" | "admin";
|
|
@@ -2951,13 +3398,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2951
3398
|
description: string;
|
|
2952
3399
|
}>>>;
|
|
2953
3400
|
} & {
|
|
2954
|
-
type: z.
|
|
3401
|
+
type: z.ZodDefault<z.ZodLiteral<"sse">>;
|
|
2955
3402
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2956
3403
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
2957
3404
|
}, "strip", z.ZodTypeAny, {
|
|
3405
|
+
type: "sse";
|
|
2958
3406
|
url: string;
|
|
2959
3407
|
title?: string | undefined;
|
|
2960
|
-
type?: "sse" | undefined;
|
|
2961
3408
|
description?: string | undefined;
|
|
2962
3409
|
apiKey?: {
|
|
2963
3410
|
source: "user" | "admin";
|
|
@@ -4273,7 +4720,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4273
4720
|
list: z.ZodArray<z.ZodObject<{
|
|
4274
4721
|
name: z.ZodString;
|
|
4275
4722
|
label: z.ZodString;
|
|
4276
|
-
preset: z.ZodObject<{
|
|
4723
|
+
preset: z.ZodObject<Omit<{
|
|
4277
4724
|
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4278
4725
|
greeting: z.ZodOptional<z.ZodString>;
|
|
4279
4726
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
@@ -4283,7 +4730,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4283
4730
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4284
4731
|
user: z.ZodOptional<z.ZodString>;
|
|
4285
4732
|
tools: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
4286
|
-
name: z.ZodString;
|
|
4733
|
+
name: z.ZodString; /** Google Cloud Project ID (optional - auto-detected from service key file if not provided) */
|
|
4287
4734
|
pluginKey: z.ZodString;
|
|
4288
4735
|
description: z.ZodOptional<z.ZodString>;
|
|
4289
4736
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -4469,18 +4916,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4469
4916
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
4470
4917
|
order: z.ZodOptional<z.ZodNumber>;
|
|
4471
4918
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
4472
|
-
}, "strip", z.ZodTypeAny, {
|
|
4919
|
+
}, "iconURL" | "greeting" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel">, "strip", z.ZodTypeAny, {
|
|
4473
4920
|
endpoint: string | null;
|
|
4474
4921
|
conversationId?: string | null | undefined;
|
|
4475
4922
|
title?: string | null | undefined;
|
|
4476
|
-
iconURL?: string | null | undefined;
|
|
4477
|
-
greeting?: string | undefined;
|
|
4478
4923
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4479
|
-
expiredAt?: string | null | undefined;
|
|
4480
|
-
messages?: string[] | undefined;
|
|
4481
|
-
isArchived?: boolean | undefined;
|
|
4482
|
-
tags?: string[] | undefined;
|
|
4483
|
-
user?: string | undefined;
|
|
4484
4924
|
tools?: string[] | {
|
|
4485
4925
|
name: string;
|
|
4486
4926
|
pluginKey: string;
|
|
@@ -4498,7 +4938,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4498
4938
|
toolkit?: boolean | undefined;
|
|
4499
4939
|
}[] | undefined;
|
|
4500
4940
|
model?: string | null | undefined;
|
|
4501
|
-
spec?: string | null | undefined;
|
|
4502
4941
|
instructions?: string | undefined;
|
|
4503
4942
|
fileTokenLimit?: number | undefined;
|
|
4504
4943
|
modelLabel?: string | null | undefined;
|
|
@@ -4510,7 +4949,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4510
4949
|
top_p?: number | undefined;
|
|
4511
4950
|
frequency_penalty?: number | undefined;
|
|
4512
4951
|
presence_penalty?: number | undefined;
|
|
4513
|
-
parentMessageId?: string | undefined;
|
|
4514
4952
|
maxOutputTokens?: number | null | undefined;
|
|
4515
4953
|
maxContextTokens?: number | undefined;
|
|
4516
4954
|
max_tokens?: number | undefined;
|
|
@@ -4531,7 +4969,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4531
4969
|
};
|
|
4532
4970
|
}[] | undefined;
|
|
4533
4971
|
resendFiles?: boolean | undefined;
|
|
4534
|
-
file_ids?: string[] | undefined;
|
|
4535
4972
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
4536
4973
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
4537
4974
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -4571,10 +5008,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4571
5008
|
} | null) | undefined;
|
|
4572
5009
|
additional_instructions?: string | undefined;
|
|
4573
5010
|
append_current_datetime?: boolean | undefined;
|
|
4574
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
4575
5011
|
stop?: string[] | undefined;
|
|
4576
|
-
resendImages?: boolean | undefined;
|
|
4577
|
-
chatGptLabel?: string | null | undefined;
|
|
4578
5012
|
presetId?: string | null | undefined;
|
|
4579
5013
|
defaultPreset?: boolean | undefined;
|
|
4580
5014
|
order?: number | undefined;
|
|
@@ -4582,14 +5016,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4582
5016
|
endpoint: string | null;
|
|
4583
5017
|
conversationId?: string | null | undefined;
|
|
4584
5018
|
title?: string | null | undefined;
|
|
4585
|
-
iconURL?: string | null | undefined;
|
|
4586
|
-
greeting?: string | undefined;
|
|
4587
5019
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4588
|
-
expiredAt?: string | null | undefined;
|
|
4589
|
-
messages?: string[] | undefined;
|
|
4590
|
-
isArchived?: boolean | undefined;
|
|
4591
|
-
tags?: string[] | undefined;
|
|
4592
|
-
user?: string | undefined;
|
|
4593
5020
|
tools?: string[] | {
|
|
4594
5021
|
name: string;
|
|
4595
5022
|
pluginKey: string;
|
|
@@ -4607,7 +5034,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4607
5034
|
toolkit?: boolean | undefined;
|
|
4608
5035
|
}[] | undefined;
|
|
4609
5036
|
model?: string | null | undefined;
|
|
4610
|
-
spec?: string | null | undefined;
|
|
4611
5037
|
instructions?: string | undefined;
|
|
4612
5038
|
fileTokenLimit?: string | number | undefined;
|
|
4613
5039
|
modelLabel?: string | null | undefined;
|
|
@@ -4619,7 +5045,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4619
5045
|
top_p?: number | undefined;
|
|
4620
5046
|
frequency_penalty?: number | undefined;
|
|
4621
5047
|
presence_penalty?: number | undefined;
|
|
4622
|
-
parentMessageId?: string | undefined;
|
|
4623
5048
|
maxOutputTokens?: string | number | null | undefined;
|
|
4624
5049
|
maxContextTokens?: string | number | undefined;
|
|
4625
5050
|
max_tokens?: string | number | undefined;
|
|
@@ -4640,7 +5065,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4640
5065
|
};
|
|
4641
5066
|
}[] | undefined;
|
|
4642
5067
|
resendFiles?: boolean | undefined;
|
|
4643
|
-
file_ids?: string[] | undefined;
|
|
4644
5068
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
4645
5069
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
4646
5070
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -4680,10 +5104,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4680
5104
|
} | null) | undefined;
|
|
4681
5105
|
additional_instructions?: string | undefined;
|
|
4682
5106
|
append_current_datetime?: boolean | undefined;
|
|
4683
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
4684
5107
|
stop?: string[] | undefined;
|
|
4685
|
-
resendImages?: boolean | undefined;
|
|
4686
|
-
chatGptLabel?: string | null | undefined;
|
|
4687
5108
|
presetId?: string | null | undefined;
|
|
4688
5109
|
defaultPreset?: boolean | undefined;
|
|
4689
5110
|
order?: number | undefined;
|
|
@@ -4709,14 +5130,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4709
5130
|
endpoint: string | null;
|
|
4710
5131
|
conversationId?: string | null | undefined;
|
|
4711
5132
|
title?: string | null | undefined;
|
|
4712
|
-
iconURL?: string | null | undefined;
|
|
4713
|
-
greeting?: string | undefined;
|
|
4714
5133
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4715
|
-
expiredAt?: string | null | undefined;
|
|
4716
|
-
messages?: string[] | undefined;
|
|
4717
|
-
isArchived?: boolean | undefined;
|
|
4718
|
-
tags?: string[] | undefined;
|
|
4719
|
-
user?: string | undefined;
|
|
4720
5134
|
tools?: string[] | {
|
|
4721
5135
|
name: string;
|
|
4722
5136
|
pluginKey: string;
|
|
@@ -4734,7 +5148,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4734
5148
|
toolkit?: boolean | undefined;
|
|
4735
5149
|
}[] | undefined;
|
|
4736
5150
|
model?: string | null | undefined;
|
|
4737
|
-
spec?: string | null | undefined;
|
|
4738
5151
|
instructions?: string | undefined;
|
|
4739
5152
|
fileTokenLimit?: number | undefined;
|
|
4740
5153
|
modelLabel?: string | null | undefined;
|
|
@@ -4746,7 +5159,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4746
5159
|
top_p?: number | undefined;
|
|
4747
5160
|
frequency_penalty?: number | undefined;
|
|
4748
5161
|
presence_penalty?: number | undefined;
|
|
4749
|
-
parentMessageId?: string | undefined;
|
|
4750
5162
|
maxOutputTokens?: number | null | undefined;
|
|
4751
5163
|
maxContextTokens?: number | undefined;
|
|
4752
5164
|
max_tokens?: number | undefined;
|
|
@@ -4767,7 +5179,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4767
5179
|
};
|
|
4768
5180
|
}[] | undefined;
|
|
4769
5181
|
resendFiles?: boolean | undefined;
|
|
4770
|
-
file_ids?: string[] | undefined;
|
|
4771
5182
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
4772
5183
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
4773
5184
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -4807,10 +5218,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4807
5218
|
} | null) | undefined;
|
|
4808
5219
|
additional_instructions?: string | undefined;
|
|
4809
5220
|
append_current_datetime?: boolean | undefined;
|
|
4810
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
4811
5221
|
stop?: string[] | undefined;
|
|
4812
|
-
resendImages?: boolean | undefined;
|
|
4813
|
-
chatGptLabel?: string | null | undefined;
|
|
4814
5222
|
presetId?: string | null | undefined;
|
|
4815
5223
|
defaultPreset?: boolean | undefined;
|
|
4816
5224
|
order?: number | undefined;
|
|
@@ -4836,14 +5244,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4836
5244
|
endpoint: string | null;
|
|
4837
5245
|
conversationId?: string | null | undefined;
|
|
4838
5246
|
title?: string | null | undefined;
|
|
4839
|
-
iconURL?: string | null | undefined;
|
|
4840
|
-
greeting?: string | undefined;
|
|
4841
5247
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4842
|
-
expiredAt?: string | null | undefined;
|
|
4843
|
-
messages?: string[] | undefined;
|
|
4844
|
-
isArchived?: boolean | undefined;
|
|
4845
|
-
tags?: string[] | undefined;
|
|
4846
|
-
user?: string | undefined;
|
|
4847
5248
|
tools?: string[] | {
|
|
4848
5249
|
name: string;
|
|
4849
5250
|
pluginKey: string;
|
|
@@ -4861,7 +5262,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4861
5262
|
toolkit?: boolean | undefined;
|
|
4862
5263
|
}[] | undefined;
|
|
4863
5264
|
model?: string | null | undefined;
|
|
4864
|
-
spec?: string | null | undefined;
|
|
4865
5265
|
instructions?: string | undefined;
|
|
4866
5266
|
fileTokenLimit?: string | number | undefined;
|
|
4867
5267
|
modelLabel?: string | null | undefined;
|
|
@@ -4873,7 +5273,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4873
5273
|
top_p?: number | undefined;
|
|
4874
5274
|
frequency_penalty?: number | undefined;
|
|
4875
5275
|
presence_penalty?: number | undefined;
|
|
4876
|
-
parentMessageId?: string | undefined;
|
|
4877
5276
|
maxOutputTokens?: string | number | null | undefined;
|
|
4878
5277
|
maxContextTokens?: string | number | undefined;
|
|
4879
5278
|
max_tokens?: string | number | undefined;
|
|
@@ -4894,7 +5293,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4894
5293
|
};
|
|
4895
5294
|
}[] | undefined;
|
|
4896
5295
|
resendFiles?: boolean | undefined;
|
|
4897
|
-
file_ids?: string[] | undefined;
|
|
4898
5296
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
4899
5297
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
4900
5298
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -4934,10 +5332,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4934
5332
|
} | null) | undefined;
|
|
4935
5333
|
additional_instructions?: string | undefined;
|
|
4936
5334
|
append_current_datetime?: boolean | undefined;
|
|
4937
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
4938
5335
|
stop?: string[] | undefined;
|
|
4939
|
-
resendImages?: boolean | undefined;
|
|
4940
|
-
chatGptLabel?: string | null | undefined;
|
|
4941
5336
|
presetId?: string | null | undefined;
|
|
4942
5337
|
defaultPreset?: boolean | undefined;
|
|
4943
5338
|
order?: number | undefined;
|
|
@@ -4968,14 +5363,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4968
5363
|
endpoint: string | null;
|
|
4969
5364
|
conversationId?: string | null | undefined;
|
|
4970
5365
|
title?: string | null | undefined;
|
|
4971
|
-
iconURL?: string | null | undefined;
|
|
4972
|
-
greeting?: string | undefined;
|
|
4973
5366
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4974
|
-
expiredAt?: string | null | undefined;
|
|
4975
|
-
messages?: string[] | undefined;
|
|
4976
|
-
isArchived?: boolean | undefined;
|
|
4977
|
-
tags?: string[] | undefined;
|
|
4978
|
-
user?: string | undefined;
|
|
4979
5367
|
tools?: string[] | {
|
|
4980
5368
|
name: string;
|
|
4981
5369
|
pluginKey: string;
|
|
@@ -4993,7 +5381,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4993
5381
|
toolkit?: boolean | undefined;
|
|
4994
5382
|
}[] | undefined;
|
|
4995
5383
|
model?: string | null | undefined;
|
|
4996
|
-
spec?: string | null | undefined;
|
|
4997
5384
|
instructions?: string | undefined;
|
|
4998
5385
|
fileTokenLimit?: number | undefined;
|
|
4999
5386
|
modelLabel?: string | null | undefined;
|
|
@@ -5005,7 +5392,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5005
5392
|
top_p?: number | undefined;
|
|
5006
5393
|
frequency_penalty?: number | undefined;
|
|
5007
5394
|
presence_penalty?: number | undefined;
|
|
5008
|
-
parentMessageId?: string | undefined;
|
|
5009
5395
|
maxOutputTokens?: number | null | undefined;
|
|
5010
5396
|
maxContextTokens?: number | undefined;
|
|
5011
5397
|
max_tokens?: number | undefined;
|
|
@@ -5026,7 +5412,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5026
5412
|
};
|
|
5027
5413
|
}[] | undefined;
|
|
5028
5414
|
resendFiles?: boolean | undefined;
|
|
5029
|
-
file_ids?: string[] | undefined;
|
|
5030
5415
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
5031
5416
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
5032
5417
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -5066,10 +5451,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5066
5451
|
} | null) | undefined;
|
|
5067
5452
|
additional_instructions?: string | undefined;
|
|
5068
5453
|
append_current_datetime?: boolean | undefined;
|
|
5069
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
5070
5454
|
stop?: string[] | undefined;
|
|
5071
|
-
resendImages?: boolean | undefined;
|
|
5072
|
-
chatGptLabel?: string | null | undefined;
|
|
5073
5455
|
presetId?: string | null | undefined;
|
|
5074
5456
|
defaultPreset?: boolean | undefined;
|
|
5075
5457
|
order?: number | undefined;
|
|
@@ -5098,14 +5480,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5098
5480
|
endpoint: string | null;
|
|
5099
5481
|
conversationId?: string | null | undefined;
|
|
5100
5482
|
title?: string | null | undefined;
|
|
5101
|
-
iconURL?: string | null | undefined;
|
|
5102
|
-
greeting?: string | undefined;
|
|
5103
5483
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5104
|
-
expiredAt?: string | null | undefined;
|
|
5105
|
-
messages?: string[] | undefined;
|
|
5106
|
-
isArchived?: boolean | undefined;
|
|
5107
|
-
tags?: string[] | undefined;
|
|
5108
|
-
user?: string | undefined;
|
|
5109
5484
|
tools?: string[] | {
|
|
5110
5485
|
name: string;
|
|
5111
5486
|
pluginKey: string;
|
|
@@ -5123,7 +5498,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5123
5498
|
toolkit?: boolean | undefined;
|
|
5124
5499
|
}[] | undefined;
|
|
5125
5500
|
model?: string | null | undefined;
|
|
5126
|
-
spec?: string | null | undefined;
|
|
5127
5501
|
instructions?: string | undefined;
|
|
5128
5502
|
fileTokenLimit?: string | number | undefined;
|
|
5129
5503
|
modelLabel?: string | null | undefined;
|
|
@@ -5135,7 +5509,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5135
5509
|
top_p?: number | undefined;
|
|
5136
5510
|
frequency_penalty?: number | undefined;
|
|
5137
5511
|
presence_penalty?: number | undefined;
|
|
5138
|
-
parentMessageId?: string | undefined;
|
|
5139
5512
|
maxOutputTokens?: string | number | null | undefined;
|
|
5140
5513
|
maxContextTokens?: string | number | undefined;
|
|
5141
5514
|
max_tokens?: string | number | undefined;
|
|
@@ -5156,7 +5529,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5156
5529
|
};
|
|
5157
5530
|
}[] | undefined;
|
|
5158
5531
|
resendFiles?: boolean | undefined;
|
|
5159
|
-
file_ids?: string[] | undefined;
|
|
5160
5532
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
5161
5533
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
5162
5534
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -5196,10 +5568,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5196
5568
|
} | null) | undefined;
|
|
5197
5569
|
additional_instructions?: string | undefined;
|
|
5198
5570
|
append_current_datetime?: boolean | undefined;
|
|
5199
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
5200
5571
|
stop?: string[] | undefined;
|
|
5201
|
-
resendImages?: boolean | undefined;
|
|
5202
|
-
chatGptLabel?: string | null | undefined;
|
|
5203
5572
|
presetId?: string | null | undefined;
|
|
5204
5573
|
defaultPreset?: boolean | undefined;
|
|
5205
5574
|
order?: number | undefined;
|
|
@@ -5224,7 +5593,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5224
5593
|
addedEndpoints?: string[] | undefined;
|
|
5225
5594
|
}>>;
|
|
5226
5595
|
endpoints: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
5227
|
-
all: z.ZodOptional<z.ZodObject<{
|
|
5596
|
+
all: z.ZodOptional<z.ZodObject<Omit<{
|
|
5228
5597
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
5229
5598
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
5230
5599
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -5235,8 +5604,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5235
5604
|
titlePromptTemplate: z.ZodOptional<z.ZodString>;
|
|
5236
5605
|
/** Maximum characters allowed in a single tool result before truncation. */
|
|
5237
5606
|
maxToolResultChars: z.ZodOptional<z.ZodNumber>;
|
|
5238
|
-
}, "strip", z.ZodTypeAny, {
|
|
5239
|
-
baseURL?: string | undefined;
|
|
5607
|
+
}, "baseURL">, "strip", z.ZodTypeAny, {
|
|
5240
5608
|
streamRate?: number | undefined;
|
|
5241
5609
|
titlePrompt?: string | undefined;
|
|
5242
5610
|
titleModel?: string | undefined;
|
|
@@ -5246,7 +5614,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5246
5614
|
titlePromptTemplate?: string | undefined;
|
|
5247
5615
|
maxToolResultChars?: number | undefined;
|
|
5248
5616
|
}, {
|
|
5249
|
-
baseURL?: string | undefined;
|
|
5250
5617
|
streamRate?: number | undefined;
|
|
5251
5618
|
titlePrompt?: string | undefined;
|
|
5252
5619
|
titleModel?: string | undefined;
|
|
@@ -5481,7 +5848,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5481
5848
|
dropParams?: string[] | undefined;
|
|
5482
5849
|
additionalHeaders?: Record<string, any> | undefined;
|
|
5483
5850
|
}>>, "many">;
|
|
5484
|
-
plugins: z.ZodOptional<z.ZodBoolean>;
|
|
5485
5851
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
5486
5852
|
}, "strip", z.ZodTypeAny, {
|
|
5487
5853
|
groups: ({
|
|
@@ -5504,7 +5870,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5504
5870
|
additionalHeaders?: Record<string, any> | undefined;
|
|
5505
5871
|
})[];
|
|
5506
5872
|
assistants?: boolean | undefined;
|
|
5507
|
-
plugins?: boolean | undefined;
|
|
5508
5873
|
}, {
|
|
5509
5874
|
groups: ({
|
|
5510
5875
|
group: string;
|
|
@@ -5526,7 +5891,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5526
5891
|
additionalHeaders?: Record<string, any> | undefined;
|
|
5527
5892
|
})[];
|
|
5528
5893
|
assistants?: boolean | undefined;
|
|
5529
|
-
plugins?: boolean | undefined;
|
|
5530
5894
|
}>, z.ZodObject<{
|
|
5531
5895
|
streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5532
5896
|
titlePrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5534,9 +5898,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5534
5898
|
titleConvo: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5535
5899
|
titleMethod: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"completion">, z.ZodLiteral<"functions">, z.ZodLiteral<"structured">]>>>;
|
|
5536
5900
|
titlePromptTemplate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5537
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5538
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5539
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5540
5901
|
}, "strip", z.ZodTypeAny, {
|
|
5541
5902
|
streamRate?: number | undefined;
|
|
5542
5903
|
titlePrompt?: string | undefined;
|
|
@@ -5544,9 +5905,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5544
5905
|
titleConvo?: boolean | undefined;
|
|
5545
5906
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
5546
5907
|
titlePromptTemplate?: string | undefined;
|
|
5547
|
-
summarize?: boolean | undefined;
|
|
5548
|
-
summaryModel?: string | undefined;
|
|
5549
|
-
customOrder?: number | undefined;
|
|
5550
5908
|
}, {
|
|
5551
5909
|
streamRate?: number | undefined;
|
|
5552
5910
|
titlePrompt?: string | undefined;
|
|
@@ -5554,9 +5912,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5554
5912
|
titleConvo?: boolean | undefined;
|
|
5555
5913
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
5556
5914
|
titlePromptTemplate?: string | undefined;
|
|
5557
|
-
summarize?: boolean | undefined;
|
|
5558
|
-
summaryModel?: string | undefined;
|
|
5559
|
-
customOrder?: number | undefined;
|
|
5560
5915
|
}>>>;
|
|
5561
5916
|
azureAssistants: z.ZodOptional<z.ZodObject<{
|
|
5562
5917
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5778,7 +6133,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5778
6133
|
retrievalModels?: string[] | undefined;
|
|
5779
6134
|
capabilities?: Capabilities[] | undefined;
|
|
5780
6135
|
}>>;
|
|
5781
|
-
agents: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
6136
|
+
agents: z.ZodOptional<z.ZodDefault<z.ZodObject<Omit<{
|
|
5782
6137
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
5783
6138
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
5784
6139
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -5789,7 +6144,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5789
6144
|
titlePromptTemplate: z.ZodOptional<z.ZodString>;
|
|
5790
6145
|
/** Maximum characters allowed in a single tool result before truncation. */
|
|
5791
6146
|
maxToolResultChars: z.ZodOptional<z.ZodNumber>;
|
|
5792
|
-
} & {
|
|
6147
|
+
}, "baseURL"> & {
|
|
5793
6148
|
recursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
5794
6149
|
disableBuilder: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5795
6150
|
maxRecursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5804,7 +6159,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5804
6159
|
maxCitations: number;
|
|
5805
6160
|
maxCitationsPerFile: number;
|
|
5806
6161
|
minRelevanceScore: number;
|
|
5807
|
-
baseURL?: string | undefined;
|
|
5808
6162
|
streamRate?: number | undefined;
|
|
5809
6163
|
titlePrompt?: string | undefined;
|
|
5810
6164
|
titleModel?: string | undefined;
|
|
@@ -5817,7 +6171,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5817
6171
|
maxRecursionLimit?: number | undefined;
|
|
5818
6172
|
allowedProviders?: string[] | undefined;
|
|
5819
6173
|
}, {
|
|
5820
|
-
baseURL?: string | undefined;
|
|
5821
6174
|
streamRate?: number | undefined;
|
|
5822
6175
|
titlePrompt?: string | undefined;
|
|
5823
6176
|
titleModel?: string | undefined;
|
|
@@ -5875,8 +6228,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5875
6228
|
fetch?: boolean | undefined;
|
|
5876
6229
|
userIdQuery?: boolean | undefined;
|
|
5877
6230
|
}>>;
|
|
5878
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5879
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5880
6231
|
iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5881
6232
|
modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5882
6233
|
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
@@ -5884,15 +6235,187 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5884
6235
|
dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
5885
6236
|
customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
5886
6237
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
5887
|
-
paramDefinitions: z.ZodOptional<z.ZodArray<z.
|
|
6238
|
+
paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6239
|
+
key: z.ZodString;
|
|
6240
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6241
|
+
type: z.ZodOptional<z.ZodNativeEnum<typeof SettingTypes>>;
|
|
6242
|
+
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
6243
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
6244
|
+
showDefault: z.ZodOptional<z.ZodBoolean>;
|
|
6245
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6246
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
6247
|
+
min: z.ZodNumber;
|
|
6248
|
+
max: z.ZodNumber;
|
|
6249
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
6250
|
+
}, "strip", z.ZodTypeAny, {
|
|
6251
|
+
min: number;
|
|
6252
|
+
max: number;
|
|
6253
|
+
step?: number | undefined;
|
|
6254
|
+
}, {
|
|
6255
|
+
min: number;
|
|
6256
|
+
max: number;
|
|
6257
|
+
step?: number | undefined;
|
|
6258
|
+
}>>;
|
|
6259
|
+
enumMappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString]>>>;
|
|
6260
|
+
component: z.ZodOptional<z.ZodNativeEnum<typeof ComponentTypes>>;
|
|
6261
|
+
optionType: z.ZodOptional<z.ZodNativeEnum<typeof OptionTypes>>;
|
|
6262
|
+
columnSpan: z.ZodOptional<z.ZodNumber>;
|
|
6263
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
6264
|
+
label: z.ZodOptional<z.ZodString>;
|
|
6265
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
6266
|
+
labelCode: z.ZodOptional<z.ZodBoolean>;
|
|
6267
|
+
placeholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
6268
|
+
descriptionCode: z.ZodOptional<z.ZodBoolean>;
|
|
6269
|
+
minText: z.ZodOptional<z.ZodNumber>;
|
|
6270
|
+
maxText: z.ZodOptional<z.ZodNumber>;
|
|
6271
|
+
minTags: z.ZodOptional<z.ZodNumber>;
|
|
6272
|
+
maxTags: z.ZodOptional<z.ZodNumber>;
|
|
6273
|
+
includeInput: z.ZodOptional<z.ZodBoolean>;
|
|
6274
|
+
descriptionSide: z.ZodOptional<z.ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
6275
|
+
searchPlaceholder: z.ZodOptional<z.ZodString>;
|
|
6276
|
+
selectPlaceholder: z.ZodOptional<z.ZodString>;
|
|
6277
|
+
searchPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
6278
|
+
selectPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
6279
|
+
}, "strip", z.ZodTypeAny, {
|
|
6280
|
+
key: string;
|
|
6281
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6282
|
+
options?: string[] | undefined;
|
|
6283
|
+
type?: SettingTypes | undefined;
|
|
6284
|
+
description?: string | undefined;
|
|
6285
|
+
placeholder?: string | undefined;
|
|
6286
|
+
label?: string | undefined;
|
|
6287
|
+
showLabel?: boolean | undefined;
|
|
6288
|
+
showDefault?: boolean | undefined;
|
|
6289
|
+
range?: {
|
|
6290
|
+
min: number;
|
|
6291
|
+
max: number;
|
|
6292
|
+
step?: number | undefined;
|
|
6293
|
+
} | undefined;
|
|
6294
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6295
|
+
component?: ComponentTypes | undefined;
|
|
6296
|
+
optionType?: OptionTypes | undefined;
|
|
6297
|
+
columnSpan?: number | undefined;
|
|
6298
|
+
columns?: number | undefined;
|
|
6299
|
+
labelCode?: boolean | undefined;
|
|
6300
|
+
placeholderCode?: boolean | undefined;
|
|
6301
|
+
descriptionCode?: boolean | undefined;
|
|
6302
|
+
minText?: number | undefined;
|
|
6303
|
+
maxText?: number | undefined;
|
|
6304
|
+
minTags?: number | undefined;
|
|
6305
|
+
maxTags?: number | undefined;
|
|
6306
|
+
includeInput?: boolean | undefined;
|
|
6307
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6308
|
+
searchPlaceholder?: string | undefined;
|
|
6309
|
+
selectPlaceholder?: string | undefined;
|
|
6310
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6311
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6312
|
+
}, {
|
|
6313
|
+
key: string;
|
|
6314
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6315
|
+
options?: string[] | undefined;
|
|
6316
|
+
type?: SettingTypes | undefined;
|
|
6317
|
+
description?: string | undefined;
|
|
6318
|
+
placeholder?: string | undefined;
|
|
6319
|
+
label?: string | undefined;
|
|
6320
|
+
showLabel?: boolean | undefined;
|
|
6321
|
+
showDefault?: boolean | undefined;
|
|
6322
|
+
range?: {
|
|
6323
|
+
min: number;
|
|
6324
|
+
max: number;
|
|
6325
|
+
step?: number | undefined;
|
|
6326
|
+
} | undefined;
|
|
6327
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6328
|
+
component?: ComponentTypes | undefined;
|
|
6329
|
+
optionType?: OptionTypes | undefined;
|
|
6330
|
+
columnSpan?: number | undefined;
|
|
6331
|
+
columns?: number | undefined;
|
|
6332
|
+
labelCode?: boolean | undefined;
|
|
6333
|
+
placeholderCode?: boolean | undefined;
|
|
6334
|
+
descriptionCode?: boolean | undefined;
|
|
6335
|
+
minText?: number | undefined;
|
|
6336
|
+
maxText?: number | undefined;
|
|
6337
|
+
minTags?: number | undefined;
|
|
6338
|
+
maxTags?: number | undefined;
|
|
6339
|
+
includeInput?: boolean | undefined;
|
|
6340
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6341
|
+
searchPlaceholder?: string | undefined;
|
|
6342
|
+
selectPlaceholder?: string | undefined;
|
|
6343
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6344
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6345
|
+
}>, "many">>;
|
|
5888
6346
|
}, "strict", z.ZodTypeAny, {
|
|
5889
6347
|
defaultParamsEndpoint: string;
|
|
5890
|
-
paramDefinitions?:
|
|
6348
|
+
paramDefinitions?: {
|
|
6349
|
+
key: string;
|
|
6350
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6351
|
+
options?: string[] | undefined;
|
|
6352
|
+
type?: SettingTypes | undefined;
|
|
6353
|
+
description?: string | undefined;
|
|
6354
|
+
placeholder?: string | undefined;
|
|
6355
|
+
label?: string | undefined;
|
|
6356
|
+
showLabel?: boolean | undefined;
|
|
6357
|
+
showDefault?: boolean | undefined;
|
|
6358
|
+
range?: {
|
|
6359
|
+
min: number;
|
|
6360
|
+
max: number;
|
|
6361
|
+
step?: number | undefined;
|
|
6362
|
+
} | undefined;
|
|
6363
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6364
|
+
component?: ComponentTypes | undefined;
|
|
6365
|
+
optionType?: OptionTypes | undefined;
|
|
6366
|
+
columnSpan?: number | undefined;
|
|
6367
|
+
columns?: number | undefined;
|
|
6368
|
+
labelCode?: boolean | undefined;
|
|
6369
|
+
placeholderCode?: boolean | undefined;
|
|
6370
|
+
descriptionCode?: boolean | undefined;
|
|
6371
|
+
minText?: number | undefined;
|
|
6372
|
+
maxText?: number | undefined;
|
|
6373
|
+
minTags?: number | undefined;
|
|
6374
|
+
maxTags?: number | undefined;
|
|
6375
|
+
includeInput?: boolean | undefined;
|
|
6376
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6377
|
+
searchPlaceholder?: string | undefined;
|
|
6378
|
+
selectPlaceholder?: string | undefined;
|
|
6379
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6380
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6381
|
+
}[] | undefined;
|
|
5891
6382
|
}, {
|
|
5892
6383
|
defaultParamsEndpoint?: string | undefined;
|
|
5893
|
-
paramDefinitions?:
|
|
6384
|
+
paramDefinitions?: {
|
|
6385
|
+
key: string;
|
|
6386
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6387
|
+
options?: string[] | undefined;
|
|
6388
|
+
type?: SettingTypes | undefined;
|
|
6389
|
+
description?: string | undefined;
|
|
6390
|
+
placeholder?: string | undefined;
|
|
6391
|
+
label?: string | undefined;
|
|
6392
|
+
showLabel?: boolean | undefined;
|
|
6393
|
+
showDefault?: boolean | undefined;
|
|
6394
|
+
range?: {
|
|
6395
|
+
min: number;
|
|
6396
|
+
max: number;
|
|
6397
|
+
step?: number | undefined;
|
|
6398
|
+
} | undefined;
|
|
6399
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6400
|
+
component?: ComponentTypes | undefined;
|
|
6401
|
+
optionType?: OptionTypes | undefined;
|
|
6402
|
+
columnSpan?: number | undefined;
|
|
6403
|
+
columns?: number | undefined;
|
|
6404
|
+
labelCode?: boolean | undefined;
|
|
6405
|
+
placeholderCode?: boolean | undefined;
|
|
6406
|
+
descriptionCode?: boolean | undefined;
|
|
6407
|
+
minText?: number | undefined;
|
|
6408
|
+
maxText?: number | undefined;
|
|
6409
|
+
minTags?: number | undefined;
|
|
6410
|
+
maxTags?: number | undefined;
|
|
6411
|
+
includeInput?: boolean | undefined;
|
|
6412
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6413
|
+
searchPlaceholder?: string | undefined;
|
|
6414
|
+
selectPlaceholder?: string | undefined;
|
|
6415
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6416
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6417
|
+
}[] | undefined;
|
|
5894
6418
|
}>>>;
|
|
5895
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5896
6419
|
directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5897
6420
|
titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5898
6421
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5919,14 +6442,44 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5919
6442
|
} | undefined;
|
|
5920
6443
|
addParams?: Record<string, any> | undefined;
|
|
5921
6444
|
dropParams?: string[] | undefined;
|
|
5922
|
-
summarize?: boolean | undefined;
|
|
5923
|
-
summaryModel?: string | undefined;
|
|
5924
6445
|
modelDisplayLabel?: string | undefined;
|
|
5925
6446
|
customParams?: {
|
|
5926
6447
|
defaultParamsEndpoint: string;
|
|
5927
|
-
paramDefinitions?:
|
|
6448
|
+
paramDefinitions?: {
|
|
6449
|
+
key: string;
|
|
6450
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6451
|
+
options?: string[] | undefined;
|
|
6452
|
+
type?: SettingTypes | undefined;
|
|
6453
|
+
description?: string | undefined;
|
|
6454
|
+
placeholder?: string | undefined;
|
|
6455
|
+
label?: string | undefined;
|
|
6456
|
+
showLabel?: boolean | undefined;
|
|
6457
|
+
showDefault?: boolean | undefined;
|
|
6458
|
+
range?: {
|
|
6459
|
+
min: number;
|
|
6460
|
+
max: number;
|
|
6461
|
+
step?: number | undefined;
|
|
6462
|
+
} | undefined;
|
|
6463
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6464
|
+
component?: ComponentTypes | undefined;
|
|
6465
|
+
optionType?: OptionTypes | undefined;
|
|
6466
|
+
columnSpan?: number | undefined;
|
|
6467
|
+
columns?: number | undefined;
|
|
6468
|
+
labelCode?: boolean | undefined;
|
|
6469
|
+
placeholderCode?: boolean | undefined;
|
|
6470
|
+
descriptionCode?: boolean | undefined;
|
|
6471
|
+
minText?: number | undefined;
|
|
6472
|
+
maxText?: number | undefined;
|
|
6473
|
+
minTags?: number | undefined;
|
|
6474
|
+
maxTags?: number | undefined;
|
|
6475
|
+
includeInput?: boolean | undefined;
|
|
6476
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6477
|
+
searchPlaceholder?: string | undefined;
|
|
6478
|
+
selectPlaceholder?: string | undefined;
|
|
6479
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6480
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6481
|
+
}[] | undefined;
|
|
5928
6482
|
} | undefined;
|
|
5929
|
-
customOrder?: number | undefined;
|
|
5930
6483
|
directEndpoint?: boolean | undefined;
|
|
5931
6484
|
titleMessageRole?: string | undefined;
|
|
5932
6485
|
}, {
|
|
@@ -5953,14 +6506,44 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5953
6506
|
} | undefined;
|
|
5954
6507
|
addParams?: Record<string, any> | undefined;
|
|
5955
6508
|
dropParams?: string[] | undefined;
|
|
5956
|
-
summarize?: boolean | undefined;
|
|
5957
|
-
summaryModel?: string | undefined;
|
|
5958
6509
|
modelDisplayLabel?: string | undefined;
|
|
5959
6510
|
customParams?: {
|
|
5960
6511
|
defaultParamsEndpoint?: string | undefined;
|
|
5961
|
-
paramDefinitions?:
|
|
6512
|
+
paramDefinitions?: {
|
|
6513
|
+
key: string;
|
|
6514
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6515
|
+
options?: string[] | undefined;
|
|
6516
|
+
type?: SettingTypes | undefined;
|
|
6517
|
+
description?: string | undefined;
|
|
6518
|
+
placeholder?: string | undefined;
|
|
6519
|
+
label?: string | undefined;
|
|
6520
|
+
showLabel?: boolean | undefined;
|
|
6521
|
+
showDefault?: boolean | undefined;
|
|
6522
|
+
range?: {
|
|
6523
|
+
min: number;
|
|
6524
|
+
max: number;
|
|
6525
|
+
step?: number | undefined;
|
|
6526
|
+
} | undefined;
|
|
6527
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6528
|
+
component?: ComponentTypes | undefined;
|
|
6529
|
+
optionType?: OptionTypes | undefined;
|
|
6530
|
+
columnSpan?: number | undefined;
|
|
6531
|
+
columns?: number | undefined;
|
|
6532
|
+
labelCode?: boolean | undefined;
|
|
6533
|
+
placeholderCode?: boolean | undefined;
|
|
6534
|
+
descriptionCode?: boolean | undefined;
|
|
6535
|
+
minText?: number | undefined;
|
|
6536
|
+
maxText?: number | undefined;
|
|
6537
|
+
minTags?: number | undefined;
|
|
6538
|
+
maxTags?: number | undefined;
|
|
6539
|
+
includeInput?: boolean | undefined;
|
|
6540
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6541
|
+
searchPlaceholder?: string | undefined;
|
|
6542
|
+
selectPlaceholder?: string | undefined;
|
|
6543
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6544
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6545
|
+
}[] | undefined;
|
|
5962
6546
|
} | undefined;
|
|
5963
|
-
customOrder?: number | undefined;
|
|
5964
6547
|
directEndpoint?: boolean | undefined;
|
|
5965
6548
|
titleMessageRole?: string | undefined;
|
|
5966
6549
|
}>, "many">>>;
|
|
@@ -6028,7 +6611,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6028
6611
|
additionalHeaders?: Record<string, any> | undefined;
|
|
6029
6612
|
})[];
|
|
6030
6613
|
assistants?: boolean | undefined;
|
|
6031
|
-
plugins?: boolean | undefined;
|
|
6032
6614
|
} & {
|
|
6033
6615
|
streamRate?: number | undefined;
|
|
6034
6616
|
titlePrompt?: string | undefined;
|
|
@@ -6036,9 +6618,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6036
6618
|
titleConvo?: boolean | undefined;
|
|
6037
6619
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
6038
6620
|
titlePromptTemplate?: string | undefined;
|
|
6039
|
-
summarize?: boolean | undefined;
|
|
6040
|
-
summaryModel?: string | undefined;
|
|
6041
|
-
customOrder?: number | undefined;
|
|
6042
6621
|
}) | undefined;
|
|
6043
6622
|
openAI?: {
|
|
6044
6623
|
baseURL?: string | undefined;
|
|
@@ -6150,7 +6729,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6150
6729
|
maxCitations: number;
|
|
6151
6730
|
maxCitationsPerFile: number;
|
|
6152
6731
|
minRelevanceScore: number;
|
|
6153
|
-
baseURL?: string | undefined;
|
|
6154
6732
|
streamRate?: number | undefined;
|
|
6155
6733
|
titlePrompt?: string | undefined;
|
|
6156
6734
|
titleModel?: string | undefined;
|
|
@@ -6187,14 +6765,44 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6187
6765
|
} | undefined;
|
|
6188
6766
|
addParams?: Record<string, any> | undefined;
|
|
6189
6767
|
dropParams?: string[] | undefined;
|
|
6190
|
-
summarize?: boolean | undefined;
|
|
6191
|
-
summaryModel?: string | undefined;
|
|
6192
6768
|
modelDisplayLabel?: string | undefined;
|
|
6193
6769
|
customParams?: {
|
|
6194
6770
|
defaultParamsEndpoint: string;
|
|
6195
|
-
paramDefinitions?:
|
|
6771
|
+
paramDefinitions?: {
|
|
6772
|
+
key: string;
|
|
6773
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6774
|
+
options?: string[] | undefined;
|
|
6775
|
+
type?: SettingTypes | undefined;
|
|
6776
|
+
description?: string | undefined;
|
|
6777
|
+
placeholder?: string | undefined;
|
|
6778
|
+
label?: string | undefined;
|
|
6779
|
+
showLabel?: boolean | undefined;
|
|
6780
|
+
showDefault?: boolean | undefined;
|
|
6781
|
+
range?: {
|
|
6782
|
+
min: number;
|
|
6783
|
+
max: number;
|
|
6784
|
+
step?: number | undefined;
|
|
6785
|
+
} | undefined;
|
|
6786
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6787
|
+
component?: ComponentTypes | undefined;
|
|
6788
|
+
optionType?: OptionTypes | undefined;
|
|
6789
|
+
columnSpan?: number | undefined;
|
|
6790
|
+
columns?: number | undefined;
|
|
6791
|
+
labelCode?: boolean | undefined;
|
|
6792
|
+
placeholderCode?: boolean | undefined;
|
|
6793
|
+
descriptionCode?: boolean | undefined;
|
|
6794
|
+
minText?: number | undefined;
|
|
6795
|
+
maxText?: number | undefined;
|
|
6796
|
+
minTags?: number | undefined;
|
|
6797
|
+
maxTags?: number | undefined;
|
|
6798
|
+
includeInput?: boolean | undefined;
|
|
6799
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6800
|
+
searchPlaceholder?: string | undefined;
|
|
6801
|
+
selectPlaceholder?: string | undefined;
|
|
6802
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6803
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6804
|
+
}[] | undefined;
|
|
6196
6805
|
} | undefined;
|
|
6197
|
-
customOrder?: number | undefined;
|
|
6198
6806
|
directEndpoint?: boolean | undefined;
|
|
6199
6807
|
titleMessageRole?: string | undefined;
|
|
6200
6808
|
}[] | undefined;
|
|
@@ -6213,7 +6821,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6213
6821
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
6214
6822
|
} | undefined;
|
|
6215
6823
|
all?: {
|
|
6216
|
-
baseURL?: string | undefined;
|
|
6217
6824
|
streamRate?: number | undefined;
|
|
6218
6825
|
titlePrompt?: string | undefined;
|
|
6219
6826
|
titleModel?: string | undefined;
|
|
@@ -6245,7 +6852,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6245
6852
|
additionalHeaders?: Record<string, any> | undefined;
|
|
6246
6853
|
})[];
|
|
6247
6854
|
assistants?: boolean | undefined;
|
|
6248
|
-
plugins?: boolean | undefined;
|
|
6249
6855
|
} & {
|
|
6250
6856
|
streamRate?: number | undefined;
|
|
6251
6857
|
titlePrompt?: string | undefined;
|
|
@@ -6253,9 +6859,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6253
6859
|
titleConvo?: boolean | undefined;
|
|
6254
6860
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
6255
6861
|
titlePromptTemplate?: string | undefined;
|
|
6256
|
-
summarize?: boolean | undefined;
|
|
6257
|
-
summaryModel?: string | undefined;
|
|
6258
|
-
customOrder?: number | undefined;
|
|
6259
6862
|
}) | undefined;
|
|
6260
6863
|
openAI?: {
|
|
6261
6864
|
baseURL?: string | undefined;
|
|
@@ -6362,7 +6965,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6362
6965
|
capabilities?: Capabilities[] | undefined;
|
|
6363
6966
|
} | undefined;
|
|
6364
6967
|
agents?: {
|
|
6365
|
-
baseURL?: string | undefined;
|
|
6366
6968
|
streamRate?: number | undefined;
|
|
6367
6969
|
titlePrompt?: string | undefined;
|
|
6368
6970
|
titleModel?: string | undefined;
|
|
@@ -6404,14 +7006,44 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6404
7006
|
} | undefined;
|
|
6405
7007
|
addParams?: Record<string, any> | undefined;
|
|
6406
7008
|
dropParams?: string[] | undefined;
|
|
6407
|
-
summarize?: boolean | undefined;
|
|
6408
|
-
summaryModel?: string | undefined;
|
|
6409
7009
|
modelDisplayLabel?: string | undefined;
|
|
6410
7010
|
customParams?: {
|
|
6411
7011
|
defaultParamsEndpoint?: string | undefined;
|
|
6412
|
-
paramDefinitions?:
|
|
7012
|
+
paramDefinitions?: {
|
|
7013
|
+
key: string;
|
|
7014
|
+
default?: string | number | boolean | string[] | undefined;
|
|
7015
|
+
options?: string[] | undefined;
|
|
7016
|
+
type?: SettingTypes | undefined;
|
|
7017
|
+
description?: string | undefined;
|
|
7018
|
+
placeholder?: string | undefined;
|
|
7019
|
+
label?: string | undefined;
|
|
7020
|
+
showLabel?: boolean | undefined;
|
|
7021
|
+
showDefault?: boolean | undefined;
|
|
7022
|
+
range?: {
|
|
7023
|
+
min: number;
|
|
7024
|
+
max: number;
|
|
7025
|
+
step?: number | undefined;
|
|
7026
|
+
} | undefined;
|
|
7027
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
7028
|
+
component?: ComponentTypes | undefined;
|
|
7029
|
+
optionType?: OptionTypes | undefined;
|
|
7030
|
+
columnSpan?: number | undefined;
|
|
7031
|
+
columns?: number | undefined;
|
|
7032
|
+
labelCode?: boolean | undefined;
|
|
7033
|
+
placeholderCode?: boolean | undefined;
|
|
7034
|
+
descriptionCode?: boolean | undefined;
|
|
7035
|
+
minText?: number | undefined;
|
|
7036
|
+
maxText?: number | undefined;
|
|
7037
|
+
minTags?: number | undefined;
|
|
7038
|
+
maxTags?: number | undefined;
|
|
7039
|
+
includeInput?: boolean | undefined;
|
|
7040
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
7041
|
+
searchPlaceholder?: string | undefined;
|
|
7042
|
+
selectPlaceholder?: string | undefined;
|
|
7043
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
7044
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
7045
|
+
}[] | undefined;
|
|
6413
7046
|
} | undefined;
|
|
6414
|
-
customOrder?: number | undefined;
|
|
6415
7047
|
directEndpoint?: boolean | undefined;
|
|
6416
7048
|
titleMessageRole?: string | undefined;
|
|
6417
7049
|
}[] | undefined;
|
|
@@ -6430,7 +7062,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6430
7062
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
6431
7063
|
} | undefined;
|
|
6432
7064
|
all?: {
|
|
6433
|
-
baseURL?: string | undefined;
|
|
6434
7065
|
streamRate?: number | undefined;
|
|
6435
7066
|
titlePrompt?: string | undefined;
|
|
6436
7067
|
titleModel?: string | undefined;
|
|
@@ -6462,7 +7093,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6462
7093
|
additionalHeaders?: Record<string, any> | undefined;
|
|
6463
7094
|
})[];
|
|
6464
7095
|
assistants?: boolean | undefined;
|
|
6465
|
-
plugins?: boolean | undefined;
|
|
6466
7096
|
} & {
|
|
6467
7097
|
streamRate?: number | undefined;
|
|
6468
7098
|
titlePrompt?: string | undefined;
|
|
@@ -6470,9 +7100,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6470
7100
|
titleConvo?: boolean | undefined;
|
|
6471
7101
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
6472
7102
|
titlePromptTemplate?: string | undefined;
|
|
6473
|
-
summarize?: boolean | undefined;
|
|
6474
|
-
summaryModel?: string | undefined;
|
|
6475
|
-
customOrder?: number | undefined;
|
|
6476
7103
|
}) | undefined;
|
|
6477
7104
|
openAI?: {
|
|
6478
7105
|
baseURL?: string | undefined;
|
|
@@ -6584,7 +7211,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6584
7211
|
maxCitations: number;
|
|
6585
7212
|
maxCitationsPerFile: number;
|
|
6586
7213
|
minRelevanceScore: number;
|
|
6587
|
-
baseURL?: string | undefined;
|
|
6588
7214
|
streamRate?: number | undefined;
|
|
6589
7215
|
titlePrompt?: string | undefined;
|
|
6590
7216
|
titleModel?: string | undefined;
|
|
@@ -6621,14 +7247,44 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6621
7247
|
} | undefined;
|
|
6622
7248
|
addParams?: Record<string, any> | undefined;
|
|
6623
7249
|
dropParams?: string[] | undefined;
|
|
6624
|
-
summarize?: boolean | undefined;
|
|
6625
|
-
summaryModel?: string | undefined;
|
|
6626
7250
|
modelDisplayLabel?: string | undefined;
|
|
6627
7251
|
customParams?: {
|
|
6628
7252
|
defaultParamsEndpoint: string;
|
|
6629
|
-
paramDefinitions?:
|
|
7253
|
+
paramDefinitions?: {
|
|
7254
|
+
key: string;
|
|
7255
|
+
default?: string | number | boolean | string[] | undefined;
|
|
7256
|
+
options?: string[] | undefined;
|
|
7257
|
+
type?: SettingTypes | undefined;
|
|
7258
|
+
description?: string | undefined;
|
|
7259
|
+
placeholder?: string | undefined;
|
|
7260
|
+
label?: string | undefined;
|
|
7261
|
+
showLabel?: boolean | undefined;
|
|
7262
|
+
showDefault?: boolean | undefined;
|
|
7263
|
+
range?: {
|
|
7264
|
+
min: number;
|
|
7265
|
+
max: number;
|
|
7266
|
+
step?: number | undefined;
|
|
7267
|
+
} | undefined;
|
|
7268
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
7269
|
+
component?: ComponentTypes | undefined;
|
|
7270
|
+
optionType?: OptionTypes | undefined;
|
|
7271
|
+
columnSpan?: number | undefined;
|
|
7272
|
+
columns?: number | undefined;
|
|
7273
|
+
labelCode?: boolean | undefined;
|
|
7274
|
+
placeholderCode?: boolean | undefined;
|
|
7275
|
+
descriptionCode?: boolean | undefined;
|
|
7276
|
+
minText?: number | undefined;
|
|
7277
|
+
maxText?: number | undefined;
|
|
7278
|
+
minTags?: number | undefined;
|
|
7279
|
+
maxTags?: number | undefined;
|
|
7280
|
+
includeInput?: boolean | undefined;
|
|
7281
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
7282
|
+
searchPlaceholder?: string | undefined;
|
|
7283
|
+
selectPlaceholder?: string | undefined;
|
|
7284
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
7285
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
7286
|
+
}[] | undefined;
|
|
6630
7287
|
} | undefined;
|
|
6631
|
-
customOrder?: number | undefined;
|
|
6632
7288
|
directEndpoint?: boolean | undefined;
|
|
6633
7289
|
titleMessageRole?: string | undefined;
|
|
6634
7290
|
}[] | undefined;
|
|
@@ -6647,7 +7303,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6647
7303
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
6648
7304
|
} | undefined;
|
|
6649
7305
|
all?: {
|
|
6650
|
-
baseURL?: string | undefined;
|
|
6651
7306
|
streamRate?: number | undefined;
|
|
6652
7307
|
titlePrompt?: string | undefined;
|
|
6653
7308
|
titleModel?: string | undefined;
|
|
@@ -6679,7 +7334,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6679
7334
|
additionalHeaders?: Record<string, any> | undefined;
|
|
6680
7335
|
})[];
|
|
6681
7336
|
assistants?: boolean | undefined;
|
|
6682
|
-
plugins?: boolean | undefined;
|
|
6683
7337
|
} & {
|
|
6684
7338
|
streamRate?: number | undefined;
|
|
6685
7339
|
titlePrompt?: string | undefined;
|
|
@@ -6687,9 +7341,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6687
7341
|
titleConvo?: boolean | undefined;
|
|
6688
7342
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
6689
7343
|
titlePromptTemplate?: string | undefined;
|
|
6690
|
-
summarize?: boolean | undefined;
|
|
6691
|
-
summaryModel?: string | undefined;
|
|
6692
|
-
customOrder?: number | undefined;
|
|
6693
7344
|
}) | undefined;
|
|
6694
7345
|
openAI?: {
|
|
6695
7346
|
baseURL?: string | undefined;
|
|
@@ -6796,7 +7447,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6796
7447
|
capabilities?: Capabilities[] | undefined;
|
|
6797
7448
|
} | undefined;
|
|
6798
7449
|
agents?: {
|
|
6799
|
-
baseURL?: string | undefined;
|
|
6800
7450
|
streamRate?: number | undefined;
|
|
6801
7451
|
titlePrompt?: string | undefined;
|
|
6802
7452
|
titleModel?: string | undefined;
|
|
@@ -6838,14 +7488,44 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6838
7488
|
} | undefined;
|
|
6839
7489
|
addParams?: Record<string, any> | undefined;
|
|
6840
7490
|
dropParams?: string[] | undefined;
|
|
6841
|
-
summarize?: boolean | undefined;
|
|
6842
|
-
summaryModel?: string | undefined;
|
|
6843
7491
|
modelDisplayLabel?: string | undefined;
|
|
6844
7492
|
customParams?: {
|
|
6845
7493
|
defaultParamsEndpoint?: string | undefined;
|
|
6846
|
-
paramDefinitions?:
|
|
7494
|
+
paramDefinitions?: {
|
|
7495
|
+
key: string;
|
|
7496
|
+
default?: string | number | boolean | string[] | undefined;
|
|
7497
|
+
options?: string[] | undefined;
|
|
7498
|
+
type?: SettingTypes | undefined;
|
|
7499
|
+
description?: string | undefined;
|
|
7500
|
+
placeholder?: string | undefined;
|
|
7501
|
+
label?: string | undefined;
|
|
7502
|
+
showLabel?: boolean | undefined;
|
|
7503
|
+
showDefault?: boolean | undefined;
|
|
7504
|
+
range?: {
|
|
7505
|
+
min: number;
|
|
7506
|
+
max: number;
|
|
7507
|
+
step?: number | undefined;
|
|
7508
|
+
} | undefined;
|
|
7509
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
7510
|
+
component?: ComponentTypes | undefined;
|
|
7511
|
+
optionType?: OptionTypes | undefined;
|
|
7512
|
+
columnSpan?: number | undefined;
|
|
7513
|
+
columns?: number | undefined;
|
|
7514
|
+
labelCode?: boolean | undefined;
|
|
7515
|
+
placeholderCode?: boolean | undefined;
|
|
7516
|
+
descriptionCode?: boolean | undefined;
|
|
7517
|
+
minText?: number | undefined;
|
|
7518
|
+
maxText?: number | undefined;
|
|
7519
|
+
minTags?: number | undefined;
|
|
7520
|
+
maxTags?: number | undefined;
|
|
7521
|
+
includeInput?: boolean | undefined;
|
|
7522
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
7523
|
+
searchPlaceholder?: string | undefined;
|
|
7524
|
+
selectPlaceholder?: string | undefined;
|
|
7525
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
7526
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
7527
|
+
}[] | undefined;
|
|
6847
7528
|
} | undefined;
|
|
6848
|
-
customOrder?: number | undefined;
|
|
6849
7529
|
directEndpoint?: boolean | undefined;
|
|
6850
7530
|
titleMessageRole?: string | undefined;
|
|
6851
7531
|
}[] | undefined;
|
|
@@ -6864,7 +7544,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6864
7544
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
6865
7545
|
} | undefined;
|
|
6866
7546
|
all?: {
|
|
6867
|
-
baseURL?: string | undefined;
|
|
6868
7547
|
streamRate?: number | undefined;
|
|
6869
7548
|
titlePrompt?: string | undefined;
|
|
6870
7549
|
titleModel?: string | undefined;
|
|
@@ -7039,10 +7718,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7039
7718
|
includedTools?: string[] | undefined;
|
|
7040
7719
|
filteredTools?: string[] | undefined;
|
|
7041
7720
|
mcpServers?: Record<string, {
|
|
7721
|
+
type: "stdio";
|
|
7042
7722
|
command: string;
|
|
7043
7723
|
args: string[];
|
|
7044
7724
|
title?: string | undefined;
|
|
7045
|
-
type?: "stdio" | undefined;
|
|
7046
7725
|
description?: string | undefined;
|
|
7047
7726
|
apiKey?: {
|
|
7048
7727
|
source: "user" | "admin";
|
|
@@ -7080,11 +7759,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7080
7759
|
description: string;
|
|
7081
7760
|
}> | undefined;
|
|
7082
7761
|
env?: Record<string, string> | undefined;
|
|
7083
|
-
stderr?:
|
|
7762
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
7084
7763
|
} | {
|
|
7764
|
+
type: "websocket";
|
|
7085
7765
|
url: string;
|
|
7086
7766
|
title?: string | undefined;
|
|
7087
|
-
type?: "websocket" | undefined;
|
|
7088
7767
|
description?: string | undefined;
|
|
7089
7768
|
apiKey?: {
|
|
7090
7769
|
source: "user" | "admin";
|
|
@@ -7122,9 +7801,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7122
7801
|
description: string;
|
|
7123
7802
|
}> | undefined;
|
|
7124
7803
|
} | {
|
|
7804
|
+
type: "sse";
|
|
7125
7805
|
url: string;
|
|
7126
7806
|
title?: string | undefined;
|
|
7127
|
-
type?: "sse" | undefined;
|
|
7128
7807
|
description?: string | undefined;
|
|
7129
7808
|
apiKey?: {
|
|
7130
7809
|
source: "user" | "admin";
|
|
@@ -7352,7 +8031,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7352
8031
|
additionalHeaders?: Record<string, any> | undefined;
|
|
7353
8032
|
})[];
|
|
7354
8033
|
assistants?: boolean | undefined;
|
|
7355
|
-
plugins?: boolean | undefined;
|
|
7356
8034
|
} & {
|
|
7357
8035
|
streamRate?: number | undefined;
|
|
7358
8036
|
titlePrompt?: string | undefined;
|
|
@@ -7360,9 +8038,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7360
8038
|
titleConvo?: boolean | undefined;
|
|
7361
8039
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
7362
8040
|
titlePromptTemplate?: string | undefined;
|
|
7363
|
-
summarize?: boolean | undefined;
|
|
7364
|
-
summaryModel?: string | undefined;
|
|
7365
|
-
customOrder?: number | undefined;
|
|
7366
8041
|
}) | undefined;
|
|
7367
8042
|
openAI?: {
|
|
7368
8043
|
baseURL?: string | undefined;
|
|
@@ -7474,7 +8149,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7474
8149
|
maxCitations: number;
|
|
7475
8150
|
maxCitationsPerFile: number;
|
|
7476
8151
|
minRelevanceScore: number;
|
|
7477
|
-
baseURL?: string | undefined;
|
|
7478
8152
|
streamRate?: number | undefined;
|
|
7479
8153
|
titlePrompt?: string | undefined;
|
|
7480
8154
|
titleModel?: string | undefined;
|
|
@@ -7511,14 +8185,44 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7511
8185
|
} | undefined;
|
|
7512
8186
|
addParams?: Record<string, any> | undefined;
|
|
7513
8187
|
dropParams?: string[] | undefined;
|
|
7514
|
-
summarize?: boolean | undefined;
|
|
7515
|
-
summaryModel?: string | undefined;
|
|
7516
8188
|
modelDisplayLabel?: string | undefined;
|
|
7517
8189
|
customParams?: {
|
|
7518
8190
|
defaultParamsEndpoint: string;
|
|
7519
|
-
paramDefinitions?:
|
|
8191
|
+
paramDefinitions?: {
|
|
8192
|
+
key: string;
|
|
8193
|
+
default?: string | number | boolean | string[] | undefined;
|
|
8194
|
+
options?: string[] | undefined;
|
|
8195
|
+
type?: SettingTypes | undefined;
|
|
8196
|
+
description?: string | undefined;
|
|
8197
|
+
placeholder?: string | undefined;
|
|
8198
|
+
label?: string | undefined;
|
|
8199
|
+
showLabel?: boolean | undefined;
|
|
8200
|
+
showDefault?: boolean | undefined;
|
|
8201
|
+
range?: {
|
|
8202
|
+
min: number;
|
|
8203
|
+
max: number;
|
|
8204
|
+
step?: number | undefined;
|
|
8205
|
+
} | undefined;
|
|
8206
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
8207
|
+
component?: ComponentTypes | undefined;
|
|
8208
|
+
optionType?: OptionTypes | undefined;
|
|
8209
|
+
columnSpan?: number | undefined;
|
|
8210
|
+
columns?: number | undefined;
|
|
8211
|
+
labelCode?: boolean | undefined;
|
|
8212
|
+
placeholderCode?: boolean | undefined;
|
|
8213
|
+
descriptionCode?: boolean | undefined;
|
|
8214
|
+
minText?: number | undefined;
|
|
8215
|
+
maxText?: number | undefined;
|
|
8216
|
+
minTags?: number | undefined;
|
|
8217
|
+
maxTags?: number | undefined;
|
|
8218
|
+
includeInput?: boolean | undefined;
|
|
8219
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
8220
|
+
searchPlaceholder?: string | undefined;
|
|
8221
|
+
selectPlaceholder?: string | undefined;
|
|
8222
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
8223
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
8224
|
+
}[] | undefined;
|
|
7520
8225
|
} | undefined;
|
|
7521
|
-
customOrder?: number | undefined;
|
|
7522
8226
|
directEndpoint?: boolean | undefined;
|
|
7523
8227
|
titleMessageRole?: string | undefined;
|
|
7524
8228
|
}[] | undefined;
|
|
@@ -7537,7 +8241,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7537
8241
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
7538
8242
|
} | undefined;
|
|
7539
8243
|
all?: {
|
|
7540
|
-
baseURL?: string | undefined;
|
|
7541
8244
|
streamRate?: number | undefined;
|
|
7542
8245
|
titlePrompt?: string | undefined;
|
|
7543
8246
|
titleModel?: string | undefined;
|
|
@@ -7586,14 +8289,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7586
8289
|
endpoint: string | null;
|
|
7587
8290
|
conversationId?: string | null | undefined;
|
|
7588
8291
|
title?: string | null | undefined;
|
|
7589
|
-
iconURL?: string | null | undefined;
|
|
7590
|
-
greeting?: string | undefined;
|
|
7591
8292
|
endpointType?: EModelEndpoint | null | undefined;
|
|
7592
|
-
expiredAt?: string | null | undefined;
|
|
7593
|
-
messages?: string[] | undefined;
|
|
7594
|
-
isArchived?: boolean | undefined;
|
|
7595
|
-
tags?: string[] | undefined;
|
|
7596
|
-
user?: string | undefined;
|
|
7597
8293
|
tools?: string[] | {
|
|
7598
8294
|
name: string;
|
|
7599
8295
|
pluginKey: string;
|
|
@@ -7611,7 +8307,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7611
8307
|
toolkit?: boolean | undefined;
|
|
7612
8308
|
}[] | undefined;
|
|
7613
8309
|
model?: string | null | undefined;
|
|
7614
|
-
spec?: string | null | undefined;
|
|
7615
8310
|
instructions?: string | undefined;
|
|
7616
8311
|
fileTokenLimit?: number | undefined;
|
|
7617
8312
|
modelLabel?: string | null | undefined;
|
|
@@ -7623,7 +8318,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7623
8318
|
top_p?: number | undefined;
|
|
7624
8319
|
frequency_penalty?: number | undefined;
|
|
7625
8320
|
presence_penalty?: number | undefined;
|
|
7626
|
-
parentMessageId?: string | undefined;
|
|
7627
8321
|
maxOutputTokens?: number | null | undefined;
|
|
7628
8322
|
maxContextTokens?: number | undefined;
|
|
7629
8323
|
max_tokens?: number | undefined;
|
|
@@ -7644,7 +8338,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7644
8338
|
};
|
|
7645
8339
|
}[] | undefined;
|
|
7646
8340
|
resendFiles?: boolean | undefined;
|
|
7647
|
-
file_ids?: string[] | undefined;
|
|
7648
8341
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
7649
8342
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
7650
8343
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -7684,10 +8377,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7684
8377
|
} | null) | undefined;
|
|
7685
8378
|
additional_instructions?: string | undefined;
|
|
7686
8379
|
append_current_datetime?: boolean | undefined;
|
|
7687
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
7688
8380
|
stop?: string[] | undefined;
|
|
7689
|
-
resendImages?: boolean | undefined;
|
|
7690
|
-
chatGptLabel?: string | null | undefined;
|
|
7691
8381
|
presetId?: string | null | undefined;
|
|
7692
8382
|
defaultPreset?: boolean | undefined;
|
|
7693
8383
|
order?: number | undefined;
|
|
@@ -7844,7 +8534,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7844
8534
|
description: string;
|
|
7845
8535
|
}> | undefined;
|
|
7846
8536
|
env?: Record<string, string> | undefined;
|
|
7847
|
-
stderr?:
|
|
8537
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
7848
8538
|
} | {
|
|
7849
8539
|
url: string;
|
|
7850
8540
|
title?: string | undefined;
|
|
@@ -8186,7 +8876,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8186
8876
|
additionalHeaders?: Record<string, any> | undefined;
|
|
8187
8877
|
})[];
|
|
8188
8878
|
assistants?: boolean | undefined;
|
|
8189
|
-
plugins?: boolean | undefined;
|
|
8190
8879
|
} & {
|
|
8191
8880
|
streamRate?: number | undefined;
|
|
8192
8881
|
titlePrompt?: string | undefined;
|
|
@@ -8194,9 +8883,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8194
8883
|
titleConvo?: boolean | undefined;
|
|
8195
8884
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
8196
8885
|
titlePromptTemplate?: string | undefined;
|
|
8197
|
-
summarize?: boolean | undefined;
|
|
8198
|
-
summaryModel?: string | undefined;
|
|
8199
|
-
customOrder?: number | undefined;
|
|
8200
8886
|
}) | undefined;
|
|
8201
8887
|
openAI?: {
|
|
8202
8888
|
baseURL?: string | undefined;
|
|
@@ -8303,7 +8989,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8303
8989
|
capabilities?: Capabilities[] | undefined;
|
|
8304
8990
|
} | undefined;
|
|
8305
8991
|
agents?: {
|
|
8306
|
-
baseURL?: string | undefined;
|
|
8307
8992
|
streamRate?: number | undefined;
|
|
8308
8993
|
titlePrompt?: string | undefined;
|
|
8309
8994
|
titleModel?: string | undefined;
|
|
@@ -8345,14 +9030,44 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8345
9030
|
} | undefined;
|
|
8346
9031
|
addParams?: Record<string, any> | undefined;
|
|
8347
9032
|
dropParams?: string[] | undefined;
|
|
8348
|
-
summarize?: boolean | undefined;
|
|
8349
|
-
summaryModel?: string | undefined;
|
|
8350
9033
|
modelDisplayLabel?: string | undefined;
|
|
8351
9034
|
customParams?: {
|
|
8352
9035
|
defaultParamsEndpoint?: string | undefined;
|
|
8353
|
-
paramDefinitions?:
|
|
9036
|
+
paramDefinitions?: {
|
|
9037
|
+
key: string;
|
|
9038
|
+
default?: string | number | boolean | string[] | undefined;
|
|
9039
|
+
options?: string[] | undefined;
|
|
9040
|
+
type?: SettingTypes | undefined;
|
|
9041
|
+
description?: string | undefined;
|
|
9042
|
+
placeholder?: string | undefined;
|
|
9043
|
+
label?: string | undefined;
|
|
9044
|
+
showLabel?: boolean | undefined;
|
|
9045
|
+
showDefault?: boolean | undefined;
|
|
9046
|
+
range?: {
|
|
9047
|
+
min: number;
|
|
9048
|
+
max: number;
|
|
9049
|
+
step?: number | undefined;
|
|
9050
|
+
} | undefined;
|
|
9051
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
9052
|
+
component?: ComponentTypes | undefined;
|
|
9053
|
+
optionType?: OptionTypes | undefined;
|
|
9054
|
+
columnSpan?: number | undefined;
|
|
9055
|
+
columns?: number | undefined;
|
|
9056
|
+
labelCode?: boolean | undefined;
|
|
9057
|
+
placeholderCode?: boolean | undefined;
|
|
9058
|
+
descriptionCode?: boolean | undefined;
|
|
9059
|
+
minText?: number | undefined;
|
|
9060
|
+
maxText?: number | undefined;
|
|
9061
|
+
minTags?: number | undefined;
|
|
9062
|
+
maxTags?: number | undefined;
|
|
9063
|
+
includeInput?: boolean | undefined;
|
|
9064
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
9065
|
+
searchPlaceholder?: string | undefined;
|
|
9066
|
+
selectPlaceholder?: string | undefined;
|
|
9067
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
9068
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
9069
|
+
}[] | undefined;
|
|
8354
9070
|
} | undefined;
|
|
8355
|
-
customOrder?: number | undefined;
|
|
8356
9071
|
directEndpoint?: boolean | undefined;
|
|
8357
9072
|
titleMessageRole?: string | undefined;
|
|
8358
9073
|
}[] | undefined;
|
|
@@ -8371,7 +9086,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8371
9086
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
8372
9087
|
} | undefined;
|
|
8373
9088
|
all?: {
|
|
8374
|
-
baseURL?: string | undefined;
|
|
8375
9089
|
streamRate?: number | undefined;
|
|
8376
9090
|
titlePrompt?: string | undefined;
|
|
8377
9091
|
titleModel?: string | undefined;
|
|
@@ -8418,14 +9132,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8418
9132
|
endpoint: string | null;
|
|
8419
9133
|
conversationId?: string | null | undefined;
|
|
8420
9134
|
title?: string | null | undefined;
|
|
8421
|
-
iconURL?: string | null | undefined;
|
|
8422
|
-
greeting?: string | undefined;
|
|
8423
9135
|
endpointType?: EModelEndpoint | null | undefined;
|
|
8424
|
-
expiredAt?: string | null | undefined;
|
|
8425
|
-
messages?: string[] | undefined;
|
|
8426
|
-
isArchived?: boolean | undefined;
|
|
8427
|
-
tags?: string[] | undefined;
|
|
8428
|
-
user?: string | undefined;
|
|
8429
9136
|
tools?: string[] | {
|
|
8430
9137
|
name: string;
|
|
8431
9138
|
pluginKey: string;
|
|
@@ -8443,7 +9150,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8443
9150
|
toolkit?: boolean | undefined;
|
|
8444
9151
|
}[] | undefined;
|
|
8445
9152
|
model?: string | null | undefined;
|
|
8446
|
-
spec?: string | null | undefined;
|
|
8447
9153
|
instructions?: string | undefined;
|
|
8448
9154
|
fileTokenLimit?: string | number | undefined;
|
|
8449
9155
|
modelLabel?: string | null | undefined;
|
|
@@ -8455,7 +9161,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8455
9161
|
top_p?: number | undefined;
|
|
8456
9162
|
frequency_penalty?: number | undefined;
|
|
8457
9163
|
presence_penalty?: number | undefined;
|
|
8458
|
-
parentMessageId?: string | undefined;
|
|
8459
9164
|
maxOutputTokens?: string | number | null | undefined;
|
|
8460
9165
|
maxContextTokens?: string | number | undefined;
|
|
8461
9166
|
max_tokens?: string | number | undefined;
|
|
@@ -8476,7 +9181,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8476
9181
|
};
|
|
8477
9182
|
}[] | undefined;
|
|
8478
9183
|
resendFiles?: boolean | undefined;
|
|
8479
|
-
file_ids?: string[] | undefined;
|
|
8480
9184
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
8481
9185
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
8482
9186
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -8516,10 +9220,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8516
9220
|
} | null) | undefined;
|
|
8517
9221
|
additional_instructions?: string | undefined;
|
|
8518
9222
|
append_current_datetime?: boolean | undefined;
|
|
8519
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
8520
9223
|
stop?: string[] | undefined;
|
|
8521
|
-
resendImages?: boolean | undefined;
|
|
8522
|
-
chatGptLabel?: string | null | undefined;
|
|
8523
9224
|
presetId?: string | null | undefined;
|
|
8524
9225
|
defaultPreset?: boolean | undefined;
|
|
8525
9226
|
order?: number | undefined;
|
|
@@ -8993,16 +9694,16 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
8993
9694
|
description: string;
|
|
8994
9695
|
}>>>;
|
|
8995
9696
|
} & {
|
|
8996
|
-
type: z.
|
|
9697
|
+
type: z.ZodDefault<z.ZodLiteral<"stdio">>;
|
|
8997
9698
|
command: z.ZodString;
|
|
8998
9699
|
args: z.ZodArray<z.ZodString, "many">;
|
|
8999
9700
|
env: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>, Record<string, string> | undefined, Record<string, string> | undefined>;
|
|
9000
|
-
stderr: z.ZodOptional<z.
|
|
9701
|
+
stderr: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["pipe", "ignore", "inherit"]>, z.ZodNumber]>>;
|
|
9001
9702
|
}, "strip", z.ZodTypeAny, {
|
|
9703
|
+
type: "stdio";
|
|
9002
9704
|
command: string;
|
|
9003
9705
|
args: string[];
|
|
9004
9706
|
title?: string | undefined;
|
|
9005
|
-
type?: "stdio" | undefined;
|
|
9006
9707
|
description?: string | undefined;
|
|
9007
9708
|
apiKey?: {
|
|
9008
9709
|
source: "user" | "admin";
|
|
@@ -9040,7 +9741,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9040
9741
|
description: string;
|
|
9041
9742
|
}> | undefined;
|
|
9042
9743
|
env?: Record<string, string> | undefined;
|
|
9043
|
-
stderr?:
|
|
9744
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
9044
9745
|
}, {
|
|
9045
9746
|
command: string;
|
|
9046
9747
|
args: string[];
|
|
@@ -9083,7 +9784,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9083
9784
|
description: string;
|
|
9084
9785
|
}> | undefined;
|
|
9085
9786
|
env?: Record<string, string> | undefined;
|
|
9086
|
-
stderr?:
|
|
9787
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
9087
9788
|
}>, z.ZodObject<{
|
|
9088
9789
|
title: z.ZodOptional<z.ZodString>;
|
|
9089
9790
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9169,12 +9870,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9169
9870
|
description: string;
|
|
9170
9871
|
}>>>;
|
|
9171
9872
|
} & {
|
|
9172
|
-
type: z.
|
|
9873
|
+
type: z.ZodDefault<z.ZodLiteral<"websocket">>;
|
|
9173
9874
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
9174
9875
|
}, "strip", z.ZodTypeAny, {
|
|
9876
|
+
type: "websocket";
|
|
9175
9877
|
url: string;
|
|
9176
9878
|
title?: string | undefined;
|
|
9177
|
-
type?: "websocket" | undefined;
|
|
9178
9879
|
description?: string | undefined;
|
|
9179
9880
|
apiKey?: {
|
|
9180
9881
|
source: "user" | "admin";
|
|
@@ -9336,13 +10037,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9336
10037
|
description: string;
|
|
9337
10038
|
}>>>;
|
|
9338
10039
|
} & {
|
|
9339
|
-
type: z.
|
|
10040
|
+
type: z.ZodDefault<z.ZodLiteral<"sse">>;
|
|
9340
10041
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
9341
10042
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
9342
10043
|
}, "strip", z.ZodTypeAny, {
|
|
10044
|
+
type: "sse";
|
|
9343
10045
|
url: string;
|
|
9344
10046
|
title?: string | undefined;
|
|
9345
|
-
type?: "sse" | undefined;
|
|
9346
10047
|
description?: string | undefined;
|
|
9347
10048
|
apiKey?: {
|
|
9348
10049
|
source: "user" | "admin";
|
|
@@ -10658,7 +11359,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10658
11359
|
list: z.ZodArray<z.ZodObject<{
|
|
10659
11360
|
name: z.ZodString;
|
|
10660
11361
|
label: z.ZodString;
|
|
10661
|
-
preset: z.ZodObject<{
|
|
11362
|
+
preset: z.ZodObject<Omit<{
|
|
10662
11363
|
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10663
11364
|
greeting: z.ZodOptional<z.ZodString>;
|
|
10664
11365
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
@@ -10668,7 +11369,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10668
11369
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10669
11370
|
user: z.ZodOptional<z.ZodString>;
|
|
10670
11371
|
tools: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
10671
|
-
name: z.ZodString;
|
|
11372
|
+
name: z.ZodString; /** Google Cloud Project ID (optional - auto-detected from service key file if not provided) */
|
|
10672
11373
|
pluginKey: z.ZodString;
|
|
10673
11374
|
description: z.ZodOptional<z.ZodString>;
|
|
10674
11375
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -10854,18 +11555,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10854
11555
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
10855
11556
|
order: z.ZodOptional<z.ZodNumber>;
|
|
10856
11557
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
10857
|
-
}, "strip", z.ZodTypeAny, {
|
|
11558
|
+
}, "iconURL" | "greeting" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel">, "strip", z.ZodTypeAny, {
|
|
10858
11559
|
endpoint: string | null;
|
|
10859
11560
|
conversationId?: string | null | undefined;
|
|
10860
11561
|
title?: string | null | undefined;
|
|
10861
|
-
iconURL?: string | null | undefined;
|
|
10862
|
-
greeting?: string | undefined;
|
|
10863
11562
|
endpointType?: EModelEndpoint | null | undefined;
|
|
10864
|
-
expiredAt?: string | null | undefined;
|
|
10865
|
-
messages?: string[] | undefined;
|
|
10866
|
-
isArchived?: boolean | undefined;
|
|
10867
|
-
tags?: string[] | undefined;
|
|
10868
|
-
user?: string | undefined;
|
|
10869
11563
|
tools?: string[] | {
|
|
10870
11564
|
name: string;
|
|
10871
11565
|
pluginKey: string;
|
|
@@ -10883,7 +11577,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10883
11577
|
toolkit?: boolean | undefined;
|
|
10884
11578
|
}[] | undefined;
|
|
10885
11579
|
model?: string | null | undefined;
|
|
10886
|
-
spec?: string | null | undefined;
|
|
10887
11580
|
instructions?: string | undefined;
|
|
10888
11581
|
fileTokenLimit?: number | undefined;
|
|
10889
11582
|
modelLabel?: string | null | undefined;
|
|
@@ -10895,7 +11588,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10895
11588
|
top_p?: number | undefined;
|
|
10896
11589
|
frequency_penalty?: number | undefined;
|
|
10897
11590
|
presence_penalty?: number | undefined;
|
|
10898
|
-
parentMessageId?: string | undefined;
|
|
10899
11591
|
maxOutputTokens?: number | null | undefined;
|
|
10900
11592
|
maxContextTokens?: number | undefined;
|
|
10901
11593
|
max_tokens?: number | undefined;
|
|
@@ -10916,7 +11608,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10916
11608
|
};
|
|
10917
11609
|
}[] | undefined;
|
|
10918
11610
|
resendFiles?: boolean | undefined;
|
|
10919
|
-
file_ids?: string[] | undefined;
|
|
10920
11611
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
10921
11612
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
10922
11613
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -10956,10 +11647,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10956
11647
|
} | null) | undefined;
|
|
10957
11648
|
additional_instructions?: string | undefined;
|
|
10958
11649
|
append_current_datetime?: boolean | undefined;
|
|
10959
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
10960
11650
|
stop?: string[] | undefined;
|
|
10961
|
-
resendImages?: boolean | undefined;
|
|
10962
|
-
chatGptLabel?: string | null | undefined;
|
|
10963
11651
|
presetId?: string | null | undefined;
|
|
10964
11652
|
defaultPreset?: boolean | undefined;
|
|
10965
11653
|
order?: number | undefined;
|
|
@@ -10967,14 +11655,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10967
11655
|
endpoint: string | null;
|
|
10968
11656
|
conversationId?: string | null | undefined;
|
|
10969
11657
|
title?: string | null | undefined;
|
|
10970
|
-
iconURL?: string | null | undefined;
|
|
10971
|
-
greeting?: string | undefined;
|
|
10972
11658
|
endpointType?: EModelEndpoint | null | undefined;
|
|
10973
|
-
expiredAt?: string | null | undefined;
|
|
10974
|
-
messages?: string[] | undefined;
|
|
10975
|
-
isArchived?: boolean | undefined;
|
|
10976
|
-
tags?: string[] | undefined;
|
|
10977
|
-
user?: string | undefined;
|
|
10978
11659
|
tools?: string[] | {
|
|
10979
11660
|
name: string;
|
|
10980
11661
|
pluginKey: string;
|
|
@@ -10992,7 +11673,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10992
11673
|
toolkit?: boolean | undefined;
|
|
10993
11674
|
}[] | undefined;
|
|
10994
11675
|
model?: string | null | undefined;
|
|
10995
|
-
spec?: string | null | undefined;
|
|
10996
11676
|
instructions?: string | undefined;
|
|
10997
11677
|
fileTokenLimit?: string | number | undefined;
|
|
10998
11678
|
modelLabel?: string | null | undefined;
|
|
@@ -11004,7 +11684,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11004
11684
|
top_p?: number | undefined;
|
|
11005
11685
|
frequency_penalty?: number | undefined;
|
|
11006
11686
|
presence_penalty?: number | undefined;
|
|
11007
|
-
parentMessageId?: string | undefined;
|
|
11008
11687
|
maxOutputTokens?: string | number | null | undefined;
|
|
11009
11688
|
maxContextTokens?: string | number | undefined;
|
|
11010
11689
|
max_tokens?: string | number | undefined;
|
|
@@ -11025,7 +11704,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11025
11704
|
};
|
|
11026
11705
|
}[] | undefined;
|
|
11027
11706
|
resendFiles?: boolean | undefined;
|
|
11028
|
-
file_ids?: string[] | undefined;
|
|
11029
11707
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
11030
11708
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
11031
11709
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -11065,10 +11743,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11065
11743
|
} | null) | undefined;
|
|
11066
11744
|
additional_instructions?: string | undefined;
|
|
11067
11745
|
append_current_datetime?: boolean | undefined;
|
|
11068
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
11069
11746
|
stop?: string[] | undefined;
|
|
11070
|
-
resendImages?: boolean | undefined;
|
|
11071
|
-
chatGptLabel?: string | null | undefined;
|
|
11072
11747
|
presetId?: string | null | undefined;
|
|
11073
11748
|
defaultPreset?: boolean | undefined;
|
|
11074
11749
|
order?: number | undefined;
|
|
@@ -11094,14 +11769,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11094
11769
|
endpoint: string | null;
|
|
11095
11770
|
conversationId?: string | null | undefined;
|
|
11096
11771
|
title?: string | null | undefined;
|
|
11097
|
-
iconURL?: string | null | undefined;
|
|
11098
|
-
greeting?: string | undefined;
|
|
11099
11772
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11100
|
-
expiredAt?: string | null | undefined;
|
|
11101
|
-
messages?: string[] | undefined;
|
|
11102
|
-
isArchived?: boolean | undefined;
|
|
11103
|
-
tags?: string[] | undefined;
|
|
11104
|
-
user?: string | undefined;
|
|
11105
11773
|
tools?: string[] | {
|
|
11106
11774
|
name: string;
|
|
11107
11775
|
pluginKey: string;
|
|
@@ -11119,7 +11787,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11119
11787
|
toolkit?: boolean | undefined;
|
|
11120
11788
|
}[] | undefined;
|
|
11121
11789
|
model?: string | null | undefined;
|
|
11122
|
-
spec?: string | null | undefined;
|
|
11123
11790
|
instructions?: string | undefined;
|
|
11124
11791
|
fileTokenLimit?: number | undefined;
|
|
11125
11792
|
modelLabel?: string | null | undefined;
|
|
@@ -11131,7 +11798,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11131
11798
|
top_p?: number | undefined;
|
|
11132
11799
|
frequency_penalty?: number | undefined;
|
|
11133
11800
|
presence_penalty?: number | undefined;
|
|
11134
|
-
parentMessageId?: string | undefined;
|
|
11135
11801
|
maxOutputTokens?: number | null | undefined;
|
|
11136
11802
|
maxContextTokens?: number | undefined;
|
|
11137
11803
|
max_tokens?: number | undefined;
|
|
@@ -11152,7 +11818,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11152
11818
|
};
|
|
11153
11819
|
}[] | undefined;
|
|
11154
11820
|
resendFiles?: boolean | undefined;
|
|
11155
|
-
file_ids?: string[] | undefined;
|
|
11156
11821
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
11157
11822
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
11158
11823
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -11192,10 +11857,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11192
11857
|
} | null) | undefined;
|
|
11193
11858
|
additional_instructions?: string | undefined;
|
|
11194
11859
|
append_current_datetime?: boolean | undefined;
|
|
11195
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
11196
11860
|
stop?: string[] | undefined;
|
|
11197
|
-
resendImages?: boolean | undefined;
|
|
11198
|
-
chatGptLabel?: string | null | undefined;
|
|
11199
11861
|
presetId?: string | null | undefined;
|
|
11200
11862
|
defaultPreset?: boolean | undefined;
|
|
11201
11863
|
order?: number | undefined;
|
|
@@ -11221,14 +11883,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11221
11883
|
endpoint: string | null;
|
|
11222
11884
|
conversationId?: string | null | undefined;
|
|
11223
11885
|
title?: string | null | undefined;
|
|
11224
|
-
iconURL?: string | null | undefined;
|
|
11225
|
-
greeting?: string | undefined;
|
|
11226
11886
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11227
|
-
expiredAt?: string | null | undefined;
|
|
11228
|
-
messages?: string[] | undefined;
|
|
11229
|
-
isArchived?: boolean | undefined;
|
|
11230
|
-
tags?: string[] | undefined;
|
|
11231
|
-
user?: string | undefined;
|
|
11232
11887
|
tools?: string[] | {
|
|
11233
11888
|
name: string;
|
|
11234
11889
|
pluginKey: string;
|
|
@@ -11246,7 +11901,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11246
11901
|
toolkit?: boolean | undefined;
|
|
11247
11902
|
}[] | undefined;
|
|
11248
11903
|
model?: string | null | undefined;
|
|
11249
|
-
spec?: string | null | undefined;
|
|
11250
11904
|
instructions?: string | undefined;
|
|
11251
11905
|
fileTokenLimit?: string | number | undefined;
|
|
11252
11906
|
modelLabel?: string | null | undefined;
|
|
@@ -11258,7 +11912,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11258
11912
|
top_p?: number | undefined;
|
|
11259
11913
|
frequency_penalty?: number | undefined;
|
|
11260
11914
|
presence_penalty?: number | undefined;
|
|
11261
|
-
parentMessageId?: string | undefined;
|
|
11262
11915
|
maxOutputTokens?: string | number | null | undefined;
|
|
11263
11916
|
maxContextTokens?: string | number | undefined;
|
|
11264
11917
|
max_tokens?: string | number | undefined;
|
|
@@ -11279,7 +11932,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11279
11932
|
};
|
|
11280
11933
|
}[] | undefined;
|
|
11281
11934
|
resendFiles?: boolean | undefined;
|
|
11282
|
-
file_ids?: string[] | undefined;
|
|
11283
11935
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
11284
11936
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
11285
11937
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -11319,10 +11971,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11319
11971
|
} | null) | undefined;
|
|
11320
11972
|
additional_instructions?: string | undefined;
|
|
11321
11973
|
append_current_datetime?: boolean | undefined;
|
|
11322
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
11323
11974
|
stop?: string[] | undefined;
|
|
11324
|
-
resendImages?: boolean | undefined;
|
|
11325
|
-
chatGptLabel?: string | null | undefined;
|
|
11326
11975
|
presetId?: string | null | undefined;
|
|
11327
11976
|
defaultPreset?: boolean | undefined;
|
|
11328
11977
|
order?: number | undefined;
|
|
@@ -11353,14 +12002,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11353
12002
|
endpoint: string | null;
|
|
11354
12003
|
conversationId?: string | null | undefined;
|
|
11355
12004
|
title?: string | null | undefined;
|
|
11356
|
-
iconURL?: string | null | undefined;
|
|
11357
|
-
greeting?: string | undefined;
|
|
11358
12005
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11359
|
-
expiredAt?: string | null | undefined;
|
|
11360
|
-
messages?: string[] | undefined;
|
|
11361
|
-
isArchived?: boolean | undefined;
|
|
11362
|
-
tags?: string[] | undefined;
|
|
11363
|
-
user?: string | undefined;
|
|
11364
12006
|
tools?: string[] | {
|
|
11365
12007
|
name: string;
|
|
11366
12008
|
pluginKey: string;
|
|
@@ -11378,7 +12020,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11378
12020
|
toolkit?: boolean | undefined;
|
|
11379
12021
|
}[] | undefined;
|
|
11380
12022
|
model?: string | null | undefined;
|
|
11381
|
-
spec?: string | null | undefined;
|
|
11382
12023
|
instructions?: string | undefined;
|
|
11383
12024
|
fileTokenLimit?: number | undefined;
|
|
11384
12025
|
modelLabel?: string | null | undefined;
|
|
@@ -11390,7 +12031,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11390
12031
|
top_p?: number | undefined;
|
|
11391
12032
|
frequency_penalty?: number | undefined;
|
|
11392
12033
|
presence_penalty?: number | undefined;
|
|
11393
|
-
parentMessageId?: string | undefined;
|
|
11394
12034
|
maxOutputTokens?: number | null | undefined;
|
|
11395
12035
|
maxContextTokens?: number | undefined;
|
|
11396
12036
|
max_tokens?: number | undefined;
|
|
@@ -11411,7 +12051,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11411
12051
|
};
|
|
11412
12052
|
}[] | undefined;
|
|
11413
12053
|
resendFiles?: boolean | undefined;
|
|
11414
|
-
file_ids?: string[] | undefined;
|
|
11415
12054
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
11416
12055
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
11417
12056
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -11451,10 +12090,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11451
12090
|
} | null) | undefined;
|
|
11452
12091
|
additional_instructions?: string | undefined;
|
|
11453
12092
|
append_current_datetime?: boolean | undefined;
|
|
11454
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
11455
12093
|
stop?: string[] | undefined;
|
|
11456
|
-
resendImages?: boolean | undefined;
|
|
11457
|
-
chatGptLabel?: string | null | undefined;
|
|
11458
12094
|
presetId?: string | null | undefined;
|
|
11459
12095
|
defaultPreset?: boolean | undefined;
|
|
11460
12096
|
order?: number | undefined;
|
|
@@ -11483,14 +12119,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11483
12119
|
endpoint: string | null;
|
|
11484
12120
|
conversationId?: string | null | undefined;
|
|
11485
12121
|
title?: string | null | undefined;
|
|
11486
|
-
iconURL?: string | null | undefined;
|
|
11487
|
-
greeting?: string | undefined;
|
|
11488
12122
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11489
|
-
expiredAt?: string | null | undefined;
|
|
11490
|
-
messages?: string[] | undefined;
|
|
11491
|
-
isArchived?: boolean | undefined;
|
|
11492
|
-
tags?: string[] | undefined;
|
|
11493
|
-
user?: string | undefined;
|
|
11494
12123
|
tools?: string[] | {
|
|
11495
12124
|
name: string;
|
|
11496
12125
|
pluginKey: string;
|
|
@@ -11508,7 +12137,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11508
12137
|
toolkit?: boolean | undefined;
|
|
11509
12138
|
}[] | undefined;
|
|
11510
12139
|
model?: string | null | undefined;
|
|
11511
|
-
spec?: string | null | undefined;
|
|
11512
12140
|
instructions?: string | undefined;
|
|
11513
12141
|
fileTokenLimit?: string | number | undefined;
|
|
11514
12142
|
modelLabel?: string | null | undefined;
|
|
@@ -11520,7 +12148,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11520
12148
|
top_p?: number | undefined;
|
|
11521
12149
|
frequency_penalty?: number | undefined;
|
|
11522
12150
|
presence_penalty?: number | undefined;
|
|
11523
|
-
parentMessageId?: string | undefined;
|
|
11524
12151
|
maxOutputTokens?: string | number | null | undefined;
|
|
11525
12152
|
maxContextTokens?: string | number | undefined;
|
|
11526
12153
|
max_tokens?: string | number | undefined;
|
|
@@ -11541,7 +12168,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11541
12168
|
};
|
|
11542
12169
|
}[] | undefined;
|
|
11543
12170
|
resendFiles?: boolean | undefined;
|
|
11544
|
-
file_ids?: string[] | undefined;
|
|
11545
12171
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
11546
12172
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
11547
12173
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -11581,10 +12207,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11581
12207
|
} | null) | undefined;
|
|
11582
12208
|
additional_instructions?: string | undefined;
|
|
11583
12209
|
append_current_datetime?: boolean | undefined;
|
|
11584
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
11585
12210
|
stop?: string[] | undefined;
|
|
11586
|
-
resendImages?: boolean | undefined;
|
|
11587
|
-
chatGptLabel?: string | null | undefined;
|
|
11588
12211
|
presetId?: string | null | undefined;
|
|
11589
12212
|
defaultPreset?: boolean | undefined;
|
|
11590
12213
|
order?: number | undefined;
|
|
@@ -11609,7 +12232,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11609
12232
|
addedEndpoints?: string[] | undefined;
|
|
11610
12233
|
}>>;
|
|
11611
12234
|
endpoints: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
11612
|
-
all: z.ZodOptional<z.ZodObject<{
|
|
12235
|
+
all: z.ZodOptional<z.ZodObject<Omit<{
|
|
11613
12236
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
11614
12237
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
11615
12238
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -11620,8 +12243,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11620
12243
|
titlePromptTemplate: z.ZodOptional<z.ZodString>;
|
|
11621
12244
|
/** Maximum characters allowed in a single tool result before truncation. */
|
|
11622
12245
|
maxToolResultChars: z.ZodOptional<z.ZodNumber>;
|
|
11623
|
-
}, "strip", z.ZodTypeAny, {
|
|
11624
|
-
baseURL?: string | undefined;
|
|
12246
|
+
}, "baseURL">, "strip", z.ZodTypeAny, {
|
|
11625
12247
|
streamRate?: number | undefined;
|
|
11626
12248
|
titlePrompt?: string | undefined;
|
|
11627
12249
|
titleModel?: string | undefined;
|
|
@@ -11631,7 +12253,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11631
12253
|
titlePromptTemplate?: string | undefined;
|
|
11632
12254
|
maxToolResultChars?: number | undefined;
|
|
11633
12255
|
}, {
|
|
11634
|
-
baseURL?: string | undefined;
|
|
11635
12256
|
streamRate?: number | undefined;
|
|
11636
12257
|
titlePrompt?: string | undefined;
|
|
11637
12258
|
titleModel?: string | undefined;
|
|
@@ -11866,7 +12487,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11866
12487
|
dropParams?: string[] | undefined;
|
|
11867
12488
|
additionalHeaders?: Record<string, any> | undefined;
|
|
11868
12489
|
}>>, "many">;
|
|
11869
|
-
plugins: z.ZodOptional<z.ZodBoolean>;
|
|
11870
12490
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
11871
12491
|
}, "strip", z.ZodTypeAny, {
|
|
11872
12492
|
groups: ({
|
|
@@ -11889,7 +12509,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11889
12509
|
additionalHeaders?: Record<string, any> | undefined;
|
|
11890
12510
|
})[];
|
|
11891
12511
|
assistants?: boolean | undefined;
|
|
11892
|
-
plugins?: boolean | undefined;
|
|
11893
12512
|
}, {
|
|
11894
12513
|
groups: ({
|
|
11895
12514
|
group: string;
|
|
@@ -11911,7 +12530,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11911
12530
|
additionalHeaders?: Record<string, any> | undefined;
|
|
11912
12531
|
})[];
|
|
11913
12532
|
assistants?: boolean | undefined;
|
|
11914
|
-
plugins?: boolean | undefined;
|
|
11915
12533
|
}>, z.ZodObject<{
|
|
11916
12534
|
streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
11917
12535
|
titlePrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11919,9 +12537,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11919
12537
|
titleConvo: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11920
12538
|
titleMethod: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"completion">, z.ZodLiteral<"functions">, z.ZodLiteral<"structured">]>>>;
|
|
11921
12539
|
titlePromptTemplate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11922
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11923
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11924
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
11925
12540
|
}, "strip", z.ZodTypeAny, {
|
|
11926
12541
|
streamRate?: number | undefined;
|
|
11927
12542
|
titlePrompt?: string | undefined;
|
|
@@ -11929,9 +12544,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11929
12544
|
titleConvo?: boolean | undefined;
|
|
11930
12545
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
11931
12546
|
titlePromptTemplate?: string | undefined;
|
|
11932
|
-
summarize?: boolean | undefined;
|
|
11933
|
-
summaryModel?: string | undefined;
|
|
11934
|
-
customOrder?: number | undefined;
|
|
11935
12547
|
}, {
|
|
11936
12548
|
streamRate?: number | undefined;
|
|
11937
12549
|
titlePrompt?: string | undefined;
|
|
@@ -11939,9 +12551,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11939
12551
|
titleConvo?: boolean | undefined;
|
|
11940
12552
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
11941
12553
|
titlePromptTemplate?: string | undefined;
|
|
11942
|
-
summarize?: boolean | undefined;
|
|
11943
|
-
summaryModel?: string | undefined;
|
|
11944
|
-
customOrder?: number | undefined;
|
|
11945
12554
|
}>>>;
|
|
11946
12555
|
azureAssistants: z.ZodOptional<z.ZodObject<{
|
|
11947
12556
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12163,7 +12772,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12163
12772
|
retrievalModels?: string[] | undefined;
|
|
12164
12773
|
capabilities?: Capabilities[] | undefined;
|
|
12165
12774
|
}>>;
|
|
12166
|
-
agents: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
12775
|
+
agents: z.ZodOptional<z.ZodDefault<z.ZodObject<Omit<{
|
|
12167
12776
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
12168
12777
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
12169
12778
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -12174,7 +12783,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12174
12783
|
titlePromptTemplate: z.ZodOptional<z.ZodString>;
|
|
12175
12784
|
/** Maximum characters allowed in a single tool result before truncation. */
|
|
12176
12785
|
maxToolResultChars: z.ZodOptional<z.ZodNumber>;
|
|
12177
|
-
} & {
|
|
12786
|
+
}, "baseURL"> & {
|
|
12178
12787
|
recursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
12179
12788
|
disableBuilder: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12180
12789
|
maxRecursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12189,7 +12798,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12189
12798
|
maxCitations: number;
|
|
12190
12799
|
maxCitationsPerFile: number;
|
|
12191
12800
|
minRelevanceScore: number;
|
|
12192
|
-
baseURL?: string | undefined;
|
|
12193
12801
|
streamRate?: number | undefined;
|
|
12194
12802
|
titlePrompt?: string | undefined;
|
|
12195
12803
|
titleModel?: string | undefined;
|
|
@@ -12202,7 +12810,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12202
12810
|
maxRecursionLimit?: number | undefined;
|
|
12203
12811
|
allowedProviders?: string[] | undefined;
|
|
12204
12812
|
}, {
|
|
12205
|
-
baseURL?: string | undefined;
|
|
12206
12813
|
streamRate?: number | undefined;
|
|
12207
12814
|
titlePrompt?: string | undefined;
|
|
12208
12815
|
titleModel?: string | undefined;
|
|
@@ -12260,8 +12867,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12260
12867
|
fetch?: boolean | undefined;
|
|
12261
12868
|
userIdQuery?: boolean | undefined;
|
|
12262
12869
|
}>>;
|
|
12263
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12264
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12265
12870
|
iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12266
12871
|
modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12267
12872
|
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
@@ -12269,15 +12874,187 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12269
12874
|
dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
12270
12875
|
customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
12271
12876
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
12272
|
-
paramDefinitions: z.ZodOptional<z.ZodArray<z.
|
|
12877
|
+
paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12878
|
+
key: z.ZodString;
|
|
12879
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12880
|
+
type: z.ZodOptional<z.ZodNativeEnum<typeof SettingTypes>>;
|
|
12881
|
+
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
12882
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
12883
|
+
showDefault: z.ZodOptional<z.ZodBoolean>;
|
|
12884
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12885
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
12886
|
+
min: z.ZodNumber;
|
|
12887
|
+
max: z.ZodNumber;
|
|
12888
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
12889
|
+
}, "strip", z.ZodTypeAny, {
|
|
12890
|
+
min: number;
|
|
12891
|
+
max: number;
|
|
12892
|
+
step?: number | undefined;
|
|
12893
|
+
}, {
|
|
12894
|
+
min: number;
|
|
12895
|
+
max: number;
|
|
12896
|
+
step?: number | undefined;
|
|
12897
|
+
}>>;
|
|
12898
|
+
enumMappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString]>>>;
|
|
12899
|
+
component: z.ZodOptional<z.ZodNativeEnum<typeof ComponentTypes>>;
|
|
12900
|
+
optionType: z.ZodOptional<z.ZodNativeEnum<typeof OptionTypes>>;
|
|
12901
|
+
columnSpan: z.ZodOptional<z.ZodNumber>;
|
|
12902
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
12903
|
+
label: z.ZodOptional<z.ZodString>;
|
|
12904
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
12905
|
+
labelCode: z.ZodOptional<z.ZodBoolean>;
|
|
12906
|
+
placeholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
12907
|
+
descriptionCode: z.ZodOptional<z.ZodBoolean>;
|
|
12908
|
+
minText: z.ZodOptional<z.ZodNumber>;
|
|
12909
|
+
maxText: z.ZodOptional<z.ZodNumber>;
|
|
12910
|
+
minTags: z.ZodOptional<z.ZodNumber>;
|
|
12911
|
+
maxTags: z.ZodOptional<z.ZodNumber>;
|
|
12912
|
+
includeInput: z.ZodOptional<z.ZodBoolean>;
|
|
12913
|
+
descriptionSide: z.ZodOptional<z.ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
12914
|
+
searchPlaceholder: z.ZodOptional<z.ZodString>;
|
|
12915
|
+
selectPlaceholder: z.ZodOptional<z.ZodString>;
|
|
12916
|
+
searchPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
12917
|
+
selectPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
12918
|
+
}, "strip", z.ZodTypeAny, {
|
|
12919
|
+
key: string;
|
|
12920
|
+
default?: string | number | boolean | string[] | undefined;
|
|
12921
|
+
options?: string[] | undefined;
|
|
12922
|
+
type?: SettingTypes | undefined;
|
|
12923
|
+
description?: string | undefined;
|
|
12924
|
+
placeholder?: string | undefined;
|
|
12925
|
+
label?: string | undefined;
|
|
12926
|
+
showLabel?: boolean | undefined;
|
|
12927
|
+
showDefault?: boolean | undefined;
|
|
12928
|
+
range?: {
|
|
12929
|
+
min: number;
|
|
12930
|
+
max: number;
|
|
12931
|
+
step?: number | undefined;
|
|
12932
|
+
} | undefined;
|
|
12933
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
12934
|
+
component?: ComponentTypes | undefined;
|
|
12935
|
+
optionType?: OptionTypes | undefined;
|
|
12936
|
+
columnSpan?: number | undefined;
|
|
12937
|
+
columns?: number | undefined;
|
|
12938
|
+
labelCode?: boolean | undefined;
|
|
12939
|
+
placeholderCode?: boolean | undefined;
|
|
12940
|
+
descriptionCode?: boolean | undefined;
|
|
12941
|
+
minText?: number | undefined;
|
|
12942
|
+
maxText?: number | undefined;
|
|
12943
|
+
minTags?: number | undefined;
|
|
12944
|
+
maxTags?: number | undefined;
|
|
12945
|
+
includeInput?: boolean | undefined;
|
|
12946
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
12947
|
+
searchPlaceholder?: string | undefined;
|
|
12948
|
+
selectPlaceholder?: string | undefined;
|
|
12949
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
12950
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
12951
|
+
}, {
|
|
12952
|
+
key: string;
|
|
12953
|
+
default?: string | number | boolean | string[] | undefined;
|
|
12954
|
+
options?: string[] | undefined;
|
|
12955
|
+
type?: SettingTypes | undefined;
|
|
12956
|
+
description?: string | undefined;
|
|
12957
|
+
placeholder?: string | undefined;
|
|
12958
|
+
label?: string | undefined;
|
|
12959
|
+
showLabel?: boolean | undefined;
|
|
12960
|
+
showDefault?: boolean | undefined;
|
|
12961
|
+
range?: {
|
|
12962
|
+
min: number;
|
|
12963
|
+
max: number;
|
|
12964
|
+
step?: number | undefined;
|
|
12965
|
+
} | undefined;
|
|
12966
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
12967
|
+
component?: ComponentTypes | undefined;
|
|
12968
|
+
optionType?: OptionTypes | undefined;
|
|
12969
|
+
columnSpan?: number | undefined;
|
|
12970
|
+
columns?: number | undefined;
|
|
12971
|
+
labelCode?: boolean | undefined;
|
|
12972
|
+
placeholderCode?: boolean | undefined;
|
|
12973
|
+
descriptionCode?: boolean | undefined;
|
|
12974
|
+
minText?: number | undefined;
|
|
12975
|
+
maxText?: number | undefined;
|
|
12976
|
+
minTags?: number | undefined;
|
|
12977
|
+
maxTags?: number | undefined;
|
|
12978
|
+
includeInput?: boolean | undefined;
|
|
12979
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
12980
|
+
searchPlaceholder?: string | undefined;
|
|
12981
|
+
selectPlaceholder?: string | undefined;
|
|
12982
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
12983
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
12984
|
+
}>, "many">>;
|
|
12273
12985
|
}, "strict", z.ZodTypeAny, {
|
|
12274
12986
|
defaultParamsEndpoint: string;
|
|
12275
|
-
paramDefinitions?:
|
|
12987
|
+
paramDefinitions?: {
|
|
12988
|
+
key: string;
|
|
12989
|
+
default?: string | number | boolean | string[] | undefined;
|
|
12990
|
+
options?: string[] | undefined;
|
|
12991
|
+
type?: SettingTypes | undefined;
|
|
12992
|
+
description?: string | undefined;
|
|
12993
|
+
placeholder?: string | undefined;
|
|
12994
|
+
label?: string | undefined;
|
|
12995
|
+
showLabel?: boolean | undefined;
|
|
12996
|
+
showDefault?: boolean | undefined;
|
|
12997
|
+
range?: {
|
|
12998
|
+
min: number;
|
|
12999
|
+
max: number;
|
|
13000
|
+
step?: number | undefined;
|
|
13001
|
+
} | undefined;
|
|
13002
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13003
|
+
component?: ComponentTypes | undefined;
|
|
13004
|
+
optionType?: OptionTypes | undefined;
|
|
13005
|
+
columnSpan?: number | undefined;
|
|
13006
|
+
columns?: number | undefined;
|
|
13007
|
+
labelCode?: boolean | undefined;
|
|
13008
|
+
placeholderCode?: boolean | undefined;
|
|
13009
|
+
descriptionCode?: boolean | undefined;
|
|
13010
|
+
minText?: number | undefined;
|
|
13011
|
+
maxText?: number | undefined;
|
|
13012
|
+
minTags?: number | undefined;
|
|
13013
|
+
maxTags?: number | undefined;
|
|
13014
|
+
includeInput?: boolean | undefined;
|
|
13015
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13016
|
+
searchPlaceholder?: string | undefined;
|
|
13017
|
+
selectPlaceholder?: string | undefined;
|
|
13018
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13019
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13020
|
+
}[] | undefined;
|
|
12276
13021
|
}, {
|
|
12277
13022
|
defaultParamsEndpoint?: string | undefined;
|
|
12278
|
-
paramDefinitions?:
|
|
13023
|
+
paramDefinitions?: {
|
|
13024
|
+
key: string;
|
|
13025
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13026
|
+
options?: string[] | undefined;
|
|
13027
|
+
type?: SettingTypes | undefined;
|
|
13028
|
+
description?: string | undefined;
|
|
13029
|
+
placeholder?: string | undefined;
|
|
13030
|
+
label?: string | undefined;
|
|
13031
|
+
showLabel?: boolean | undefined;
|
|
13032
|
+
showDefault?: boolean | undefined;
|
|
13033
|
+
range?: {
|
|
13034
|
+
min: number;
|
|
13035
|
+
max: number;
|
|
13036
|
+
step?: number | undefined;
|
|
13037
|
+
} | undefined;
|
|
13038
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13039
|
+
component?: ComponentTypes | undefined;
|
|
13040
|
+
optionType?: OptionTypes | undefined;
|
|
13041
|
+
columnSpan?: number | undefined;
|
|
13042
|
+
columns?: number | undefined;
|
|
13043
|
+
labelCode?: boolean | undefined;
|
|
13044
|
+
placeholderCode?: boolean | undefined;
|
|
13045
|
+
descriptionCode?: boolean | undefined;
|
|
13046
|
+
minText?: number | undefined;
|
|
13047
|
+
maxText?: number | undefined;
|
|
13048
|
+
minTags?: number | undefined;
|
|
13049
|
+
maxTags?: number | undefined;
|
|
13050
|
+
includeInput?: boolean | undefined;
|
|
13051
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13052
|
+
searchPlaceholder?: string | undefined;
|
|
13053
|
+
selectPlaceholder?: string | undefined;
|
|
13054
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13055
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13056
|
+
}[] | undefined;
|
|
12279
13057
|
}>>>;
|
|
12280
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
12281
13058
|
directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12282
13059
|
titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12283
13060
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12304,14 +13081,44 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12304
13081
|
} | undefined;
|
|
12305
13082
|
addParams?: Record<string, any> | undefined;
|
|
12306
13083
|
dropParams?: string[] | undefined;
|
|
12307
|
-
summarize?: boolean | undefined;
|
|
12308
|
-
summaryModel?: string | undefined;
|
|
12309
13084
|
modelDisplayLabel?: string | undefined;
|
|
12310
13085
|
customParams?: {
|
|
12311
13086
|
defaultParamsEndpoint: string;
|
|
12312
|
-
paramDefinitions?:
|
|
13087
|
+
paramDefinitions?: {
|
|
13088
|
+
key: string;
|
|
13089
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13090
|
+
options?: string[] | undefined;
|
|
13091
|
+
type?: SettingTypes | undefined;
|
|
13092
|
+
description?: string | undefined;
|
|
13093
|
+
placeholder?: string | undefined;
|
|
13094
|
+
label?: string | undefined;
|
|
13095
|
+
showLabel?: boolean | undefined;
|
|
13096
|
+
showDefault?: boolean | undefined;
|
|
13097
|
+
range?: {
|
|
13098
|
+
min: number;
|
|
13099
|
+
max: number;
|
|
13100
|
+
step?: number | undefined;
|
|
13101
|
+
} | undefined;
|
|
13102
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13103
|
+
component?: ComponentTypes | undefined;
|
|
13104
|
+
optionType?: OptionTypes | undefined;
|
|
13105
|
+
columnSpan?: number | undefined;
|
|
13106
|
+
columns?: number | undefined;
|
|
13107
|
+
labelCode?: boolean | undefined;
|
|
13108
|
+
placeholderCode?: boolean | undefined;
|
|
13109
|
+
descriptionCode?: boolean | undefined;
|
|
13110
|
+
minText?: number | undefined;
|
|
13111
|
+
maxText?: number | undefined;
|
|
13112
|
+
minTags?: number | undefined;
|
|
13113
|
+
maxTags?: number | undefined;
|
|
13114
|
+
includeInput?: boolean | undefined;
|
|
13115
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13116
|
+
searchPlaceholder?: string | undefined;
|
|
13117
|
+
selectPlaceholder?: string | undefined;
|
|
13118
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13119
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13120
|
+
}[] | undefined;
|
|
12313
13121
|
} | undefined;
|
|
12314
|
-
customOrder?: number | undefined;
|
|
12315
13122
|
directEndpoint?: boolean | undefined;
|
|
12316
13123
|
titleMessageRole?: string | undefined;
|
|
12317
13124
|
}, {
|
|
@@ -12338,14 +13145,44 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12338
13145
|
} | undefined;
|
|
12339
13146
|
addParams?: Record<string, any> | undefined;
|
|
12340
13147
|
dropParams?: string[] | undefined;
|
|
12341
|
-
summarize?: boolean | undefined;
|
|
12342
|
-
summaryModel?: string | undefined;
|
|
12343
13148
|
modelDisplayLabel?: string | undefined;
|
|
12344
13149
|
customParams?: {
|
|
12345
13150
|
defaultParamsEndpoint?: string | undefined;
|
|
12346
|
-
paramDefinitions?:
|
|
13151
|
+
paramDefinitions?: {
|
|
13152
|
+
key: string;
|
|
13153
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13154
|
+
options?: string[] | undefined;
|
|
13155
|
+
type?: SettingTypes | undefined;
|
|
13156
|
+
description?: string | undefined;
|
|
13157
|
+
placeholder?: string | undefined;
|
|
13158
|
+
label?: string | undefined;
|
|
13159
|
+
showLabel?: boolean | undefined;
|
|
13160
|
+
showDefault?: boolean | undefined;
|
|
13161
|
+
range?: {
|
|
13162
|
+
min: number;
|
|
13163
|
+
max: number;
|
|
13164
|
+
step?: number | undefined;
|
|
13165
|
+
} | undefined;
|
|
13166
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13167
|
+
component?: ComponentTypes | undefined;
|
|
13168
|
+
optionType?: OptionTypes | undefined;
|
|
13169
|
+
columnSpan?: number | undefined;
|
|
13170
|
+
columns?: number | undefined;
|
|
13171
|
+
labelCode?: boolean | undefined;
|
|
13172
|
+
placeholderCode?: boolean | undefined;
|
|
13173
|
+
descriptionCode?: boolean | undefined;
|
|
13174
|
+
minText?: number | undefined;
|
|
13175
|
+
maxText?: number | undefined;
|
|
13176
|
+
minTags?: number | undefined;
|
|
13177
|
+
maxTags?: number | undefined;
|
|
13178
|
+
includeInput?: boolean | undefined;
|
|
13179
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13180
|
+
searchPlaceholder?: string | undefined;
|
|
13181
|
+
selectPlaceholder?: string | undefined;
|
|
13182
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13183
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13184
|
+
}[] | undefined;
|
|
12347
13185
|
} | undefined;
|
|
12348
|
-
customOrder?: number | undefined;
|
|
12349
13186
|
directEndpoint?: boolean | undefined;
|
|
12350
13187
|
titleMessageRole?: string | undefined;
|
|
12351
13188
|
}>, "many">>>;
|
|
@@ -12413,7 +13250,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12413
13250
|
additionalHeaders?: Record<string, any> | undefined;
|
|
12414
13251
|
})[];
|
|
12415
13252
|
assistants?: boolean | undefined;
|
|
12416
|
-
plugins?: boolean | undefined;
|
|
12417
13253
|
} & {
|
|
12418
13254
|
streamRate?: number | undefined;
|
|
12419
13255
|
titlePrompt?: string | undefined;
|
|
@@ -12421,9 +13257,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12421
13257
|
titleConvo?: boolean | undefined;
|
|
12422
13258
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
12423
13259
|
titlePromptTemplate?: string | undefined;
|
|
12424
|
-
summarize?: boolean | undefined;
|
|
12425
|
-
summaryModel?: string | undefined;
|
|
12426
|
-
customOrder?: number | undefined;
|
|
12427
13260
|
}) | undefined;
|
|
12428
13261
|
openAI?: {
|
|
12429
13262
|
baseURL?: string | undefined;
|
|
@@ -12535,7 +13368,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12535
13368
|
maxCitations: number;
|
|
12536
13369
|
maxCitationsPerFile: number;
|
|
12537
13370
|
minRelevanceScore: number;
|
|
12538
|
-
baseURL?: string | undefined;
|
|
12539
13371
|
streamRate?: number | undefined;
|
|
12540
13372
|
titlePrompt?: string | undefined;
|
|
12541
13373
|
titleModel?: string | undefined;
|
|
@@ -12572,14 +13404,44 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12572
13404
|
} | undefined;
|
|
12573
13405
|
addParams?: Record<string, any> | undefined;
|
|
12574
13406
|
dropParams?: string[] | undefined;
|
|
12575
|
-
summarize?: boolean | undefined;
|
|
12576
|
-
summaryModel?: string | undefined;
|
|
12577
13407
|
modelDisplayLabel?: string | undefined;
|
|
12578
13408
|
customParams?: {
|
|
12579
13409
|
defaultParamsEndpoint: string;
|
|
12580
|
-
paramDefinitions?:
|
|
13410
|
+
paramDefinitions?: {
|
|
13411
|
+
key: string;
|
|
13412
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13413
|
+
options?: string[] | undefined;
|
|
13414
|
+
type?: SettingTypes | undefined;
|
|
13415
|
+
description?: string | undefined;
|
|
13416
|
+
placeholder?: string | undefined;
|
|
13417
|
+
label?: string | undefined;
|
|
13418
|
+
showLabel?: boolean | undefined;
|
|
13419
|
+
showDefault?: boolean | undefined;
|
|
13420
|
+
range?: {
|
|
13421
|
+
min: number;
|
|
13422
|
+
max: number;
|
|
13423
|
+
step?: number | undefined;
|
|
13424
|
+
} | undefined;
|
|
13425
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13426
|
+
component?: ComponentTypes | undefined;
|
|
13427
|
+
optionType?: OptionTypes | undefined;
|
|
13428
|
+
columnSpan?: number | undefined;
|
|
13429
|
+
columns?: number | undefined;
|
|
13430
|
+
labelCode?: boolean | undefined;
|
|
13431
|
+
placeholderCode?: boolean | undefined;
|
|
13432
|
+
descriptionCode?: boolean | undefined;
|
|
13433
|
+
minText?: number | undefined;
|
|
13434
|
+
maxText?: number | undefined;
|
|
13435
|
+
minTags?: number | undefined;
|
|
13436
|
+
maxTags?: number | undefined;
|
|
13437
|
+
includeInput?: boolean | undefined;
|
|
13438
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13439
|
+
searchPlaceholder?: string | undefined;
|
|
13440
|
+
selectPlaceholder?: string | undefined;
|
|
13441
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13442
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13443
|
+
}[] | undefined;
|
|
12581
13444
|
} | undefined;
|
|
12582
|
-
customOrder?: number | undefined;
|
|
12583
13445
|
directEndpoint?: boolean | undefined;
|
|
12584
13446
|
titleMessageRole?: string | undefined;
|
|
12585
13447
|
}[] | undefined;
|
|
@@ -12598,7 +13460,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12598
13460
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
12599
13461
|
} | undefined;
|
|
12600
13462
|
all?: {
|
|
12601
|
-
baseURL?: string | undefined;
|
|
12602
13463
|
streamRate?: number | undefined;
|
|
12603
13464
|
titlePrompt?: string | undefined;
|
|
12604
13465
|
titleModel?: string | undefined;
|
|
@@ -12630,7 +13491,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12630
13491
|
additionalHeaders?: Record<string, any> | undefined;
|
|
12631
13492
|
})[];
|
|
12632
13493
|
assistants?: boolean | undefined;
|
|
12633
|
-
plugins?: boolean | undefined;
|
|
12634
13494
|
} & {
|
|
12635
13495
|
streamRate?: number | undefined;
|
|
12636
13496
|
titlePrompt?: string | undefined;
|
|
@@ -12638,9 +13498,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12638
13498
|
titleConvo?: boolean | undefined;
|
|
12639
13499
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
12640
13500
|
titlePromptTemplate?: string | undefined;
|
|
12641
|
-
summarize?: boolean | undefined;
|
|
12642
|
-
summaryModel?: string | undefined;
|
|
12643
|
-
customOrder?: number | undefined;
|
|
12644
13501
|
}) | undefined;
|
|
12645
13502
|
openAI?: {
|
|
12646
13503
|
baseURL?: string | undefined;
|
|
@@ -12747,7 +13604,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12747
13604
|
capabilities?: Capabilities[] | undefined;
|
|
12748
13605
|
} | undefined;
|
|
12749
13606
|
agents?: {
|
|
12750
|
-
baseURL?: string | undefined;
|
|
12751
13607
|
streamRate?: number | undefined;
|
|
12752
13608
|
titlePrompt?: string | undefined;
|
|
12753
13609
|
titleModel?: string | undefined;
|
|
@@ -12789,14 +13645,44 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12789
13645
|
} | undefined;
|
|
12790
13646
|
addParams?: Record<string, any> | undefined;
|
|
12791
13647
|
dropParams?: string[] | undefined;
|
|
12792
|
-
summarize?: boolean | undefined;
|
|
12793
|
-
summaryModel?: string | undefined;
|
|
12794
13648
|
modelDisplayLabel?: string | undefined;
|
|
12795
13649
|
customParams?: {
|
|
12796
13650
|
defaultParamsEndpoint?: string | undefined;
|
|
12797
|
-
paramDefinitions?:
|
|
13651
|
+
paramDefinitions?: {
|
|
13652
|
+
key: string;
|
|
13653
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13654
|
+
options?: string[] | undefined;
|
|
13655
|
+
type?: SettingTypes | undefined;
|
|
13656
|
+
description?: string | undefined;
|
|
13657
|
+
placeholder?: string | undefined;
|
|
13658
|
+
label?: string | undefined;
|
|
13659
|
+
showLabel?: boolean | undefined;
|
|
13660
|
+
showDefault?: boolean | undefined;
|
|
13661
|
+
range?: {
|
|
13662
|
+
min: number;
|
|
13663
|
+
max: number;
|
|
13664
|
+
step?: number | undefined;
|
|
13665
|
+
} | undefined;
|
|
13666
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13667
|
+
component?: ComponentTypes | undefined;
|
|
13668
|
+
optionType?: OptionTypes | undefined;
|
|
13669
|
+
columnSpan?: number | undefined;
|
|
13670
|
+
columns?: number | undefined;
|
|
13671
|
+
labelCode?: boolean | undefined;
|
|
13672
|
+
placeholderCode?: boolean | undefined;
|
|
13673
|
+
descriptionCode?: boolean | undefined;
|
|
13674
|
+
minText?: number | undefined;
|
|
13675
|
+
maxText?: number | undefined;
|
|
13676
|
+
minTags?: number | undefined;
|
|
13677
|
+
maxTags?: number | undefined;
|
|
13678
|
+
includeInput?: boolean | undefined;
|
|
13679
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13680
|
+
searchPlaceholder?: string | undefined;
|
|
13681
|
+
selectPlaceholder?: string | undefined;
|
|
13682
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13683
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13684
|
+
}[] | undefined;
|
|
12798
13685
|
} | undefined;
|
|
12799
|
-
customOrder?: number | undefined;
|
|
12800
13686
|
directEndpoint?: boolean | undefined;
|
|
12801
13687
|
titleMessageRole?: string | undefined;
|
|
12802
13688
|
}[] | undefined;
|
|
@@ -12815,7 +13701,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12815
13701
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
12816
13702
|
} | undefined;
|
|
12817
13703
|
all?: {
|
|
12818
|
-
baseURL?: string | undefined;
|
|
12819
13704
|
streamRate?: number | undefined;
|
|
12820
13705
|
titlePrompt?: string | undefined;
|
|
12821
13706
|
titleModel?: string | undefined;
|
|
@@ -12847,7 +13732,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12847
13732
|
additionalHeaders?: Record<string, any> | undefined;
|
|
12848
13733
|
})[];
|
|
12849
13734
|
assistants?: boolean | undefined;
|
|
12850
|
-
plugins?: boolean | undefined;
|
|
12851
13735
|
} & {
|
|
12852
13736
|
streamRate?: number | undefined;
|
|
12853
13737
|
titlePrompt?: string | undefined;
|
|
@@ -12855,9 +13739,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12855
13739
|
titleConvo?: boolean | undefined;
|
|
12856
13740
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
12857
13741
|
titlePromptTemplate?: string | undefined;
|
|
12858
|
-
summarize?: boolean | undefined;
|
|
12859
|
-
summaryModel?: string | undefined;
|
|
12860
|
-
customOrder?: number | undefined;
|
|
12861
13742
|
}) | undefined;
|
|
12862
13743
|
openAI?: {
|
|
12863
13744
|
baseURL?: string | undefined;
|
|
@@ -12969,7 +13850,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12969
13850
|
maxCitations: number;
|
|
12970
13851
|
maxCitationsPerFile: number;
|
|
12971
13852
|
minRelevanceScore: number;
|
|
12972
|
-
baseURL?: string | undefined;
|
|
12973
13853
|
streamRate?: number | undefined;
|
|
12974
13854
|
titlePrompt?: string | undefined;
|
|
12975
13855
|
titleModel?: string | undefined;
|
|
@@ -13006,14 +13886,44 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13006
13886
|
} | undefined;
|
|
13007
13887
|
addParams?: Record<string, any> | undefined;
|
|
13008
13888
|
dropParams?: string[] | undefined;
|
|
13009
|
-
summarize?: boolean | undefined;
|
|
13010
|
-
summaryModel?: string | undefined;
|
|
13011
13889
|
modelDisplayLabel?: string | undefined;
|
|
13012
13890
|
customParams?: {
|
|
13013
13891
|
defaultParamsEndpoint: string;
|
|
13014
|
-
paramDefinitions?:
|
|
13892
|
+
paramDefinitions?: {
|
|
13893
|
+
key: string;
|
|
13894
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13895
|
+
options?: string[] | undefined;
|
|
13896
|
+
type?: SettingTypes | undefined;
|
|
13897
|
+
description?: string | undefined;
|
|
13898
|
+
placeholder?: string | undefined;
|
|
13899
|
+
label?: string | undefined;
|
|
13900
|
+
showLabel?: boolean | undefined;
|
|
13901
|
+
showDefault?: boolean | undefined;
|
|
13902
|
+
range?: {
|
|
13903
|
+
min: number;
|
|
13904
|
+
max: number;
|
|
13905
|
+
step?: number | undefined;
|
|
13906
|
+
} | undefined;
|
|
13907
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13908
|
+
component?: ComponentTypes | undefined;
|
|
13909
|
+
optionType?: OptionTypes | undefined;
|
|
13910
|
+
columnSpan?: number | undefined;
|
|
13911
|
+
columns?: number | undefined;
|
|
13912
|
+
labelCode?: boolean | undefined;
|
|
13913
|
+
placeholderCode?: boolean | undefined;
|
|
13914
|
+
descriptionCode?: boolean | undefined;
|
|
13915
|
+
minText?: number | undefined;
|
|
13916
|
+
maxText?: number | undefined;
|
|
13917
|
+
minTags?: number | undefined;
|
|
13918
|
+
maxTags?: number | undefined;
|
|
13919
|
+
includeInput?: boolean | undefined;
|
|
13920
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13921
|
+
searchPlaceholder?: string | undefined;
|
|
13922
|
+
selectPlaceholder?: string | undefined;
|
|
13923
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13924
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13925
|
+
}[] | undefined;
|
|
13015
13926
|
} | undefined;
|
|
13016
|
-
customOrder?: number | undefined;
|
|
13017
13927
|
directEndpoint?: boolean | undefined;
|
|
13018
13928
|
titleMessageRole?: string | undefined;
|
|
13019
13929
|
}[] | undefined;
|
|
@@ -13032,7 +13942,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13032
13942
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
13033
13943
|
} | undefined;
|
|
13034
13944
|
all?: {
|
|
13035
|
-
baseURL?: string | undefined;
|
|
13036
13945
|
streamRate?: number | undefined;
|
|
13037
13946
|
titlePrompt?: string | undefined;
|
|
13038
13947
|
titleModel?: string | undefined;
|
|
@@ -13064,7 +13973,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13064
13973
|
additionalHeaders?: Record<string, any> | undefined;
|
|
13065
13974
|
})[];
|
|
13066
13975
|
assistants?: boolean | undefined;
|
|
13067
|
-
plugins?: boolean | undefined;
|
|
13068
13976
|
} & {
|
|
13069
13977
|
streamRate?: number | undefined;
|
|
13070
13978
|
titlePrompt?: string | undefined;
|
|
@@ -13072,9 +13980,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13072
13980
|
titleConvo?: boolean | undefined;
|
|
13073
13981
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
13074
13982
|
titlePromptTemplate?: string | undefined;
|
|
13075
|
-
summarize?: boolean | undefined;
|
|
13076
|
-
summaryModel?: string | undefined;
|
|
13077
|
-
customOrder?: number | undefined;
|
|
13078
13983
|
}) | undefined;
|
|
13079
13984
|
openAI?: {
|
|
13080
13985
|
baseURL?: string | undefined;
|
|
@@ -13181,7 +14086,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13181
14086
|
capabilities?: Capabilities[] | undefined;
|
|
13182
14087
|
} | undefined;
|
|
13183
14088
|
agents?: {
|
|
13184
|
-
baseURL?: string | undefined;
|
|
13185
14089
|
streamRate?: number | undefined;
|
|
13186
14090
|
titlePrompt?: string | undefined;
|
|
13187
14091
|
titleModel?: string | undefined;
|
|
@@ -13223,14 +14127,44 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13223
14127
|
} | undefined;
|
|
13224
14128
|
addParams?: Record<string, any> | undefined;
|
|
13225
14129
|
dropParams?: string[] | undefined;
|
|
13226
|
-
summarize?: boolean | undefined;
|
|
13227
|
-
summaryModel?: string | undefined;
|
|
13228
14130
|
modelDisplayLabel?: string | undefined;
|
|
13229
14131
|
customParams?: {
|
|
13230
14132
|
defaultParamsEndpoint?: string | undefined;
|
|
13231
|
-
paramDefinitions?:
|
|
14133
|
+
paramDefinitions?: {
|
|
14134
|
+
key: string;
|
|
14135
|
+
default?: string | number | boolean | string[] | undefined;
|
|
14136
|
+
options?: string[] | undefined;
|
|
14137
|
+
type?: SettingTypes | undefined;
|
|
14138
|
+
description?: string | undefined;
|
|
14139
|
+
placeholder?: string | undefined;
|
|
14140
|
+
label?: string | undefined;
|
|
14141
|
+
showLabel?: boolean | undefined;
|
|
14142
|
+
showDefault?: boolean | undefined;
|
|
14143
|
+
range?: {
|
|
14144
|
+
min: number;
|
|
14145
|
+
max: number;
|
|
14146
|
+
step?: number | undefined;
|
|
14147
|
+
} | undefined;
|
|
14148
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
14149
|
+
component?: ComponentTypes | undefined;
|
|
14150
|
+
optionType?: OptionTypes | undefined;
|
|
14151
|
+
columnSpan?: number | undefined;
|
|
14152
|
+
columns?: number | undefined;
|
|
14153
|
+
labelCode?: boolean | undefined;
|
|
14154
|
+
placeholderCode?: boolean | undefined;
|
|
14155
|
+
descriptionCode?: boolean | undefined;
|
|
14156
|
+
minText?: number | undefined;
|
|
14157
|
+
maxText?: number | undefined;
|
|
14158
|
+
minTags?: number | undefined;
|
|
14159
|
+
maxTags?: number | undefined;
|
|
14160
|
+
includeInput?: boolean | undefined;
|
|
14161
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
14162
|
+
searchPlaceholder?: string | undefined;
|
|
14163
|
+
selectPlaceholder?: string | undefined;
|
|
14164
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
14165
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
14166
|
+
}[] | undefined;
|
|
13232
14167
|
} | undefined;
|
|
13233
|
-
customOrder?: number | undefined;
|
|
13234
14168
|
directEndpoint?: boolean | undefined;
|
|
13235
14169
|
titleMessageRole?: string | undefined;
|
|
13236
14170
|
}[] | undefined;
|
|
@@ -13249,7 +14183,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13249
14183
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
13250
14184
|
} | undefined;
|
|
13251
14185
|
all?: {
|
|
13252
|
-
baseURL?: string | undefined;
|
|
13253
14186
|
streamRate?: number | undefined;
|
|
13254
14187
|
titlePrompt?: string | undefined;
|
|
13255
14188
|
titleModel?: string | undefined;
|
|
@@ -13820,8 +14753,8 @@ export declare enum LocalStorageKeys {
|
|
|
13820
14753
|
LAST_PROMPT_CATEGORY = "lastPromptCategory",
|
|
13821
14754
|
/** Key for rendering User Messages as Markdown */
|
|
13822
14755
|
ENABLE_USER_MSG_MARKDOWN = "enableUserMsgMarkdown",
|
|
13823
|
-
/** Key for
|
|
13824
|
-
|
|
14756
|
+
/** Key for auto-expanding tool call details */
|
|
14757
|
+
AUTO_EXPAND_TOOLS = "autoExpandTools",
|
|
13825
14758
|
/** Last selected MCP values per conversation ID */
|
|
13826
14759
|
LAST_MCP_ = "LAST_MCP_",
|
|
13827
14760
|
/** Last checked toggle for Code Interpreter API per conversation ID */
|