librechat-data-provider 0.8.404 → 0.8.406
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/config.d.ts +372 -330
- package/dist/types/file-config.d.ts +18 -18
- package/dist/types/mcp.d.ts +9 -15
- package/dist/types/models.d.ts +2 -52
- package/dist/types/permissions.d.ts +23 -0
- package/dist/types/schemas.d.ts +1 -11
- package/dist/types/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/types/config.d.ts
CHANGED
|
@@ -57,11 +57,11 @@ export declare const azureBaseSchema: z.ZodObject<{
|
|
|
57
57
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
58
58
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
59
59
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
60
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
60
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
61
61
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
62
62
|
version: z.ZodOptional<z.ZodString>;
|
|
63
63
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
64
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
64
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
65
65
|
}, "strip", z.ZodTypeAny, {
|
|
66
66
|
apiKey: string;
|
|
67
67
|
version?: string | undefined;
|
|
@@ -70,9 +70,9 @@ export declare const azureBaseSchema: z.ZodObject<{
|
|
|
70
70
|
deploymentName?: string | undefined;
|
|
71
71
|
assistants?: boolean | undefined;
|
|
72
72
|
serverless?: boolean | undefined;
|
|
73
|
-
addParams?: Record<string,
|
|
73
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
74
74
|
dropParams?: string[] | undefined;
|
|
75
|
-
additionalHeaders?: Record<string,
|
|
75
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
76
76
|
}, {
|
|
77
77
|
apiKey: string;
|
|
78
78
|
version?: string | undefined;
|
|
@@ -81,9 +81,9 @@ export declare const azureBaseSchema: z.ZodObject<{
|
|
|
81
81
|
deploymentName?: string | undefined;
|
|
82
82
|
assistants?: boolean | undefined;
|
|
83
83
|
serverless?: boolean | undefined;
|
|
84
|
-
addParams?: Record<string,
|
|
84
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
85
85
|
dropParams?: string[] | undefined;
|
|
86
|
-
additionalHeaders?: Record<string,
|
|
86
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
87
87
|
}>;
|
|
88
88
|
export type TAzureBaseSchema = z.infer<typeof azureBaseSchema>;
|
|
89
89
|
export declare const azureGroupSchema: z.ZodIntersection<z.ZodObject<{
|
|
@@ -121,11 +121,11 @@ export declare const azureGroupSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
121
121
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
122
122
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
123
123
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
124
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
124
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
125
125
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
126
126
|
version: z.ZodOptional<z.ZodString>;
|
|
127
127
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
128
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
128
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
129
129
|
}, "strip", z.ZodTypeAny, {
|
|
130
130
|
apiKey: string;
|
|
131
131
|
version?: string | undefined;
|
|
@@ -134,9 +134,9 @@ export declare const azureGroupSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
134
134
|
deploymentName?: string | undefined;
|
|
135
135
|
assistants?: boolean | undefined;
|
|
136
136
|
serverless?: boolean | undefined;
|
|
137
|
-
addParams?: Record<string,
|
|
137
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
138
138
|
dropParams?: string[] | undefined;
|
|
139
|
-
additionalHeaders?: Record<string,
|
|
139
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
140
140
|
}, {
|
|
141
141
|
apiKey: string;
|
|
142
142
|
version?: string | undefined;
|
|
@@ -145,9 +145,9 @@ export declare const azureGroupSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
145
145
|
deploymentName?: string | undefined;
|
|
146
146
|
assistants?: boolean | undefined;
|
|
147
147
|
serverless?: boolean | undefined;
|
|
148
|
-
addParams?: Record<string,
|
|
148
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
149
149
|
dropParams?: string[] | undefined;
|
|
150
|
-
additionalHeaders?: Record<string,
|
|
150
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
151
151
|
}>>;
|
|
152
152
|
export declare const azureGroupConfigsSchema: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
153
153
|
group: z.ZodString;
|
|
@@ -184,11 +184,11 @@ export declare const azureGroupConfigsSchema: z.ZodArray<z.ZodIntersection<z.Zod
|
|
|
184
184
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
185
185
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
186
186
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
187
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
187
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
188
188
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
189
189
|
version: z.ZodOptional<z.ZodString>;
|
|
190
190
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
191
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
191
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
192
192
|
}, "strip", z.ZodTypeAny, {
|
|
193
193
|
apiKey: string;
|
|
194
194
|
version?: string | undefined;
|
|
@@ -197,9 +197,9 @@ export declare const azureGroupConfigsSchema: z.ZodArray<z.ZodIntersection<z.Zod
|
|
|
197
197
|
deploymentName?: string | undefined;
|
|
198
198
|
assistants?: boolean | undefined;
|
|
199
199
|
serverless?: boolean | undefined;
|
|
200
|
-
addParams?: Record<string,
|
|
200
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
201
201
|
dropParams?: string[] | undefined;
|
|
202
|
-
additionalHeaders?: Record<string,
|
|
202
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
203
203
|
}, {
|
|
204
204
|
apiKey: string;
|
|
205
205
|
version?: string | undefined;
|
|
@@ -208,9 +208,9 @@ export declare const azureGroupConfigsSchema: z.ZodArray<z.ZodIntersection<z.Zod
|
|
|
208
208
|
deploymentName?: string | undefined;
|
|
209
209
|
assistants?: boolean | undefined;
|
|
210
210
|
serverless?: boolean | undefined;
|
|
211
|
-
addParams?: Record<string,
|
|
211
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
212
212
|
dropParams?: string[] | undefined;
|
|
213
|
-
additionalHeaders?: Record<string,
|
|
213
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
214
214
|
}>>, "many">;
|
|
215
215
|
export type TAzureGroup = z.infer<typeof azureGroupSchema>;
|
|
216
216
|
export type TAzureGroups = z.infer<typeof azureGroupConfigsSchema>;
|
|
@@ -383,14 +383,14 @@ export declare const assistantEndpointSchema: z.ZodObject<{
|
|
|
383
383
|
fetch?: boolean | undefined;
|
|
384
384
|
userIdQuery?: boolean | undefined;
|
|
385
385
|
}>>;
|
|
386
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
386
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
387
387
|
}, "strip", z.ZodTypeAny, {
|
|
388
388
|
version: string | number;
|
|
389
389
|
retrievalModels: string[];
|
|
390
390
|
capabilities: Capabilities[];
|
|
391
391
|
apiKey?: string | undefined;
|
|
392
392
|
baseURL?: string | undefined;
|
|
393
|
-
headers?: Record<string,
|
|
393
|
+
headers?: Record<string, string> | undefined;
|
|
394
394
|
streamRate?: number | undefined;
|
|
395
395
|
titlePrompt?: string | undefined;
|
|
396
396
|
titleModel?: string | undefined;
|
|
@@ -417,7 +417,7 @@ export declare const assistantEndpointSchema: z.ZodObject<{
|
|
|
417
417
|
version?: string | number | undefined;
|
|
418
418
|
apiKey?: string | undefined;
|
|
419
419
|
baseURL?: string | undefined;
|
|
420
|
-
headers?: Record<string,
|
|
420
|
+
headers?: Record<string, string> | undefined;
|
|
421
421
|
streamRate?: number | undefined;
|
|
422
422
|
titlePrompt?: string | undefined;
|
|
423
423
|
titleModel?: string | undefined;
|
|
@@ -501,6 +501,114 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
501
501
|
allowedProviders?: string[] | undefined;
|
|
502
502
|
}>>;
|
|
503
503
|
export type TAgentsEndpoint = z.infer<typeof agentsEndpointSchema>;
|
|
504
|
+
export declare const paramDefinitionSchema: z.ZodObject<{
|
|
505
|
+
key: z.ZodString;
|
|
506
|
+
description: z.ZodOptional<z.ZodString>;
|
|
507
|
+
type: z.ZodOptional<z.ZodNativeEnum<typeof SettingTypes>>;
|
|
508
|
+
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
509
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
510
|
+
showDefault: z.ZodOptional<z.ZodBoolean>;
|
|
511
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
512
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
513
|
+
min: z.ZodNumber;
|
|
514
|
+
max: z.ZodNumber;
|
|
515
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
516
|
+
}, "strip", z.ZodTypeAny, {
|
|
517
|
+
min: number;
|
|
518
|
+
max: number;
|
|
519
|
+
step?: number | undefined;
|
|
520
|
+
}, {
|
|
521
|
+
min: number;
|
|
522
|
+
max: number;
|
|
523
|
+
step?: number | undefined;
|
|
524
|
+
}>>;
|
|
525
|
+
enumMappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString]>>>;
|
|
526
|
+
component: z.ZodOptional<z.ZodNativeEnum<typeof ComponentTypes>>;
|
|
527
|
+
optionType: z.ZodOptional<z.ZodNativeEnum<typeof OptionTypes>>;
|
|
528
|
+
columnSpan: z.ZodOptional<z.ZodNumber>;
|
|
529
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
530
|
+
label: z.ZodOptional<z.ZodString>;
|
|
531
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
532
|
+
labelCode: z.ZodOptional<z.ZodBoolean>;
|
|
533
|
+
placeholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
534
|
+
descriptionCode: z.ZodOptional<z.ZodBoolean>;
|
|
535
|
+
minText: z.ZodOptional<z.ZodNumber>;
|
|
536
|
+
maxText: z.ZodOptional<z.ZodNumber>;
|
|
537
|
+
minTags: z.ZodOptional<z.ZodNumber>;
|
|
538
|
+
maxTags: z.ZodOptional<z.ZodNumber>;
|
|
539
|
+
includeInput: z.ZodOptional<z.ZodBoolean>;
|
|
540
|
+
descriptionSide: z.ZodOptional<z.ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
541
|
+
searchPlaceholder: z.ZodOptional<z.ZodString>;
|
|
542
|
+
selectPlaceholder: z.ZodOptional<z.ZodString>;
|
|
543
|
+
searchPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
544
|
+
selectPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
545
|
+
}, "strip", z.ZodTypeAny, {
|
|
546
|
+
key: string;
|
|
547
|
+
default?: string | number | boolean | string[] | undefined;
|
|
548
|
+
options?: string[] | undefined;
|
|
549
|
+
type?: SettingTypes | undefined;
|
|
550
|
+
description?: string | undefined;
|
|
551
|
+
placeholder?: string | undefined;
|
|
552
|
+
label?: string | undefined;
|
|
553
|
+
showLabel?: boolean | undefined;
|
|
554
|
+
showDefault?: boolean | undefined;
|
|
555
|
+
range?: {
|
|
556
|
+
min: number;
|
|
557
|
+
max: number;
|
|
558
|
+
step?: number | undefined;
|
|
559
|
+
} | undefined;
|
|
560
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
561
|
+
component?: ComponentTypes | undefined;
|
|
562
|
+
optionType?: OptionTypes | undefined;
|
|
563
|
+
columnSpan?: number | undefined;
|
|
564
|
+
columns?: number | undefined;
|
|
565
|
+
labelCode?: boolean | undefined;
|
|
566
|
+
placeholderCode?: boolean | undefined;
|
|
567
|
+
descriptionCode?: boolean | undefined;
|
|
568
|
+
minText?: number | undefined;
|
|
569
|
+
maxText?: number | undefined;
|
|
570
|
+
minTags?: number | undefined;
|
|
571
|
+
maxTags?: number | undefined;
|
|
572
|
+
includeInput?: boolean | undefined;
|
|
573
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
574
|
+
searchPlaceholder?: string | undefined;
|
|
575
|
+
selectPlaceholder?: string | undefined;
|
|
576
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
577
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
578
|
+
}, {
|
|
579
|
+
key: string;
|
|
580
|
+
default?: string | number | boolean | string[] | undefined;
|
|
581
|
+
options?: string[] | undefined;
|
|
582
|
+
type?: SettingTypes | undefined;
|
|
583
|
+
description?: string | undefined;
|
|
584
|
+
placeholder?: string | undefined;
|
|
585
|
+
label?: string | undefined;
|
|
586
|
+
showLabel?: boolean | undefined;
|
|
587
|
+
showDefault?: boolean | undefined;
|
|
588
|
+
range?: {
|
|
589
|
+
min: number;
|
|
590
|
+
max: number;
|
|
591
|
+
step?: number | undefined;
|
|
592
|
+
} | undefined;
|
|
593
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
594
|
+
component?: ComponentTypes | undefined;
|
|
595
|
+
optionType?: OptionTypes | undefined;
|
|
596
|
+
columnSpan?: number | undefined;
|
|
597
|
+
columns?: number | undefined;
|
|
598
|
+
labelCode?: boolean | undefined;
|
|
599
|
+
placeholderCode?: boolean | undefined;
|
|
600
|
+
descriptionCode?: boolean | undefined;
|
|
601
|
+
minText?: number | undefined;
|
|
602
|
+
maxText?: number | undefined;
|
|
603
|
+
minTags?: number | undefined;
|
|
604
|
+
maxTags?: number | undefined;
|
|
605
|
+
includeInput?: boolean | undefined;
|
|
606
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
607
|
+
searchPlaceholder?: string | undefined;
|
|
608
|
+
selectPlaceholder?: string | undefined;
|
|
609
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
610
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
611
|
+
}>;
|
|
504
612
|
export declare const endpointSchema: z.ZodObject<{
|
|
505
613
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
506
614
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -544,8 +652,8 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
544
652
|
}>;
|
|
545
653
|
iconURL: z.ZodOptional<z.ZodString>;
|
|
546
654
|
modelDisplayLabel: z.ZodOptional<z.ZodString>;
|
|
547
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
548
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
655
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
656
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
549
657
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
550
658
|
customParams: z.ZodOptional<z.ZodObject<{
|
|
551
659
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
@@ -731,7 +839,7 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
731
839
|
}[] | undefined;
|
|
732
840
|
}>>;
|
|
733
841
|
directEndpoint: z.ZodOptional<z.ZodBoolean>;
|
|
734
|
-
titleMessageRole: z.ZodOptional<z.
|
|
842
|
+
titleMessageRole: z.ZodOptional<z.ZodEnum<["system", "user", "assistant"]>>;
|
|
735
843
|
}, "strip", z.ZodTypeAny, {
|
|
736
844
|
apiKey: string;
|
|
737
845
|
baseURL: string;
|
|
@@ -745,7 +853,7 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
745
853
|
userIdQuery?: boolean | undefined;
|
|
746
854
|
};
|
|
747
855
|
iconURL?: string | undefined;
|
|
748
|
-
headers?: Record<string,
|
|
856
|
+
headers?: Record<string, string> | undefined;
|
|
749
857
|
streamRate?: number | undefined;
|
|
750
858
|
titlePrompt?: string | undefined;
|
|
751
859
|
titleModel?: string | undefined;
|
|
@@ -754,7 +862,7 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
754
862
|
titleEndpoint?: string | undefined;
|
|
755
863
|
titlePromptTemplate?: string | undefined;
|
|
756
864
|
maxToolResultChars?: number | undefined;
|
|
757
|
-
addParams?: Record<string,
|
|
865
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
758
866
|
dropParams?: string[] | undefined;
|
|
759
867
|
modelDisplayLabel?: string | undefined;
|
|
760
868
|
customParams?: {
|
|
@@ -795,7 +903,7 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
795
903
|
}[] | undefined;
|
|
796
904
|
} | undefined;
|
|
797
905
|
directEndpoint?: boolean | undefined;
|
|
798
|
-
titleMessageRole?:
|
|
906
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
799
907
|
}, {
|
|
800
908
|
apiKey: string;
|
|
801
909
|
baseURL: string;
|
|
@@ -809,7 +917,7 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
809
917
|
userIdQuery?: boolean | undefined;
|
|
810
918
|
};
|
|
811
919
|
iconURL?: string | undefined;
|
|
812
|
-
headers?: Record<string,
|
|
920
|
+
headers?: Record<string, string> | undefined;
|
|
813
921
|
streamRate?: number | undefined;
|
|
814
922
|
titlePrompt?: string | undefined;
|
|
815
923
|
titleModel?: string | undefined;
|
|
@@ -818,7 +926,7 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
818
926
|
titleEndpoint?: string | undefined;
|
|
819
927
|
titlePromptTemplate?: string | undefined;
|
|
820
928
|
maxToolResultChars?: number | undefined;
|
|
821
|
-
addParams?: Record<string,
|
|
929
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
822
930
|
dropParams?: string[] | undefined;
|
|
823
931
|
modelDisplayLabel?: string | undefined;
|
|
824
932
|
customParams?: {
|
|
@@ -859,7 +967,7 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
859
967
|
}[] | undefined;
|
|
860
968
|
} | undefined;
|
|
861
969
|
directEndpoint?: boolean | undefined;
|
|
862
|
-
titleMessageRole?:
|
|
970
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
863
971
|
}>;
|
|
864
972
|
export type TEndpoint = z.infer<typeof endpointSchema>;
|
|
865
973
|
export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
@@ -898,11 +1006,11 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
898
1006
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
899
1007
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
900
1008
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
901
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
1009
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
902
1010
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
903
1011
|
version: z.ZodOptional<z.ZodString>;
|
|
904
1012
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
905
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
1013
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
906
1014
|
}, "strip", z.ZodTypeAny, {
|
|
907
1015
|
apiKey: string;
|
|
908
1016
|
version?: string | undefined;
|
|
@@ -911,9 +1019,9 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
911
1019
|
deploymentName?: string | undefined;
|
|
912
1020
|
assistants?: boolean | undefined;
|
|
913
1021
|
serverless?: boolean | undefined;
|
|
914
|
-
addParams?: Record<string,
|
|
1022
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
915
1023
|
dropParams?: string[] | undefined;
|
|
916
|
-
additionalHeaders?: Record<string,
|
|
1024
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
917
1025
|
}, {
|
|
918
1026
|
apiKey: string;
|
|
919
1027
|
version?: string | undefined;
|
|
@@ -922,9 +1030,9 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
922
1030
|
deploymentName?: string | undefined;
|
|
923
1031
|
assistants?: boolean | undefined;
|
|
924
1032
|
serverless?: boolean | undefined;
|
|
925
|
-
addParams?: Record<string,
|
|
1033
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
926
1034
|
dropParams?: string[] | undefined;
|
|
927
|
-
additionalHeaders?: Record<string,
|
|
1035
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
928
1036
|
}>>, "many">;
|
|
929
1037
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
930
1038
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -943,9 +1051,9 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
943
1051
|
deploymentName?: string | undefined;
|
|
944
1052
|
assistants?: boolean | undefined;
|
|
945
1053
|
serverless?: boolean | undefined;
|
|
946
|
-
addParams?: Record<string,
|
|
1054
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
947
1055
|
dropParams?: string[] | undefined;
|
|
948
|
-
additionalHeaders?: Record<string,
|
|
1056
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
949
1057
|
})[];
|
|
950
1058
|
assistants?: boolean | undefined;
|
|
951
1059
|
}, {
|
|
@@ -964,9 +1072,9 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
964
1072
|
deploymentName?: string | undefined;
|
|
965
1073
|
assistants?: boolean | undefined;
|
|
966
1074
|
serverless?: boolean | undefined;
|
|
967
|
-
addParams?: Record<string,
|
|
1075
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
968
1076
|
dropParams?: string[] | undefined;
|
|
969
|
-
additionalHeaders?: Record<string,
|
|
1077
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
970
1078
|
})[];
|
|
971
1079
|
assistants?: boolean | undefined;
|
|
972
1080
|
}>, z.ZodObject<{
|
|
@@ -2101,17 +2209,17 @@ export declare const memorySchema: z.ZodObject<{
|
|
|
2101
2209
|
provider: z.ZodString;
|
|
2102
2210
|
model: z.ZodString;
|
|
2103
2211
|
instructions: z.ZodOptional<z.ZodString>;
|
|
2104
|
-
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
2212
|
+
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
2105
2213
|
}, "strip", z.ZodTypeAny, {
|
|
2106
2214
|
model: string;
|
|
2107
2215
|
provider: string;
|
|
2108
2216
|
instructions?: string | undefined;
|
|
2109
|
-
model_parameters?: Record<string,
|
|
2217
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2110
2218
|
}, {
|
|
2111
2219
|
model: string;
|
|
2112
2220
|
provider: string;
|
|
2113
2221
|
instructions?: string | undefined;
|
|
2114
|
-
model_parameters?: Record<string,
|
|
2222
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2115
2223
|
}>]>>;
|
|
2116
2224
|
}, "strip", z.ZodTypeAny, {
|
|
2117
2225
|
charLimit: number;
|
|
@@ -2126,7 +2234,7 @@ export declare const memorySchema: z.ZodObject<{
|
|
|
2126
2234
|
model: string;
|
|
2127
2235
|
provider: string;
|
|
2128
2236
|
instructions?: string | undefined;
|
|
2129
|
-
model_parameters?: Record<string,
|
|
2237
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2130
2238
|
} | undefined;
|
|
2131
2239
|
}, {
|
|
2132
2240
|
disabled?: boolean | undefined;
|
|
@@ -2141,7 +2249,7 @@ export declare const memorySchema: z.ZodObject<{
|
|
|
2141
2249
|
model: string;
|
|
2142
2250
|
provider: string;
|
|
2143
2251
|
instructions?: string | undefined;
|
|
2144
|
-
model_parameters?: Record<string,
|
|
2252
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2145
2253
|
} | undefined;
|
|
2146
2254
|
}>;
|
|
2147
2255
|
export type TMemoryConfig = DeepPartial<z.infer<typeof memorySchema>>;
|
|
@@ -2296,8 +2404,8 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2296
2404
|
}>>;
|
|
2297
2405
|
iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2298
2406
|
modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2299
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
2300
|
-
addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
2407
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
2408
|
+
addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>>;
|
|
2301
2409
|
dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2302
2410
|
customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
2303
2411
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
@@ -2483,12 +2591,12 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2483
2591
|
}[] | undefined;
|
|
2484
2592
|
}>>>;
|
|
2485
2593
|
directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2486
|
-
titleMessageRole: z.ZodOptional<z.ZodOptional<z.
|
|
2594
|
+
titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodEnum<["system", "user", "assistant"]>>>;
|
|
2487
2595
|
}, "strip", z.ZodTypeAny, {
|
|
2488
2596
|
iconURL?: string | undefined;
|
|
2489
2597
|
apiKey?: string | undefined;
|
|
2490
2598
|
baseURL?: string | undefined;
|
|
2491
|
-
headers?: Record<string,
|
|
2599
|
+
headers?: Record<string, string> | undefined;
|
|
2492
2600
|
name?: string | undefined;
|
|
2493
2601
|
streamRate?: number | undefined;
|
|
2494
2602
|
titlePrompt?: string | undefined;
|
|
@@ -2506,7 +2614,7 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2506
2614
|
fetch?: boolean | undefined;
|
|
2507
2615
|
userIdQuery?: boolean | undefined;
|
|
2508
2616
|
} | undefined;
|
|
2509
|
-
addParams?: Record<string,
|
|
2617
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
2510
2618
|
dropParams?: string[] | undefined;
|
|
2511
2619
|
modelDisplayLabel?: string | undefined;
|
|
2512
2620
|
customParams?: {
|
|
@@ -2547,12 +2655,12 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2547
2655
|
}[] | undefined;
|
|
2548
2656
|
} | undefined;
|
|
2549
2657
|
directEndpoint?: boolean | undefined;
|
|
2550
|
-
titleMessageRole?:
|
|
2658
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
2551
2659
|
}, {
|
|
2552
2660
|
iconURL?: string | undefined;
|
|
2553
2661
|
apiKey?: string | undefined;
|
|
2554
2662
|
baseURL?: string | undefined;
|
|
2555
|
-
headers?: Record<string,
|
|
2663
|
+
headers?: Record<string, string> | undefined;
|
|
2556
2664
|
name?: string | undefined;
|
|
2557
2665
|
streamRate?: number | undefined;
|
|
2558
2666
|
titlePrompt?: string | undefined;
|
|
@@ -2570,7 +2678,7 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2570
2678
|
fetch?: boolean | undefined;
|
|
2571
2679
|
userIdQuery?: boolean | undefined;
|
|
2572
2680
|
} | undefined;
|
|
2573
|
-
addParams?: Record<string,
|
|
2681
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
2574
2682
|
dropParams?: string[] | undefined;
|
|
2575
2683
|
modelDisplayLabel?: string | undefined;
|
|
2576
2684
|
customParams?: {
|
|
@@ -2611,7 +2719,7 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2611
2719
|
}[] | undefined;
|
|
2612
2720
|
} | undefined;
|
|
2613
2721
|
directEndpoint?: boolean | undefined;
|
|
2614
|
-
titleMessageRole?:
|
|
2722
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
2615
2723
|
}>, "many">>;
|
|
2616
2724
|
export declare const configSchema: z.ZodObject<{
|
|
2617
2725
|
version: z.ZodString;
|
|
@@ -2844,17 +2952,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2844
2952
|
provider: z.ZodString;
|
|
2845
2953
|
model: z.ZodString;
|
|
2846
2954
|
instructions: z.ZodOptional<z.ZodString>;
|
|
2847
|
-
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
2955
|
+
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
2848
2956
|
}, "strip", z.ZodTypeAny, {
|
|
2849
2957
|
model: string;
|
|
2850
2958
|
provider: string;
|
|
2851
2959
|
instructions?: string | undefined;
|
|
2852
|
-
model_parameters?: Record<string,
|
|
2960
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2853
2961
|
}, {
|
|
2854
2962
|
model: string;
|
|
2855
2963
|
provider: string;
|
|
2856
2964
|
instructions?: string | undefined;
|
|
2857
|
-
model_parameters?: Record<string,
|
|
2965
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2858
2966
|
}>]>>;
|
|
2859
2967
|
}, "strip", z.ZodTypeAny, {
|
|
2860
2968
|
charLimit: number;
|
|
@@ -2869,7 +2977,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2869
2977
|
model: string;
|
|
2870
2978
|
provider: string;
|
|
2871
2979
|
instructions?: string | undefined;
|
|
2872
|
-
model_parameters?: Record<string,
|
|
2980
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2873
2981
|
} | undefined;
|
|
2874
2982
|
}, {
|
|
2875
2983
|
disabled?: boolean | undefined;
|
|
@@ -2884,7 +2992,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2884
2992
|
model: string;
|
|
2885
2993
|
provider: string;
|
|
2886
2994
|
instructions?: string | undefined;
|
|
2887
|
-
model_parameters?: Record<string,
|
|
2995
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2888
2996
|
} | undefined;
|
|
2889
2997
|
}>>;
|
|
2890
2998
|
summarization: z.ZodOptional<z.ZodObject<{
|
|
@@ -3058,7 +3166,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3058
3166
|
type: z.ZodDefault<z.ZodLiteral<"stdio">>;
|
|
3059
3167
|
command: z.ZodString;
|
|
3060
3168
|
args: z.ZodArray<z.ZodString, "many">;
|
|
3061
|
-
env: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>, Record<string, string> | undefined, Record<string, string> | undefined>;
|
|
3169
|
+
env: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>, Record<string, string> | undefined, Record<string, string> | undefined>; /** Maximum characters allowed in a single tool result before truncation. */
|
|
3062
3170
|
stderr: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["pipe", "ignore", "inherit"]>, z.ZodNumber]>>;
|
|
3063
3171
|
}, "strip", z.ZodTypeAny, {
|
|
3064
3172
|
type: "stdio";
|
|
@@ -4264,40 +4372,42 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4264
4372
|
conversationMode: z.ZodOptional<z.ZodBoolean>;
|
|
4265
4373
|
advancedMode: z.ZodOptional<z.ZodBoolean>;
|
|
4266
4374
|
speechToText: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
|
|
4267
|
-
|
|
4375
|
+
/** Keep in sync with STTProviders enum (defined below — cannot reference due to eval order) */
|
|
4376
|
+
engineSTT: z.ZodOptional<z.ZodEnum<["openai", "azureOpenAI"]>>;
|
|
4268
4377
|
languageSTT: z.ZodOptional<z.ZodString>;
|
|
4269
4378
|
autoTranscribeAudio: z.ZodOptional<z.ZodBoolean>;
|
|
4270
4379
|
decibelValue: z.ZodOptional<z.ZodNumber>;
|
|
4271
4380
|
autoSendText: z.ZodOptional<z.ZodNumber>;
|
|
4272
4381
|
}, "strip", z.ZodTypeAny, {
|
|
4273
|
-
engineSTT?:
|
|
4382
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
4274
4383
|
languageSTT?: string | undefined;
|
|
4275
4384
|
autoTranscribeAudio?: boolean | undefined;
|
|
4276
4385
|
decibelValue?: number | undefined;
|
|
4277
4386
|
autoSendText?: number | undefined;
|
|
4278
4387
|
}, {
|
|
4279
|
-
engineSTT?:
|
|
4388
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
4280
4389
|
languageSTT?: string | undefined;
|
|
4281
4390
|
autoTranscribeAudio?: boolean | undefined;
|
|
4282
4391
|
decibelValue?: number | undefined;
|
|
4283
4392
|
autoSendText?: number | undefined;
|
|
4284
4393
|
}>]>>;
|
|
4285
4394
|
textToSpeech: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
|
|
4286
|
-
|
|
4395
|
+
/** Keep in sync with TTSProviders enum (defined below — cannot reference due to eval order) */
|
|
4396
|
+
engineTTS: z.ZodOptional<z.ZodEnum<["openai", "azureOpenAI", "elevenlabs", "localai"]>>;
|
|
4287
4397
|
voice: z.ZodOptional<z.ZodString>;
|
|
4288
4398
|
languageTTS: z.ZodOptional<z.ZodString>;
|
|
4289
4399
|
automaticPlayback: z.ZodOptional<z.ZodBoolean>;
|
|
4290
4400
|
playbackRate: z.ZodOptional<z.ZodNumber>;
|
|
4291
4401
|
cacheTTS: z.ZodOptional<z.ZodBoolean>;
|
|
4292
4402
|
}, "strip", z.ZodTypeAny, {
|
|
4293
|
-
engineTTS?:
|
|
4403
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
4294
4404
|
voice?: string | undefined;
|
|
4295
4405
|
languageTTS?: string | undefined;
|
|
4296
4406
|
automaticPlayback?: boolean | undefined;
|
|
4297
4407
|
playbackRate?: number | undefined;
|
|
4298
4408
|
cacheTTS?: boolean | undefined;
|
|
4299
4409
|
}, {
|
|
4300
|
-
engineTTS?:
|
|
4410
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
4301
4411
|
voice?: string | undefined;
|
|
4302
4412
|
languageTTS?: string | undefined;
|
|
4303
4413
|
automaticPlayback?: boolean | undefined;
|
|
@@ -4308,14 +4418,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4308
4418
|
conversationMode?: boolean | undefined;
|
|
4309
4419
|
advancedMode?: boolean | undefined;
|
|
4310
4420
|
speechToText?: boolean | {
|
|
4311
|
-
engineSTT?:
|
|
4421
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
4312
4422
|
languageSTT?: string | undefined;
|
|
4313
4423
|
autoTranscribeAudio?: boolean | undefined;
|
|
4314
4424
|
decibelValue?: number | undefined;
|
|
4315
4425
|
autoSendText?: number | undefined;
|
|
4316
4426
|
} | undefined;
|
|
4317
4427
|
textToSpeech?: boolean | {
|
|
4318
|
-
engineTTS?:
|
|
4428
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
4319
4429
|
voice?: string | undefined;
|
|
4320
4430
|
languageTTS?: string | undefined;
|
|
4321
4431
|
automaticPlayback?: boolean | undefined;
|
|
@@ -4326,14 +4436,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4326
4436
|
conversationMode?: boolean | undefined;
|
|
4327
4437
|
advancedMode?: boolean | undefined;
|
|
4328
4438
|
speechToText?: boolean | {
|
|
4329
|
-
engineSTT?:
|
|
4439
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
4330
4440
|
languageSTT?: string | undefined;
|
|
4331
4441
|
autoTranscribeAudio?: boolean | undefined;
|
|
4332
4442
|
decibelValue?: number | undefined;
|
|
4333
4443
|
autoSendText?: number | undefined;
|
|
4334
4444
|
} | undefined;
|
|
4335
4445
|
textToSpeech?: boolean | {
|
|
4336
|
-
engineTTS?:
|
|
4446
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
4337
4447
|
voice?: string | undefined;
|
|
4338
4448
|
languageTTS?: string | undefined;
|
|
4339
4449
|
automaticPlayback?: boolean | undefined;
|
|
@@ -4395,14 +4505,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4395
4505
|
conversationMode?: boolean | undefined;
|
|
4396
4506
|
advancedMode?: boolean | undefined;
|
|
4397
4507
|
speechToText?: boolean | {
|
|
4398
|
-
engineSTT?:
|
|
4508
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
4399
4509
|
languageSTT?: string | undefined;
|
|
4400
4510
|
autoTranscribeAudio?: boolean | undefined;
|
|
4401
4511
|
decibelValue?: number | undefined;
|
|
4402
4512
|
autoSendText?: number | undefined;
|
|
4403
4513
|
} | undefined;
|
|
4404
4514
|
textToSpeech?: boolean | {
|
|
4405
|
-
engineTTS?:
|
|
4515
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
4406
4516
|
voice?: string | undefined;
|
|
4407
4517
|
languageTTS?: string | undefined;
|
|
4408
4518
|
automaticPlayback?: boolean | undefined;
|
|
@@ -4464,14 +4574,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4464
4574
|
conversationMode?: boolean | undefined;
|
|
4465
4575
|
advancedMode?: boolean | undefined;
|
|
4466
4576
|
speechToText?: boolean | {
|
|
4467
|
-
engineSTT?:
|
|
4577
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
4468
4578
|
languageSTT?: string | undefined;
|
|
4469
4579
|
autoTranscribeAudio?: boolean | undefined;
|
|
4470
4580
|
decibelValue?: number | undefined;
|
|
4471
4581
|
autoSendText?: number | undefined;
|
|
4472
4582
|
} | undefined;
|
|
4473
4583
|
textToSpeech?: boolean | {
|
|
4474
|
-
engineTTS?:
|
|
4584
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
4475
4585
|
voice?: string | undefined;
|
|
4476
4586
|
languageTTS?: string | undefined;
|
|
4477
4587
|
automaticPlayback?: boolean | undefined;
|
|
@@ -4602,19 +4712,19 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4602
4712
|
fileLimit: z.ZodOptional<z.ZodNumber>;
|
|
4603
4713
|
fileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4604
4714
|
totalSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4605
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
4715
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4606
4716
|
}, "strip", z.ZodTypeAny, {
|
|
4607
4717
|
disabled?: boolean | undefined;
|
|
4608
4718
|
fileLimit?: number | undefined;
|
|
4609
4719
|
fileSizeLimit?: number | undefined;
|
|
4610
4720
|
totalSizeLimit?: number | undefined;
|
|
4611
|
-
supportedMimeTypes?:
|
|
4721
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4612
4722
|
}, {
|
|
4613
4723
|
disabled?: boolean | undefined;
|
|
4614
4724
|
fileLimit?: number | undefined;
|
|
4615
4725
|
fileSizeLimit?: number | undefined;
|
|
4616
4726
|
totalSizeLimit?: number | undefined;
|
|
4617
|
-
supportedMimeTypes?:
|
|
4727
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4618
4728
|
}>>>;
|
|
4619
4729
|
serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4620
4730
|
avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4646,32 +4756,32 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4646
4756
|
quality?: number | undefined;
|
|
4647
4757
|
}>>;
|
|
4648
4758
|
ocr: z.ZodOptional<z.ZodObject<{
|
|
4649
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
4759
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4650
4760
|
}, "strip", z.ZodTypeAny, {
|
|
4651
|
-
supportedMimeTypes?:
|
|
4761
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4652
4762
|
}, {
|
|
4653
|
-
supportedMimeTypes?:
|
|
4763
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4654
4764
|
}>>;
|
|
4655
4765
|
text: z.ZodOptional<z.ZodObject<{
|
|
4656
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
4766
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4657
4767
|
}, "strip", z.ZodTypeAny, {
|
|
4658
|
-
supportedMimeTypes?:
|
|
4768
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4659
4769
|
}, {
|
|
4660
|
-
supportedMimeTypes?:
|
|
4770
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4661
4771
|
}>>;
|
|
4662
4772
|
}, "strip", z.ZodTypeAny, {
|
|
4663
4773
|
text?: {
|
|
4664
|
-
supportedMimeTypes?:
|
|
4774
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4665
4775
|
} | undefined;
|
|
4666
4776
|
ocr?: {
|
|
4667
|
-
supportedMimeTypes?:
|
|
4777
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4668
4778
|
} | undefined;
|
|
4669
4779
|
endpoints?: Record<string, {
|
|
4670
4780
|
disabled?: boolean | undefined;
|
|
4671
4781
|
fileLimit?: number | undefined;
|
|
4672
4782
|
fileSizeLimit?: number | undefined;
|
|
4673
4783
|
totalSizeLimit?: number | undefined;
|
|
4674
|
-
supportedMimeTypes?:
|
|
4784
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4675
4785
|
}> | undefined;
|
|
4676
4786
|
serverFileSizeLimit?: number | undefined;
|
|
4677
4787
|
avatarSizeLimit?: number | undefined;
|
|
@@ -4688,17 +4798,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4688
4798
|
} | undefined;
|
|
4689
4799
|
}, {
|
|
4690
4800
|
text?: {
|
|
4691
|
-
supportedMimeTypes?:
|
|
4801
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4692
4802
|
} | undefined;
|
|
4693
4803
|
ocr?: {
|
|
4694
|
-
supportedMimeTypes?:
|
|
4804
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4695
4805
|
} | undefined;
|
|
4696
4806
|
endpoints?: Record<string, {
|
|
4697
4807
|
disabled?: boolean | undefined;
|
|
4698
4808
|
fileLimit?: number | undefined;
|
|
4699
4809
|
fileSizeLimit?: number | undefined;
|
|
4700
4810
|
totalSizeLimit?: number | undefined;
|
|
4701
|
-
supportedMimeTypes?:
|
|
4811
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4702
4812
|
}> | undefined;
|
|
4703
4813
|
serverFileSizeLimit?: number | undefined;
|
|
4704
4814
|
avatarSizeLimit?: number | undefined;
|
|
@@ -4730,7 +4840,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4730
4840
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4731
4841
|
user: z.ZodOptional<z.ZodString>;
|
|
4732
4842
|
tools: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
4733
|
-
name: z.ZodString;
|
|
4843
|
+
name: z.ZodString;
|
|
4734
4844
|
pluginKey: z.ZodString;
|
|
4735
4845
|
description: z.ZodOptional<z.ZodString>;
|
|
4736
4846
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -4916,10 +5026,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4916
5026
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
4917
5027
|
order: z.ZodOptional<z.ZodNumber>;
|
|
4918
5028
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
4919
|
-
}, "iconURL" | "greeting" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel">, "strip", z.ZodTypeAny, {
|
|
5029
|
+
}, "conversationId" | "title" | "iconURL" | "greeting" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
|
|
4920
5030
|
endpoint: string | null;
|
|
4921
|
-
conversationId?: string | null | undefined;
|
|
4922
|
-
title?: string | null | undefined;
|
|
4923
5031
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4924
5032
|
tools?: string[] | {
|
|
4925
5033
|
name: string;
|
|
@@ -5009,13 +5117,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5009
5117
|
additional_instructions?: string | undefined;
|
|
5010
5118
|
append_current_datetime?: boolean | undefined;
|
|
5011
5119
|
stop?: string[] | undefined;
|
|
5012
|
-
presetId?: string | null | undefined;
|
|
5013
|
-
defaultPreset?: boolean | undefined;
|
|
5014
|
-
order?: number | undefined;
|
|
5015
5120
|
}, {
|
|
5016
5121
|
endpoint: string | null;
|
|
5017
|
-
conversationId?: string | null | undefined;
|
|
5018
|
-
title?: string | null | undefined;
|
|
5019
5122
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5020
5123
|
tools?: string[] | {
|
|
5021
5124
|
name: string;
|
|
@@ -5105,9 +5208,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5105
5208
|
additional_instructions?: string | undefined;
|
|
5106
5209
|
append_current_datetime?: boolean | undefined;
|
|
5107
5210
|
stop?: string[] | undefined;
|
|
5108
|
-
presetId?: string | null | undefined;
|
|
5109
|
-
defaultPreset?: boolean | undefined;
|
|
5110
|
-
order?: number | undefined;
|
|
5111
5211
|
}>;
|
|
5112
5212
|
order: z.ZodOptional<z.ZodNumber>;
|
|
5113
5213
|
default: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5128,8 +5228,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5128
5228
|
name: string;
|
|
5129
5229
|
preset: {
|
|
5130
5230
|
endpoint: string | null;
|
|
5131
|
-
conversationId?: string | null | undefined;
|
|
5132
|
-
title?: string | null | undefined;
|
|
5133
5231
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5134
5232
|
tools?: string[] | {
|
|
5135
5233
|
name: string;
|
|
@@ -5219,9 +5317,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5219
5317
|
additional_instructions?: string | undefined;
|
|
5220
5318
|
append_current_datetime?: boolean | undefined;
|
|
5221
5319
|
stop?: string[] | undefined;
|
|
5222
|
-
presetId?: string | null | undefined;
|
|
5223
|
-
defaultPreset?: boolean | undefined;
|
|
5224
|
-
order?: number | undefined;
|
|
5225
5320
|
};
|
|
5226
5321
|
iconURL?: string | undefined;
|
|
5227
5322
|
default?: boolean | undefined;
|
|
@@ -5242,8 +5337,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5242
5337
|
name: string;
|
|
5243
5338
|
preset: {
|
|
5244
5339
|
endpoint: string | null;
|
|
5245
|
-
conversationId?: string | null | undefined;
|
|
5246
|
-
title?: string | null | undefined;
|
|
5247
5340
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5248
5341
|
tools?: string[] | {
|
|
5249
5342
|
name: string;
|
|
@@ -5333,9 +5426,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5333
5426
|
additional_instructions?: string | undefined;
|
|
5334
5427
|
append_current_datetime?: boolean | undefined;
|
|
5335
5428
|
stop?: string[] | undefined;
|
|
5336
|
-
presetId?: string | null | undefined;
|
|
5337
|
-
defaultPreset?: boolean | undefined;
|
|
5338
|
-
order?: number | undefined;
|
|
5339
5429
|
};
|
|
5340
5430
|
iconURL?: string | undefined;
|
|
5341
5431
|
default?: boolean | undefined;
|
|
@@ -5361,8 +5451,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5361
5451
|
name: string;
|
|
5362
5452
|
preset: {
|
|
5363
5453
|
endpoint: string | null;
|
|
5364
|
-
conversationId?: string | null | undefined;
|
|
5365
|
-
title?: string | null | undefined;
|
|
5366
5454
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5367
5455
|
tools?: string[] | {
|
|
5368
5456
|
name: string;
|
|
@@ -5452,9 +5540,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5452
5540
|
additional_instructions?: string | undefined;
|
|
5453
5541
|
append_current_datetime?: boolean | undefined;
|
|
5454
5542
|
stop?: string[] | undefined;
|
|
5455
|
-
presetId?: string | null | undefined;
|
|
5456
|
-
defaultPreset?: boolean | undefined;
|
|
5457
|
-
order?: number | undefined;
|
|
5458
5543
|
};
|
|
5459
5544
|
iconURL?: string | undefined;
|
|
5460
5545
|
default?: boolean | undefined;
|
|
@@ -5478,8 +5563,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5478
5563
|
name: string;
|
|
5479
5564
|
preset: {
|
|
5480
5565
|
endpoint: string | null;
|
|
5481
|
-
conversationId?: string | null | undefined;
|
|
5482
|
-
title?: string | null | undefined;
|
|
5483
5566
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5484
5567
|
tools?: string[] | {
|
|
5485
5568
|
name: string;
|
|
@@ -5569,9 +5652,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5569
5652
|
additional_instructions?: string | undefined;
|
|
5570
5653
|
append_current_datetime?: boolean | undefined;
|
|
5571
5654
|
stop?: string[] | undefined;
|
|
5572
|
-
presetId?: string | null | undefined;
|
|
5573
|
-
defaultPreset?: boolean | undefined;
|
|
5574
|
-
order?: number | undefined;
|
|
5575
5655
|
};
|
|
5576
5656
|
iconURL?: string | undefined;
|
|
5577
5657
|
default?: boolean | undefined;
|
|
@@ -5820,11 +5900,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5820
5900
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
5821
5901
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
5822
5902
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
5823
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5903
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
5824
5904
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5825
5905
|
version: z.ZodOptional<z.ZodString>;
|
|
5826
5906
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
5827
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5907
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5828
5908
|
}, "strip", z.ZodTypeAny, {
|
|
5829
5909
|
apiKey: string;
|
|
5830
5910
|
version?: string | undefined;
|
|
@@ -5833,9 +5913,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5833
5913
|
deploymentName?: string | undefined;
|
|
5834
5914
|
assistants?: boolean | undefined;
|
|
5835
5915
|
serverless?: boolean | undefined;
|
|
5836
|
-
addParams?: Record<string,
|
|
5916
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
5837
5917
|
dropParams?: string[] | undefined;
|
|
5838
|
-
additionalHeaders?: Record<string,
|
|
5918
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
5839
5919
|
}, {
|
|
5840
5920
|
apiKey: string;
|
|
5841
5921
|
version?: string | undefined;
|
|
@@ -5844,9 +5924,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5844
5924
|
deploymentName?: string | undefined;
|
|
5845
5925
|
assistants?: boolean | undefined;
|
|
5846
5926
|
serverless?: boolean | undefined;
|
|
5847
|
-
addParams?: Record<string,
|
|
5927
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
5848
5928
|
dropParams?: string[] | undefined;
|
|
5849
|
-
additionalHeaders?: Record<string,
|
|
5929
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
5850
5930
|
}>>, "many">;
|
|
5851
5931
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
5852
5932
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5865,9 +5945,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5865
5945
|
deploymentName?: string | undefined;
|
|
5866
5946
|
assistants?: boolean | undefined;
|
|
5867
5947
|
serverless?: boolean | undefined;
|
|
5868
|
-
addParams?: Record<string,
|
|
5948
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
5869
5949
|
dropParams?: string[] | undefined;
|
|
5870
|
-
additionalHeaders?: Record<string,
|
|
5950
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
5871
5951
|
})[];
|
|
5872
5952
|
assistants?: boolean | undefined;
|
|
5873
5953
|
}, {
|
|
@@ -5886,9 +5966,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5886
5966
|
deploymentName?: string | undefined;
|
|
5887
5967
|
assistants?: boolean | undefined;
|
|
5888
5968
|
serverless?: boolean | undefined;
|
|
5889
|
-
addParams?: Record<string,
|
|
5969
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
5890
5970
|
dropParams?: string[] | undefined;
|
|
5891
|
-
additionalHeaders?: Record<string,
|
|
5971
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
5892
5972
|
})[];
|
|
5893
5973
|
assistants?: boolean | undefined;
|
|
5894
5974
|
}>, z.ZodObject<{
|
|
@@ -5963,14 +6043,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5963
6043
|
fetch?: boolean | undefined;
|
|
5964
6044
|
userIdQuery?: boolean | undefined;
|
|
5965
6045
|
}>>;
|
|
5966
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6046
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5967
6047
|
}, "strip", z.ZodTypeAny, {
|
|
5968
6048
|
version: string | number;
|
|
5969
6049
|
retrievalModels: string[];
|
|
5970
6050
|
capabilities: Capabilities[];
|
|
5971
6051
|
apiKey?: string | undefined;
|
|
5972
6052
|
baseURL?: string | undefined;
|
|
5973
|
-
headers?: Record<string,
|
|
6053
|
+
headers?: Record<string, string> | undefined;
|
|
5974
6054
|
streamRate?: number | undefined;
|
|
5975
6055
|
titlePrompt?: string | undefined;
|
|
5976
6056
|
titleModel?: string | undefined;
|
|
@@ -5997,7 +6077,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5997
6077
|
version?: string | number | undefined;
|
|
5998
6078
|
apiKey?: string | undefined;
|
|
5999
6079
|
baseURL?: string | undefined;
|
|
6000
|
-
headers?: Record<string,
|
|
6080
|
+
headers?: Record<string, string> | undefined;
|
|
6001
6081
|
streamRate?: number | undefined;
|
|
6002
6082
|
titlePrompt?: string | undefined;
|
|
6003
6083
|
titleModel?: string | undefined;
|
|
@@ -6073,14 +6153,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6073
6153
|
fetch?: boolean | undefined;
|
|
6074
6154
|
userIdQuery?: boolean | undefined;
|
|
6075
6155
|
}>>;
|
|
6076
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6156
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6077
6157
|
}, "strip", z.ZodTypeAny, {
|
|
6078
6158
|
version: string | number;
|
|
6079
6159
|
retrievalModels: string[];
|
|
6080
6160
|
capabilities: Capabilities[];
|
|
6081
6161
|
apiKey?: string | undefined;
|
|
6082
6162
|
baseURL?: string | undefined;
|
|
6083
|
-
headers?: Record<string,
|
|
6163
|
+
headers?: Record<string, string> | undefined;
|
|
6084
6164
|
streamRate?: number | undefined;
|
|
6085
6165
|
titlePrompt?: string | undefined;
|
|
6086
6166
|
titleModel?: string | undefined;
|
|
@@ -6107,7 +6187,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6107
6187
|
version?: string | number | undefined;
|
|
6108
6188
|
apiKey?: string | undefined;
|
|
6109
6189
|
baseURL?: string | undefined;
|
|
6110
|
-
headers?: Record<string,
|
|
6190
|
+
headers?: Record<string, string> | undefined;
|
|
6111
6191
|
streamRate?: number | undefined;
|
|
6112
6192
|
titlePrompt?: string | undefined;
|
|
6113
6193
|
titleModel?: string | undefined;
|
|
@@ -6230,8 +6310,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6230
6310
|
}>>;
|
|
6231
6311
|
iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6232
6312
|
modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6233
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6234
|
-
addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6313
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6314
|
+
addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>>;
|
|
6235
6315
|
dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
6236
6316
|
customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
6237
6317
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
@@ -6417,12 +6497,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6417
6497
|
}[] | undefined;
|
|
6418
6498
|
}>>>;
|
|
6419
6499
|
directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
6420
|
-
titleMessageRole: z.ZodOptional<z.ZodOptional<z.
|
|
6500
|
+
titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodEnum<["system", "user", "assistant"]>>>;
|
|
6421
6501
|
}, "strip", z.ZodTypeAny, {
|
|
6422
6502
|
iconURL?: string | undefined;
|
|
6423
6503
|
apiKey?: string | undefined;
|
|
6424
6504
|
baseURL?: string | undefined;
|
|
6425
|
-
headers?: Record<string,
|
|
6505
|
+
headers?: Record<string, string> | undefined;
|
|
6426
6506
|
name?: string | undefined;
|
|
6427
6507
|
streamRate?: number | undefined;
|
|
6428
6508
|
titlePrompt?: string | undefined;
|
|
@@ -6440,7 +6520,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6440
6520
|
fetch?: boolean | undefined;
|
|
6441
6521
|
userIdQuery?: boolean | undefined;
|
|
6442
6522
|
} | undefined;
|
|
6443
|
-
addParams?: Record<string,
|
|
6523
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6444
6524
|
dropParams?: string[] | undefined;
|
|
6445
6525
|
modelDisplayLabel?: string | undefined;
|
|
6446
6526
|
customParams?: {
|
|
@@ -6481,12 +6561,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6481
6561
|
}[] | undefined;
|
|
6482
6562
|
} | undefined;
|
|
6483
6563
|
directEndpoint?: boolean | undefined;
|
|
6484
|
-
titleMessageRole?:
|
|
6564
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
6485
6565
|
}, {
|
|
6486
6566
|
iconURL?: string | undefined;
|
|
6487
6567
|
apiKey?: string | undefined;
|
|
6488
6568
|
baseURL?: string | undefined;
|
|
6489
|
-
headers?: Record<string,
|
|
6569
|
+
headers?: Record<string, string> | undefined;
|
|
6490
6570
|
name?: string | undefined;
|
|
6491
6571
|
streamRate?: number | undefined;
|
|
6492
6572
|
titlePrompt?: string | undefined;
|
|
@@ -6504,7 +6584,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6504
6584
|
fetch?: boolean | undefined;
|
|
6505
6585
|
userIdQuery?: boolean | undefined;
|
|
6506
6586
|
} | undefined;
|
|
6507
|
-
addParams?: Record<string,
|
|
6587
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6508
6588
|
dropParams?: string[] | undefined;
|
|
6509
6589
|
modelDisplayLabel?: string | undefined;
|
|
6510
6590
|
customParams?: {
|
|
@@ -6545,7 +6625,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6545
6625
|
}[] | undefined;
|
|
6546
6626
|
} | undefined;
|
|
6547
6627
|
directEndpoint?: boolean | undefined;
|
|
6548
|
-
titleMessageRole?:
|
|
6628
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
6549
6629
|
}>, "many">>>;
|
|
6550
6630
|
bedrock: z.ZodOptional<z.ZodObject<{
|
|
6551
6631
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6606,9 +6686,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6606
6686
|
deploymentName?: string | undefined;
|
|
6607
6687
|
assistants?: boolean | undefined;
|
|
6608
6688
|
serverless?: boolean | undefined;
|
|
6609
|
-
addParams?: Record<string,
|
|
6689
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6610
6690
|
dropParams?: string[] | undefined;
|
|
6611
|
-
additionalHeaders?: Record<string,
|
|
6691
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
6612
6692
|
})[];
|
|
6613
6693
|
assistants?: boolean | undefined;
|
|
6614
6694
|
} & {
|
|
@@ -6669,7 +6749,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6669
6749
|
capabilities: Capabilities[];
|
|
6670
6750
|
apiKey?: string | undefined;
|
|
6671
6751
|
baseURL?: string | undefined;
|
|
6672
|
-
headers?: Record<string,
|
|
6752
|
+
headers?: Record<string, string> | undefined;
|
|
6673
6753
|
streamRate?: number | undefined;
|
|
6674
6754
|
titlePrompt?: string | undefined;
|
|
6675
6755
|
titleModel?: string | undefined;
|
|
@@ -6699,7 +6779,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6699
6779
|
capabilities: Capabilities[];
|
|
6700
6780
|
apiKey?: string | undefined;
|
|
6701
6781
|
baseURL?: string | undefined;
|
|
6702
|
-
headers?: Record<string,
|
|
6782
|
+
headers?: Record<string, string> | undefined;
|
|
6703
6783
|
streamRate?: number | undefined;
|
|
6704
6784
|
titlePrompt?: string | undefined;
|
|
6705
6785
|
titleModel?: string | undefined;
|
|
@@ -6745,7 +6825,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6745
6825
|
iconURL?: string | undefined;
|
|
6746
6826
|
apiKey?: string | undefined;
|
|
6747
6827
|
baseURL?: string | undefined;
|
|
6748
|
-
headers?: Record<string,
|
|
6828
|
+
headers?: Record<string, string> | undefined;
|
|
6749
6829
|
name?: string | undefined;
|
|
6750
6830
|
streamRate?: number | undefined;
|
|
6751
6831
|
titlePrompt?: string | undefined;
|
|
@@ -6763,7 +6843,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6763
6843
|
fetch?: boolean | undefined;
|
|
6764
6844
|
userIdQuery?: boolean | undefined;
|
|
6765
6845
|
} | undefined;
|
|
6766
|
-
addParams?: Record<string,
|
|
6846
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6767
6847
|
dropParams?: string[] | undefined;
|
|
6768
6848
|
modelDisplayLabel?: string | undefined;
|
|
6769
6849
|
customParams?: {
|
|
@@ -6804,7 +6884,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6804
6884
|
}[] | undefined;
|
|
6805
6885
|
} | undefined;
|
|
6806
6886
|
directEndpoint?: boolean | undefined;
|
|
6807
|
-
titleMessageRole?:
|
|
6887
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
6808
6888
|
}[] | undefined;
|
|
6809
6889
|
bedrock?: {
|
|
6810
6890
|
baseURL?: string | undefined;
|
|
@@ -6847,9 +6927,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6847
6927
|
deploymentName?: string | undefined;
|
|
6848
6928
|
assistants?: boolean | undefined;
|
|
6849
6929
|
serverless?: boolean | undefined;
|
|
6850
|
-
addParams?: Record<string,
|
|
6930
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6851
6931
|
dropParams?: string[] | undefined;
|
|
6852
|
-
additionalHeaders?: Record<string,
|
|
6932
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
6853
6933
|
})[];
|
|
6854
6934
|
assistants?: boolean | undefined;
|
|
6855
6935
|
} & {
|
|
@@ -6908,7 +6988,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6908
6988
|
version?: string | number | undefined;
|
|
6909
6989
|
apiKey?: string | undefined;
|
|
6910
6990
|
baseURL?: string | undefined;
|
|
6911
|
-
headers?: Record<string,
|
|
6991
|
+
headers?: Record<string, string> | undefined;
|
|
6912
6992
|
streamRate?: number | undefined;
|
|
6913
6993
|
titlePrompt?: string | undefined;
|
|
6914
6994
|
titleModel?: string | undefined;
|
|
@@ -6938,7 +7018,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6938
7018
|
version?: string | number | undefined;
|
|
6939
7019
|
apiKey?: string | undefined;
|
|
6940
7020
|
baseURL?: string | undefined;
|
|
6941
|
-
headers?: Record<string,
|
|
7021
|
+
headers?: Record<string, string> | undefined;
|
|
6942
7022
|
streamRate?: number | undefined;
|
|
6943
7023
|
titlePrompt?: string | undefined;
|
|
6944
7024
|
titleModel?: string | undefined;
|
|
@@ -6986,7 +7066,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6986
7066
|
iconURL?: string | undefined;
|
|
6987
7067
|
apiKey?: string | undefined;
|
|
6988
7068
|
baseURL?: string | undefined;
|
|
6989
|
-
headers?: Record<string,
|
|
7069
|
+
headers?: Record<string, string> | undefined;
|
|
6990
7070
|
name?: string | undefined;
|
|
6991
7071
|
streamRate?: number | undefined;
|
|
6992
7072
|
titlePrompt?: string | undefined;
|
|
@@ -7004,7 +7084,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7004
7084
|
fetch?: boolean | undefined;
|
|
7005
7085
|
userIdQuery?: boolean | undefined;
|
|
7006
7086
|
} | undefined;
|
|
7007
|
-
addParams?: Record<string,
|
|
7087
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
7008
7088
|
dropParams?: string[] | undefined;
|
|
7009
7089
|
modelDisplayLabel?: string | undefined;
|
|
7010
7090
|
customParams?: {
|
|
@@ -7045,7 +7125,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7045
7125
|
}[] | undefined;
|
|
7046
7126
|
} | undefined;
|
|
7047
7127
|
directEndpoint?: boolean | undefined;
|
|
7048
|
-
titleMessageRole?:
|
|
7128
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
7049
7129
|
}[] | undefined;
|
|
7050
7130
|
bedrock?: {
|
|
7051
7131
|
baseURL?: string | undefined;
|
|
@@ -7088,9 +7168,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7088
7168
|
deploymentName?: string | undefined;
|
|
7089
7169
|
assistants?: boolean | undefined;
|
|
7090
7170
|
serverless?: boolean | undefined;
|
|
7091
|
-
addParams?: Record<string,
|
|
7171
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
7092
7172
|
dropParams?: string[] | undefined;
|
|
7093
|
-
additionalHeaders?: Record<string,
|
|
7173
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
7094
7174
|
})[];
|
|
7095
7175
|
assistants?: boolean | undefined;
|
|
7096
7176
|
} & {
|
|
@@ -7151,7 +7231,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7151
7231
|
capabilities: Capabilities[];
|
|
7152
7232
|
apiKey?: string | undefined;
|
|
7153
7233
|
baseURL?: string | undefined;
|
|
7154
|
-
headers?: Record<string,
|
|
7234
|
+
headers?: Record<string, string> | undefined;
|
|
7155
7235
|
streamRate?: number | undefined;
|
|
7156
7236
|
titlePrompt?: string | undefined;
|
|
7157
7237
|
titleModel?: string | undefined;
|
|
@@ -7181,7 +7261,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7181
7261
|
capabilities: Capabilities[];
|
|
7182
7262
|
apiKey?: string | undefined;
|
|
7183
7263
|
baseURL?: string | undefined;
|
|
7184
|
-
headers?: Record<string,
|
|
7264
|
+
headers?: Record<string, string> | undefined;
|
|
7185
7265
|
streamRate?: number | undefined;
|
|
7186
7266
|
titlePrompt?: string | undefined;
|
|
7187
7267
|
titleModel?: string | undefined;
|
|
@@ -7227,7 +7307,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7227
7307
|
iconURL?: string | undefined;
|
|
7228
7308
|
apiKey?: string | undefined;
|
|
7229
7309
|
baseURL?: string | undefined;
|
|
7230
|
-
headers?: Record<string,
|
|
7310
|
+
headers?: Record<string, string> | undefined;
|
|
7231
7311
|
name?: string | undefined;
|
|
7232
7312
|
streamRate?: number | undefined;
|
|
7233
7313
|
titlePrompt?: string | undefined;
|
|
@@ -7245,7 +7325,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7245
7325
|
fetch?: boolean | undefined;
|
|
7246
7326
|
userIdQuery?: boolean | undefined;
|
|
7247
7327
|
} | undefined;
|
|
7248
|
-
addParams?: Record<string,
|
|
7328
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
7249
7329
|
dropParams?: string[] | undefined;
|
|
7250
7330
|
modelDisplayLabel?: string | undefined;
|
|
7251
7331
|
customParams?: {
|
|
@@ -7286,7 +7366,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7286
7366
|
}[] | undefined;
|
|
7287
7367
|
} | undefined;
|
|
7288
7368
|
directEndpoint?: boolean | undefined;
|
|
7289
|
-
titleMessageRole?:
|
|
7369
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
7290
7370
|
}[] | undefined;
|
|
7291
7371
|
bedrock?: {
|
|
7292
7372
|
baseURL?: string | undefined;
|
|
@@ -7329,9 +7409,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7329
7409
|
deploymentName?: string | undefined;
|
|
7330
7410
|
assistants?: boolean | undefined;
|
|
7331
7411
|
serverless?: boolean | undefined;
|
|
7332
|
-
addParams?: Record<string,
|
|
7412
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
7333
7413
|
dropParams?: string[] | undefined;
|
|
7334
|
-
additionalHeaders?: Record<string,
|
|
7414
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
7335
7415
|
})[];
|
|
7336
7416
|
assistants?: boolean | undefined;
|
|
7337
7417
|
} & {
|
|
@@ -7390,7 +7470,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7390
7470
|
version?: string | number | undefined;
|
|
7391
7471
|
apiKey?: string | undefined;
|
|
7392
7472
|
baseURL?: string | undefined;
|
|
7393
|
-
headers?: Record<string,
|
|
7473
|
+
headers?: Record<string, string> | undefined;
|
|
7394
7474
|
streamRate?: number | undefined;
|
|
7395
7475
|
titlePrompt?: string | undefined;
|
|
7396
7476
|
titleModel?: string | undefined;
|
|
@@ -7420,7 +7500,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7420
7500
|
version?: string | number | undefined;
|
|
7421
7501
|
apiKey?: string | undefined;
|
|
7422
7502
|
baseURL?: string | undefined;
|
|
7423
|
-
headers?: Record<string,
|
|
7503
|
+
headers?: Record<string, string> | undefined;
|
|
7424
7504
|
streamRate?: number | undefined;
|
|
7425
7505
|
titlePrompt?: string | undefined;
|
|
7426
7506
|
titleModel?: string | undefined;
|
|
@@ -7468,7 +7548,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7468
7548
|
iconURL?: string | undefined;
|
|
7469
7549
|
apiKey?: string | undefined;
|
|
7470
7550
|
baseURL?: string | undefined;
|
|
7471
|
-
headers?: Record<string,
|
|
7551
|
+
headers?: Record<string, string> | undefined;
|
|
7472
7552
|
name?: string | undefined;
|
|
7473
7553
|
streamRate?: number | undefined;
|
|
7474
7554
|
titlePrompt?: string | undefined;
|
|
@@ -7486,7 +7566,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7486
7566
|
fetch?: boolean | undefined;
|
|
7487
7567
|
userIdQuery?: boolean | undefined;
|
|
7488
7568
|
} | undefined;
|
|
7489
|
-
addParams?: Record<string,
|
|
7569
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
7490
7570
|
dropParams?: string[] | undefined;
|
|
7491
7571
|
modelDisplayLabel?: string | undefined;
|
|
7492
7572
|
customParams?: {
|
|
@@ -7527,7 +7607,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7527
7607
|
}[] | undefined;
|
|
7528
7608
|
} | undefined;
|
|
7529
7609
|
directEndpoint?: boolean | undefined;
|
|
7530
|
-
titleMessageRole?:
|
|
7610
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
7531
7611
|
}[] | undefined;
|
|
7532
7612
|
bedrock?: {
|
|
7533
7613
|
baseURL?: string | undefined;
|
|
@@ -7690,7 +7770,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7690
7770
|
model: string;
|
|
7691
7771
|
provider: string;
|
|
7692
7772
|
instructions?: string | undefined;
|
|
7693
|
-
model_parameters?: Record<string,
|
|
7773
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
7694
7774
|
} | undefined;
|
|
7695
7775
|
} | undefined;
|
|
7696
7776
|
summarization?: {
|
|
@@ -7967,14 +8047,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7967
8047
|
conversationMode?: boolean | undefined;
|
|
7968
8048
|
advancedMode?: boolean | undefined;
|
|
7969
8049
|
speechToText?: boolean | {
|
|
7970
|
-
engineSTT?:
|
|
8050
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
7971
8051
|
languageSTT?: string | undefined;
|
|
7972
8052
|
autoTranscribeAudio?: boolean | undefined;
|
|
7973
8053
|
decibelValue?: number | undefined;
|
|
7974
8054
|
autoSendText?: number | undefined;
|
|
7975
8055
|
} | undefined;
|
|
7976
8056
|
textToSpeech?: boolean | {
|
|
7977
|
-
engineTTS?:
|
|
8057
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
7978
8058
|
voice?: string | undefined;
|
|
7979
8059
|
languageTTS?: string | undefined;
|
|
7980
8060
|
automaticPlayback?: boolean | undefined;
|
|
@@ -8026,9 +8106,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8026
8106
|
deploymentName?: string | undefined;
|
|
8027
8107
|
assistants?: boolean | undefined;
|
|
8028
8108
|
serverless?: boolean | undefined;
|
|
8029
|
-
addParams?: Record<string,
|
|
8109
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
8030
8110
|
dropParams?: string[] | undefined;
|
|
8031
|
-
additionalHeaders?: Record<string,
|
|
8111
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
8032
8112
|
})[];
|
|
8033
8113
|
assistants?: boolean | undefined;
|
|
8034
8114
|
} & {
|
|
@@ -8089,7 +8169,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8089
8169
|
capabilities: Capabilities[];
|
|
8090
8170
|
apiKey?: string | undefined;
|
|
8091
8171
|
baseURL?: string | undefined;
|
|
8092
|
-
headers?: Record<string,
|
|
8172
|
+
headers?: Record<string, string> | undefined;
|
|
8093
8173
|
streamRate?: number | undefined;
|
|
8094
8174
|
titlePrompt?: string | undefined;
|
|
8095
8175
|
titleModel?: string | undefined;
|
|
@@ -8119,7 +8199,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8119
8199
|
capabilities: Capabilities[];
|
|
8120
8200
|
apiKey?: string | undefined;
|
|
8121
8201
|
baseURL?: string | undefined;
|
|
8122
|
-
headers?: Record<string,
|
|
8202
|
+
headers?: Record<string, string> | undefined;
|
|
8123
8203
|
streamRate?: number | undefined;
|
|
8124
8204
|
titlePrompt?: string | undefined;
|
|
8125
8205
|
titleModel?: string | undefined;
|
|
@@ -8165,7 +8245,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8165
8245
|
iconURL?: string | undefined;
|
|
8166
8246
|
apiKey?: string | undefined;
|
|
8167
8247
|
baseURL?: string | undefined;
|
|
8168
|
-
headers?: Record<string,
|
|
8248
|
+
headers?: Record<string, string> | undefined;
|
|
8169
8249
|
name?: string | undefined;
|
|
8170
8250
|
streamRate?: number | undefined;
|
|
8171
8251
|
titlePrompt?: string | undefined;
|
|
@@ -8183,7 +8263,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8183
8263
|
fetch?: boolean | undefined;
|
|
8184
8264
|
userIdQuery?: boolean | undefined;
|
|
8185
8265
|
} | undefined;
|
|
8186
|
-
addParams?: Record<string,
|
|
8266
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
8187
8267
|
dropParams?: string[] | undefined;
|
|
8188
8268
|
modelDisplayLabel?: string | undefined;
|
|
8189
8269
|
customParams?: {
|
|
@@ -8224,7 +8304,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8224
8304
|
}[] | undefined;
|
|
8225
8305
|
} | undefined;
|
|
8226
8306
|
directEndpoint?: boolean | undefined;
|
|
8227
|
-
titleMessageRole?:
|
|
8307
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
8228
8308
|
}[] | undefined;
|
|
8229
8309
|
bedrock?: {
|
|
8230
8310
|
baseURL?: string | undefined;
|
|
@@ -8253,17 +8333,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8253
8333
|
} | undefined;
|
|
8254
8334
|
fileConfig?: {
|
|
8255
8335
|
text?: {
|
|
8256
|
-
supportedMimeTypes?:
|
|
8336
|
+
supportedMimeTypes?: string[] | undefined;
|
|
8257
8337
|
} | undefined;
|
|
8258
8338
|
ocr?: {
|
|
8259
|
-
supportedMimeTypes?:
|
|
8339
|
+
supportedMimeTypes?: string[] | undefined;
|
|
8260
8340
|
} | undefined;
|
|
8261
8341
|
endpoints?: Record<string, {
|
|
8262
8342
|
disabled?: boolean | undefined;
|
|
8263
8343
|
fileLimit?: number | undefined;
|
|
8264
8344
|
fileSizeLimit?: number | undefined;
|
|
8265
8345
|
totalSizeLimit?: number | undefined;
|
|
8266
|
-
supportedMimeTypes?:
|
|
8346
|
+
supportedMimeTypes?: string[] | undefined;
|
|
8267
8347
|
}> | undefined;
|
|
8268
8348
|
serverFileSizeLimit?: number | undefined;
|
|
8269
8349
|
avatarSizeLimit?: number | undefined;
|
|
@@ -8287,8 +8367,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8287
8367
|
name: string;
|
|
8288
8368
|
preset: {
|
|
8289
8369
|
endpoint: string | null;
|
|
8290
|
-
conversationId?: string | null | undefined;
|
|
8291
|
-
title?: string | null | undefined;
|
|
8292
8370
|
endpointType?: EModelEndpoint | null | undefined;
|
|
8293
8371
|
tools?: string[] | {
|
|
8294
8372
|
name: string;
|
|
@@ -8378,9 +8456,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8378
8456
|
additional_instructions?: string | undefined;
|
|
8379
8457
|
append_current_datetime?: boolean | undefined;
|
|
8380
8458
|
stop?: string[] | undefined;
|
|
8381
|
-
presetId?: string | null | undefined;
|
|
8382
|
-
defaultPreset?: boolean | undefined;
|
|
8383
|
-
order?: number | undefined;
|
|
8384
8459
|
};
|
|
8385
8460
|
iconURL?: string | undefined;
|
|
8386
8461
|
default?: boolean | undefined;
|
|
@@ -8464,7 +8539,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8464
8539
|
model: string;
|
|
8465
8540
|
provider: string;
|
|
8466
8541
|
instructions?: string | undefined;
|
|
8467
|
-
model_parameters?: Record<string,
|
|
8542
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
8468
8543
|
} | undefined;
|
|
8469
8544
|
} | undefined;
|
|
8470
8545
|
summarization?: {
|
|
@@ -8812,14 +8887,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8812
8887
|
conversationMode?: boolean | undefined;
|
|
8813
8888
|
advancedMode?: boolean | undefined;
|
|
8814
8889
|
speechToText?: boolean | {
|
|
8815
|
-
engineSTT?:
|
|
8890
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
8816
8891
|
languageSTT?: string | undefined;
|
|
8817
8892
|
autoTranscribeAudio?: boolean | undefined;
|
|
8818
8893
|
decibelValue?: number | undefined;
|
|
8819
8894
|
autoSendText?: number | undefined;
|
|
8820
8895
|
} | undefined;
|
|
8821
8896
|
textToSpeech?: boolean | {
|
|
8822
|
-
engineTTS?:
|
|
8897
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
8823
8898
|
voice?: string | undefined;
|
|
8824
8899
|
languageTTS?: string | undefined;
|
|
8825
8900
|
automaticPlayback?: boolean | undefined;
|
|
@@ -8871,9 +8946,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8871
8946
|
deploymentName?: string | undefined;
|
|
8872
8947
|
assistants?: boolean | undefined;
|
|
8873
8948
|
serverless?: boolean | undefined;
|
|
8874
|
-
addParams?: Record<string,
|
|
8949
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
8875
8950
|
dropParams?: string[] | undefined;
|
|
8876
|
-
additionalHeaders?: Record<string,
|
|
8951
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
8877
8952
|
})[];
|
|
8878
8953
|
assistants?: boolean | undefined;
|
|
8879
8954
|
} & {
|
|
@@ -8932,7 +9007,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8932
9007
|
version?: string | number | undefined;
|
|
8933
9008
|
apiKey?: string | undefined;
|
|
8934
9009
|
baseURL?: string | undefined;
|
|
8935
|
-
headers?: Record<string,
|
|
9010
|
+
headers?: Record<string, string> | undefined;
|
|
8936
9011
|
streamRate?: number | undefined;
|
|
8937
9012
|
titlePrompt?: string | undefined;
|
|
8938
9013
|
titleModel?: string | undefined;
|
|
@@ -8962,7 +9037,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8962
9037
|
version?: string | number | undefined;
|
|
8963
9038
|
apiKey?: string | undefined;
|
|
8964
9039
|
baseURL?: string | undefined;
|
|
8965
|
-
headers?: Record<string,
|
|
9040
|
+
headers?: Record<string, string> | undefined;
|
|
8966
9041
|
streamRate?: number | undefined;
|
|
8967
9042
|
titlePrompt?: string | undefined;
|
|
8968
9043
|
titleModel?: string | undefined;
|
|
@@ -9010,7 +9085,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9010
9085
|
iconURL?: string | undefined;
|
|
9011
9086
|
apiKey?: string | undefined;
|
|
9012
9087
|
baseURL?: string | undefined;
|
|
9013
|
-
headers?: Record<string,
|
|
9088
|
+
headers?: Record<string, string> | undefined;
|
|
9014
9089
|
name?: string | undefined;
|
|
9015
9090
|
streamRate?: number | undefined;
|
|
9016
9091
|
titlePrompt?: string | undefined;
|
|
@@ -9028,7 +9103,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9028
9103
|
fetch?: boolean | undefined;
|
|
9029
9104
|
userIdQuery?: boolean | undefined;
|
|
9030
9105
|
} | undefined;
|
|
9031
|
-
addParams?: Record<string,
|
|
9106
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
9032
9107
|
dropParams?: string[] | undefined;
|
|
9033
9108
|
modelDisplayLabel?: string | undefined;
|
|
9034
9109
|
customParams?: {
|
|
@@ -9069,7 +9144,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9069
9144
|
}[] | undefined;
|
|
9070
9145
|
} | undefined;
|
|
9071
9146
|
directEndpoint?: boolean | undefined;
|
|
9072
|
-
titleMessageRole?:
|
|
9147
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
9073
9148
|
}[] | undefined;
|
|
9074
9149
|
bedrock?: {
|
|
9075
9150
|
baseURL?: string | undefined;
|
|
@@ -9098,17 +9173,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9098
9173
|
} | undefined;
|
|
9099
9174
|
fileConfig?: {
|
|
9100
9175
|
text?: {
|
|
9101
|
-
supportedMimeTypes?:
|
|
9176
|
+
supportedMimeTypes?: string[] | undefined;
|
|
9102
9177
|
} | undefined;
|
|
9103
9178
|
ocr?: {
|
|
9104
|
-
supportedMimeTypes?:
|
|
9179
|
+
supportedMimeTypes?: string[] | undefined;
|
|
9105
9180
|
} | undefined;
|
|
9106
9181
|
endpoints?: Record<string, {
|
|
9107
9182
|
disabled?: boolean | undefined;
|
|
9108
9183
|
fileLimit?: number | undefined;
|
|
9109
9184
|
fileSizeLimit?: number | undefined;
|
|
9110
9185
|
totalSizeLimit?: number | undefined;
|
|
9111
|
-
supportedMimeTypes?:
|
|
9186
|
+
supportedMimeTypes?: string[] | undefined;
|
|
9112
9187
|
}> | undefined;
|
|
9113
9188
|
serverFileSizeLimit?: number | undefined;
|
|
9114
9189
|
avatarSizeLimit?: number | undefined;
|
|
@@ -9130,8 +9205,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9130
9205
|
name: string;
|
|
9131
9206
|
preset: {
|
|
9132
9207
|
endpoint: string | null;
|
|
9133
|
-
conversationId?: string | null | undefined;
|
|
9134
|
-
title?: string | null | undefined;
|
|
9135
9208
|
endpointType?: EModelEndpoint | null | undefined;
|
|
9136
9209
|
tools?: string[] | {
|
|
9137
9210
|
name: string;
|
|
@@ -9221,9 +9294,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9221
9294
|
additional_instructions?: string | undefined;
|
|
9222
9295
|
append_current_datetime?: boolean | undefined;
|
|
9223
9296
|
stop?: string[] | undefined;
|
|
9224
|
-
presetId?: string | null | undefined;
|
|
9225
|
-
defaultPreset?: boolean | undefined;
|
|
9226
|
-
order?: number | undefined;
|
|
9227
9297
|
};
|
|
9228
9298
|
iconURL?: string | undefined;
|
|
9229
9299
|
default?: boolean | undefined;
|
|
@@ -9483,17 +9553,17 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9483
9553
|
provider: z.ZodString;
|
|
9484
9554
|
model: z.ZodString;
|
|
9485
9555
|
instructions: z.ZodOptional<z.ZodString>;
|
|
9486
|
-
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9556
|
+
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
9487
9557
|
}, "strip", z.ZodTypeAny, {
|
|
9488
9558
|
model: string;
|
|
9489
9559
|
provider: string;
|
|
9490
9560
|
instructions?: string | undefined;
|
|
9491
|
-
model_parameters?: Record<string,
|
|
9561
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9492
9562
|
}, {
|
|
9493
9563
|
model: string;
|
|
9494
9564
|
provider: string;
|
|
9495
9565
|
instructions?: string | undefined;
|
|
9496
|
-
model_parameters?: Record<string,
|
|
9566
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9497
9567
|
}>]>>;
|
|
9498
9568
|
}, "strip", z.ZodTypeAny, {
|
|
9499
9569
|
charLimit: number;
|
|
@@ -9508,7 +9578,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9508
9578
|
model: string;
|
|
9509
9579
|
provider: string;
|
|
9510
9580
|
instructions?: string | undefined;
|
|
9511
|
-
model_parameters?: Record<string,
|
|
9581
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9512
9582
|
} | undefined;
|
|
9513
9583
|
}, {
|
|
9514
9584
|
disabled?: boolean | undefined;
|
|
@@ -9523,7 +9593,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9523
9593
|
model: string;
|
|
9524
9594
|
provider: string;
|
|
9525
9595
|
instructions?: string | undefined;
|
|
9526
|
-
model_parameters?: Record<string,
|
|
9596
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9527
9597
|
} | undefined;
|
|
9528
9598
|
}>>;
|
|
9529
9599
|
summarization: z.ZodOptional<z.ZodObject<{
|
|
@@ -9697,7 +9767,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9697
9767
|
type: z.ZodDefault<z.ZodLiteral<"stdio">>;
|
|
9698
9768
|
command: z.ZodString;
|
|
9699
9769
|
args: z.ZodArray<z.ZodString, "many">;
|
|
9700
|
-
env: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>, Record<string, string> | undefined, Record<string, string> | undefined>;
|
|
9770
|
+
env: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>, Record<string, string> | undefined, Record<string, string> | undefined>; /** Maximum characters allowed in a single tool result before truncation. */
|
|
9701
9771
|
stderr: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["pipe", "ignore", "inherit"]>, z.ZodNumber]>>;
|
|
9702
9772
|
}, "strip", z.ZodTypeAny, {
|
|
9703
9773
|
type: "stdio";
|
|
@@ -10903,40 +10973,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10903
10973
|
conversationMode: z.ZodOptional<z.ZodBoolean>;
|
|
10904
10974
|
advancedMode: z.ZodOptional<z.ZodBoolean>;
|
|
10905
10975
|
speechToText: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
|
|
10906
|
-
|
|
10976
|
+
/** Keep in sync with STTProviders enum (defined below — cannot reference due to eval order) */
|
|
10977
|
+
engineSTT: z.ZodOptional<z.ZodEnum<["openai", "azureOpenAI"]>>;
|
|
10907
10978
|
languageSTT: z.ZodOptional<z.ZodString>;
|
|
10908
10979
|
autoTranscribeAudio: z.ZodOptional<z.ZodBoolean>;
|
|
10909
10980
|
decibelValue: z.ZodOptional<z.ZodNumber>;
|
|
10910
10981
|
autoSendText: z.ZodOptional<z.ZodNumber>;
|
|
10911
10982
|
}, "strip", z.ZodTypeAny, {
|
|
10912
|
-
engineSTT?:
|
|
10983
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
10913
10984
|
languageSTT?: string | undefined;
|
|
10914
10985
|
autoTranscribeAudio?: boolean | undefined;
|
|
10915
10986
|
decibelValue?: number | undefined;
|
|
10916
10987
|
autoSendText?: number | undefined;
|
|
10917
10988
|
}, {
|
|
10918
|
-
engineSTT?:
|
|
10989
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
10919
10990
|
languageSTT?: string | undefined;
|
|
10920
10991
|
autoTranscribeAudio?: boolean | undefined;
|
|
10921
10992
|
decibelValue?: number | undefined;
|
|
10922
10993
|
autoSendText?: number | undefined;
|
|
10923
10994
|
}>]>>;
|
|
10924
10995
|
textToSpeech: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
|
|
10925
|
-
|
|
10996
|
+
/** Keep in sync with TTSProviders enum (defined below — cannot reference due to eval order) */
|
|
10997
|
+
engineTTS: z.ZodOptional<z.ZodEnum<["openai", "azureOpenAI", "elevenlabs", "localai"]>>;
|
|
10926
10998
|
voice: z.ZodOptional<z.ZodString>;
|
|
10927
10999
|
languageTTS: z.ZodOptional<z.ZodString>;
|
|
10928
11000
|
automaticPlayback: z.ZodOptional<z.ZodBoolean>;
|
|
10929
11001
|
playbackRate: z.ZodOptional<z.ZodNumber>;
|
|
10930
11002
|
cacheTTS: z.ZodOptional<z.ZodBoolean>;
|
|
10931
11003
|
}, "strip", z.ZodTypeAny, {
|
|
10932
|
-
engineTTS?:
|
|
11004
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
10933
11005
|
voice?: string | undefined;
|
|
10934
11006
|
languageTTS?: string | undefined;
|
|
10935
11007
|
automaticPlayback?: boolean | undefined;
|
|
10936
11008
|
playbackRate?: number | undefined;
|
|
10937
11009
|
cacheTTS?: boolean | undefined;
|
|
10938
11010
|
}, {
|
|
10939
|
-
engineTTS?:
|
|
11011
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
10940
11012
|
voice?: string | undefined;
|
|
10941
11013
|
languageTTS?: string | undefined;
|
|
10942
11014
|
automaticPlayback?: boolean | undefined;
|
|
@@ -10947,14 +11019,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10947
11019
|
conversationMode?: boolean | undefined;
|
|
10948
11020
|
advancedMode?: boolean | undefined;
|
|
10949
11021
|
speechToText?: boolean | {
|
|
10950
|
-
engineSTT?:
|
|
11022
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
10951
11023
|
languageSTT?: string | undefined;
|
|
10952
11024
|
autoTranscribeAudio?: boolean | undefined;
|
|
10953
11025
|
decibelValue?: number | undefined;
|
|
10954
11026
|
autoSendText?: number | undefined;
|
|
10955
11027
|
} | undefined;
|
|
10956
11028
|
textToSpeech?: boolean | {
|
|
10957
|
-
engineTTS?:
|
|
11029
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
10958
11030
|
voice?: string | undefined;
|
|
10959
11031
|
languageTTS?: string | undefined;
|
|
10960
11032
|
automaticPlayback?: boolean | undefined;
|
|
@@ -10965,14 +11037,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10965
11037
|
conversationMode?: boolean | undefined;
|
|
10966
11038
|
advancedMode?: boolean | undefined;
|
|
10967
11039
|
speechToText?: boolean | {
|
|
10968
|
-
engineSTT?:
|
|
11040
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
10969
11041
|
languageSTT?: string | undefined;
|
|
10970
11042
|
autoTranscribeAudio?: boolean | undefined;
|
|
10971
11043
|
decibelValue?: number | undefined;
|
|
10972
11044
|
autoSendText?: number | undefined;
|
|
10973
11045
|
} | undefined;
|
|
10974
11046
|
textToSpeech?: boolean | {
|
|
10975
|
-
engineTTS?:
|
|
11047
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
10976
11048
|
voice?: string | undefined;
|
|
10977
11049
|
languageTTS?: string | undefined;
|
|
10978
11050
|
automaticPlayback?: boolean | undefined;
|
|
@@ -11034,14 +11106,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11034
11106
|
conversationMode?: boolean | undefined;
|
|
11035
11107
|
advancedMode?: boolean | undefined;
|
|
11036
11108
|
speechToText?: boolean | {
|
|
11037
|
-
engineSTT?:
|
|
11109
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
11038
11110
|
languageSTT?: string | undefined;
|
|
11039
11111
|
autoTranscribeAudio?: boolean | undefined;
|
|
11040
11112
|
decibelValue?: number | undefined;
|
|
11041
11113
|
autoSendText?: number | undefined;
|
|
11042
11114
|
} | undefined;
|
|
11043
11115
|
textToSpeech?: boolean | {
|
|
11044
|
-
engineTTS?:
|
|
11116
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
11045
11117
|
voice?: string | undefined;
|
|
11046
11118
|
languageTTS?: string | undefined;
|
|
11047
11119
|
automaticPlayback?: boolean | undefined;
|
|
@@ -11103,14 +11175,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11103
11175
|
conversationMode?: boolean | undefined;
|
|
11104
11176
|
advancedMode?: boolean | undefined;
|
|
11105
11177
|
speechToText?: boolean | {
|
|
11106
|
-
engineSTT?:
|
|
11178
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
11107
11179
|
languageSTT?: string | undefined;
|
|
11108
11180
|
autoTranscribeAudio?: boolean | undefined;
|
|
11109
11181
|
decibelValue?: number | undefined;
|
|
11110
11182
|
autoSendText?: number | undefined;
|
|
11111
11183
|
} | undefined;
|
|
11112
11184
|
textToSpeech?: boolean | {
|
|
11113
|
-
engineTTS?:
|
|
11185
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
11114
11186
|
voice?: string | undefined;
|
|
11115
11187
|
languageTTS?: string | undefined;
|
|
11116
11188
|
automaticPlayback?: boolean | undefined;
|
|
@@ -11241,19 +11313,19 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11241
11313
|
fileLimit: z.ZodOptional<z.ZodNumber>;
|
|
11242
11314
|
fileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
11243
11315
|
totalSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
11244
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
11316
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11245
11317
|
}, "strip", z.ZodTypeAny, {
|
|
11246
11318
|
disabled?: boolean | undefined;
|
|
11247
11319
|
fileLimit?: number | undefined;
|
|
11248
11320
|
fileSizeLimit?: number | undefined;
|
|
11249
11321
|
totalSizeLimit?: number | undefined;
|
|
11250
|
-
supportedMimeTypes?:
|
|
11322
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11251
11323
|
}, {
|
|
11252
11324
|
disabled?: boolean | undefined;
|
|
11253
11325
|
fileLimit?: number | undefined;
|
|
11254
11326
|
fileSizeLimit?: number | undefined;
|
|
11255
11327
|
totalSizeLimit?: number | undefined;
|
|
11256
|
-
supportedMimeTypes?:
|
|
11328
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11257
11329
|
}>>>;
|
|
11258
11330
|
serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
11259
11331
|
avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11285,32 +11357,32 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11285
11357
|
quality?: number | undefined;
|
|
11286
11358
|
}>>;
|
|
11287
11359
|
ocr: z.ZodOptional<z.ZodObject<{
|
|
11288
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
11360
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11289
11361
|
}, "strip", z.ZodTypeAny, {
|
|
11290
|
-
supportedMimeTypes?:
|
|
11362
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11291
11363
|
}, {
|
|
11292
|
-
supportedMimeTypes?:
|
|
11364
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11293
11365
|
}>>;
|
|
11294
11366
|
text: z.ZodOptional<z.ZodObject<{
|
|
11295
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
11367
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
11296
11368
|
}, "strip", z.ZodTypeAny, {
|
|
11297
|
-
supportedMimeTypes?:
|
|
11369
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11298
11370
|
}, {
|
|
11299
|
-
supportedMimeTypes?:
|
|
11371
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11300
11372
|
}>>;
|
|
11301
11373
|
}, "strip", z.ZodTypeAny, {
|
|
11302
11374
|
text?: {
|
|
11303
|
-
supportedMimeTypes?:
|
|
11375
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11304
11376
|
} | undefined;
|
|
11305
11377
|
ocr?: {
|
|
11306
|
-
supportedMimeTypes?:
|
|
11378
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11307
11379
|
} | undefined;
|
|
11308
11380
|
endpoints?: Record<string, {
|
|
11309
11381
|
disabled?: boolean | undefined;
|
|
11310
11382
|
fileLimit?: number | undefined;
|
|
11311
11383
|
fileSizeLimit?: number | undefined;
|
|
11312
11384
|
totalSizeLimit?: number | undefined;
|
|
11313
|
-
supportedMimeTypes?:
|
|
11385
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11314
11386
|
}> | undefined;
|
|
11315
11387
|
serverFileSizeLimit?: number | undefined;
|
|
11316
11388
|
avatarSizeLimit?: number | undefined;
|
|
@@ -11327,17 +11399,17 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11327
11399
|
} | undefined;
|
|
11328
11400
|
}, {
|
|
11329
11401
|
text?: {
|
|
11330
|
-
supportedMimeTypes?:
|
|
11402
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11331
11403
|
} | undefined;
|
|
11332
11404
|
ocr?: {
|
|
11333
|
-
supportedMimeTypes?:
|
|
11405
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11334
11406
|
} | undefined;
|
|
11335
11407
|
endpoints?: Record<string, {
|
|
11336
11408
|
disabled?: boolean | undefined;
|
|
11337
11409
|
fileLimit?: number | undefined;
|
|
11338
11410
|
fileSizeLimit?: number | undefined;
|
|
11339
11411
|
totalSizeLimit?: number | undefined;
|
|
11340
|
-
supportedMimeTypes?:
|
|
11412
|
+
supportedMimeTypes?: string[] | undefined;
|
|
11341
11413
|
}> | undefined;
|
|
11342
11414
|
serverFileSizeLimit?: number | undefined;
|
|
11343
11415
|
avatarSizeLimit?: number | undefined;
|
|
@@ -11369,7 +11441,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11369
11441
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11370
11442
|
user: z.ZodOptional<z.ZodString>;
|
|
11371
11443
|
tools: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
11372
|
-
name: z.ZodString;
|
|
11444
|
+
name: z.ZodString;
|
|
11373
11445
|
pluginKey: z.ZodString;
|
|
11374
11446
|
description: z.ZodOptional<z.ZodString>;
|
|
11375
11447
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -11555,10 +11627,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11555
11627
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
11556
11628
|
order: z.ZodOptional<z.ZodNumber>;
|
|
11557
11629
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
11558
|
-
}, "iconURL" | "greeting" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel">, "strip", z.ZodTypeAny, {
|
|
11630
|
+
}, "conversationId" | "title" | "iconURL" | "greeting" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
|
|
11559
11631
|
endpoint: string | null;
|
|
11560
|
-
conversationId?: string | null | undefined;
|
|
11561
|
-
title?: string | null | undefined;
|
|
11562
11632
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11563
11633
|
tools?: string[] | {
|
|
11564
11634
|
name: string;
|
|
@@ -11648,13 +11718,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11648
11718
|
additional_instructions?: string | undefined;
|
|
11649
11719
|
append_current_datetime?: boolean | undefined;
|
|
11650
11720
|
stop?: string[] | undefined;
|
|
11651
|
-
presetId?: string | null | undefined;
|
|
11652
|
-
defaultPreset?: boolean | undefined;
|
|
11653
|
-
order?: number | undefined;
|
|
11654
11721
|
}, {
|
|
11655
11722
|
endpoint: string | null;
|
|
11656
|
-
conversationId?: string | null | undefined;
|
|
11657
|
-
title?: string | null | undefined;
|
|
11658
11723
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11659
11724
|
tools?: string[] | {
|
|
11660
11725
|
name: string;
|
|
@@ -11744,9 +11809,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11744
11809
|
additional_instructions?: string | undefined;
|
|
11745
11810
|
append_current_datetime?: boolean | undefined;
|
|
11746
11811
|
stop?: string[] | undefined;
|
|
11747
|
-
presetId?: string | null | undefined;
|
|
11748
|
-
defaultPreset?: boolean | undefined;
|
|
11749
|
-
order?: number | undefined;
|
|
11750
11812
|
}>;
|
|
11751
11813
|
order: z.ZodOptional<z.ZodNumber>;
|
|
11752
11814
|
default: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11767,8 +11829,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11767
11829
|
name: string;
|
|
11768
11830
|
preset: {
|
|
11769
11831
|
endpoint: string | null;
|
|
11770
|
-
conversationId?: string | null | undefined;
|
|
11771
|
-
title?: string | null | undefined;
|
|
11772
11832
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11773
11833
|
tools?: string[] | {
|
|
11774
11834
|
name: string;
|
|
@@ -11858,9 +11918,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11858
11918
|
additional_instructions?: string | undefined;
|
|
11859
11919
|
append_current_datetime?: boolean | undefined;
|
|
11860
11920
|
stop?: string[] | undefined;
|
|
11861
|
-
presetId?: string | null | undefined;
|
|
11862
|
-
defaultPreset?: boolean | undefined;
|
|
11863
|
-
order?: number | undefined;
|
|
11864
11921
|
};
|
|
11865
11922
|
iconURL?: string | undefined;
|
|
11866
11923
|
default?: boolean | undefined;
|
|
@@ -11881,8 +11938,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11881
11938
|
name: string;
|
|
11882
11939
|
preset: {
|
|
11883
11940
|
endpoint: string | null;
|
|
11884
|
-
conversationId?: string | null | undefined;
|
|
11885
|
-
title?: string | null | undefined;
|
|
11886
11941
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11887
11942
|
tools?: string[] | {
|
|
11888
11943
|
name: string;
|
|
@@ -11972,9 +12027,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11972
12027
|
additional_instructions?: string | undefined;
|
|
11973
12028
|
append_current_datetime?: boolean | undefined;
|
|
11974
12029
|
stop?: string[] | undefined;
|
|
11975
|
-
presetId?: string | null | undefined;
|
|
11976
|
-
defaultPreset?: boolean | undefined;
|
|
11977
|
-
order?: number | undefined;
|
|
11978
12030
|
};
|
|
11979
12031
|
iconURL?: string | undefined;
|
|
11980
12032
|
default?: boolean | undefined;
|
|
@@ -12000,8 +12052,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12000
12052
|
name: string;
|
|
12001
12053
|
preset: {
|
|
12002
12054
|
endpoint: string | null;
|
|
12003
|
-
conversationId?: string | null | undefined;
|
|
12004
|
-
title?: string | null | undefined;
|
|
12005
12055
|
endpointType?: EModelEndpoint | null | undefined;
|
|
12006
12056
|
tools?: string[] | {
|
|
12007
12057
|
name: string;
|
|
@@ -12091,9 +12141,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12091
12141
|
additional_instructions?: string | undefined;
|
|
12092
12142
|
append_current_datetime?: boolean | undefined;
|
|
12093
12143
|
stop?: string[] | undefined;
|
|
12094
|
-
presetId?: string | null | undefined;
|
|
12095
|
-
defaultPreset?: boolean | undefined;
|
|
12096
|
-
order?: number | undefined;
|
|
12097
12144
|
};
|
|
12098
12145
|
iconURL?: string | undefined;
|
|
12099
12146
|
default?: boolean | undefined;
|
|
@@ -12117,8 +12164,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12117
12164
|
name: string;
|
|
12118
12165
|
preset: {
|
|
12119
12166
|
endpoint: string | null;
|
|
12120
|
-
conversationId?: string | null | undefined;
|
|
12121
|
-
title?: string | null | undefined;
|
|
12122
12167
|
endpointType?: EModelEndpoint | null | undefined;
|
|
12123
12168
|
tools?: string[] | {
|
|
12124
12169
|
name: string;
|
|
@@ -12208,9 +12253,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12208
12253
|
additional_instructions?: string | undefined;
|
|
12209
12254
|
append_current_datetime?: boolean | undefined;
|
|
12210
12255
|
stop?: string[] | undefined;
|
|
12211
|
-
presetId?: string | null | undefined;
|
|
12212
|
-
defaultPreset?: boolean | undefined;
|
|
12213
|
-
order?: number | undefined;
|
|
12214
12256
|
};
|
|
12215
12257
|
iconURL?: string | undefined;
|
|
12216
12258
|
default?: boolean | undefined;
|
|
@@ -12459,11 +12501,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12459
12501
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
12460
12502
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
12461
12503
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
12462
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12504
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
12463
12505
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12464
12506
|
version: z.ZodOptional<z.ZodString>;
|
|
12465
12507
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
12466
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12508
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12467
12509
|
}, "strip", z.ZodTypeAny, {
|
|
12468
12510
|
apiKey: string;
|
|
12469
12511
|
version?: string | undefined;
|
|
@@ -12472,9 +12514,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12472
12514
|
deploymentName?: string | undefined;
|
|
12473
12515
|
assistants?: boolean | undefined;
|
|
12474
12516
|
serverless?: boolean | undefined;
|
|
12475
|
-
addParams?: Record<string,
|
|
12517
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12476
12518
|
dropParams?: string[] | undefined;
|
|
12477
|
-
additionalHeaders?: Record<string,
|
|
12519
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
12478
12520
|
}, {
|
|
12479
12521
|
apiKey: string;
|
|
12480
12522
|
version?: string | undefined;
|
|
@@ -12483,9 +12525,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12483
12525
|
deploymentName?: string | undefined;
|
|
12484
12526
|
assistants?: boolean | undefined;
|
|
12485
12527
|
serverless?: boolean | undefined;
|
|
12486
|
-
addParams?: Record<string,
|
|
12528
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12487
12529
|
dropParams?: string[] | undefined;
|
|
12488
|
-
additionalHeaders?: Record<string,
|
|
12530
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
12489
12531
|
}>>, "many">;
|
|
12490
12532
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
12491
12533
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12504,9 +12546,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12504
12546
|
deploymentName?: string | undefined;
|
|
12505
12547
|
assistants?: boolean | undefined;
|
|
12506
12548
|
serverless?: boolean | undefined;
|
|
12507
|
-
addParams?: Record<string,
|
|
12549
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12508
12550
|
dropParams?: string[] | undefined;
|
|
12509
|
-
additionalHeaders?: Record<string,
|
|
12551
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
12510
12552
|
})[];
|
|
12511
12553
|
assistants?: boolean | undefined;
|
|
12512
12554
|
}, {
|
|
@@ -12525,9 +12567,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12525
12567
|
deploymentName?: string | undefined;
|
|
12526
12568
|
assistants?: boolean | undefined;
|
|
12527
12569
|
serverless?: boolean | undefined;
|
|
12528
|
-
addParams?: Record<string,
|
|
12570
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12529
12571
|
dropParams?: string[] | undefined;
|
|
12530
|
-
additionalHeaders?: Record<string,
|
|
12572
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
12531
12573
|
})[];
|
|
12532
12574
|
assistants?: boolean | undefined;
|
|
12533
12575
|
}>, z.ZodObject<{
|
|
@@ -12602,14 +12644,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12602
12644
|
fetch?: boolean | undefined;
|
|
12603
12645
|
userIdQuery?: boolean | undefined;
|
|
12604
12646
|
}>>;
|
|
12605
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12647
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12606
12648
|
}, "strip", z.ZodTypeAny, {
|
|
12607
12649
|
version: string | number;
|
|
12608
12650
|
retrievalModels: string[];
|
|
12609
12651
|
capabilities: Capabilities[];
|
|
12610
12652
|
apiKey?: string | undefined;
|
|
12611
12653
|
baseURL?: string | undefined;
|
|
12612
|
-
headers?: Record<string,
|
|
12654
|
+
headers?: Record<string, string> | undefined;
|
|
12613
12655
|
streamRate?: number | undefined;
|
|
12614
12656
|
titlePrompt?: string | undefined;
|
|
12615
12657
|
titleModel?: string | undefined;
|
|
@@ -12636,7 +12678,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12636
12678
|
version?: string | number | undefined;
|
|
12637
12679
|
apiKey?: string | undefined;
|
|
12638
12680
|
baseURL?: string | undefined;
|
|
12639
|
-
headers?: Record<string,
|
|
12681
|
+
headers?: Record<string, string> | undefined;
|
|
12640
12682
|
streamRate?: number | undefined;
|
|
12641
12683
|
titlePrompt?: string | undefined;
|
|
12642
12684
|
titleModel?: string | undefined;
|
|
@@ -12712,14 +12754,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12712
12754
|
fetch?: boolean | undefined;
|
|
12713
12755
|
userIdQuery?: boolean | undefined;
|
|
12714
12756
|
}>>;
|
|
12715
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12757
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12716
12758
|
}, "strip", z.ZodTypeAny, {
|
|
12717
12759
|
version: string | number;
|
|
12718
12760
|
retrievalModels: string[];
|
|
12719
12761
|
capabilities: Capabilities[];
|
|
12720
12762
|
apiKey?: string | undefined;
|
|
12721
12763
|
baseURL?: string | undefined;
|
|
12722
|
-
headers?: Record<string,
|
|
12764
|
+
headers?: Record<string, string> | undefined;
|
|
12723
12765
|
streamRate?: number | undefined;
|
|
12724
12766
|
titlePrompt?: string | undefined;
|
|
12725
12767
|
titleModel?: string | undefined;
|
|
@@ -12746,7 +12788,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12746
12788
|
version?: string | number | undefined;
|
|
12747
12789
|
apiKey?: string | undefined;
|
|
12748
12790
|
baseURL?: string | undefined;
|
|
12749
|
-
headers?: Record<string,
|
|
12791
|
+
headers?: Record<string, string> | undefined;
|
|
12750
12792
|
streamRate?: number | undefined;
|
|
12751
12793
|
titlePrompt?: string | undefined;
|
|
12752
12794
|
titleModel?: string | undefined;
|
|
@@ -12869,8 +12911,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12869
12911
|
}>>;
|
|
12870
12912
|
iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12871
12913
|
modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12872
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12873
|
-
addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12914
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
12915
|
+
addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>>;
|
|
12874
12916
|
dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
12875
12917
|
customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
12876
12918
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
@@ -13056,12 +13098,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13056
13098
|
}[] | undefined;
|
|
13057
13099
|
}>>>;
|
|
13058
13100
|
directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13059
|
-
titleMessageRole: z.ZodOptional<z.ZodOptional<z.
|
|
13101
|
+
titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodEnum<["system", "user", "assistant"]>>>;
|
|
13060
13102
|
}, "strip", z.ZodTypeAny, {
|
|
13061
13103
|
iconURL?: string | undefined;
|
|
13062
13104
|
apiKey?: string | undefined;
|
|
13063
13105
|
baseURL?: string | undefined;
|
|
13064
|
-
headers?: Record<string,
|
|
13106
|
+
headers?: Record<string, string> | undefined;
|
|
13065
13107
|
name?: string | undefined;
|
|
13066
13108
|
streamRate?: number | undefined;
|
|
13067
13109
|
titlePrompt?: string | undefined;
|
|
@@ -13079,7 +13121,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13079
13121
|
fetch?: boolean | undefined;
|
|
13080
13122
|
userIdQuery?: boolean | undefined;
|
|
13081
13123
|
} | undefined;
|
|
13082
|
-
addParams?: Record<string,
|
|
13124
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13083
13125
|
dropParams?: string[] | undefined;
|
|
13084
13126
|
modelDisplayLabel?: string | undefined;
|
|
13085
13127
|
customParams?: {
|
|
@@ -13120,12 +13162,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13120
13162
|
}[] | undefined;
|
|
13121
13163
|
} | undefined;
|
|
13122
13164
|
directEndpoint?: boolean | undefined;
|
|
13123
|
-
titleMessageRole?:
|
|
13165
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
13124
13166
|
}, {
|
|
13125
13167
|
iconURL?: string | undefined;
|
|
13126
13168
|
apiKey?: string | undefined;
|
|
13127
13169
|
baseURL?: string | undefined;
|
|
13128
|
-
headers?: Record<string,
|
|
13170
|
+
headers?: Record<string, string> | undefined;
|
|
13129
13171
|
name?: string | undefined;
|
|
13130
13172
|
streamRate?: number | undefined;
|
|
13131
13173
|
titlePrompt?: string | undefined;
|
|
@@ -13143,7 +13185,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13143
13185
|
fetch?: boolean | undefined;
|
|
13144
13186
|
userIdQuery?: boolean | undefined;
|
|
13145
13187
|
} | undefined;
|
|
13146
|
-
addParams?: Record<string,
|
|
13188
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13147
13189
|
dropParams?: string[] | undefined;
|
|
13148
13190
|
modelDisplayLabel?: string | undefined;
|
|
13149
13191
|
customParams?: {
|
|
@@ -13184,7 +13226,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13184
13226
|
}[] | undefined;
|
|
13185
13227
|
} | undefined;
|
|
13186
13228
|
directEndpoint?: boolean | undefined;
|
|
13187
|
-
titleMessageRole?:
|
|
13229
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
13188
13230
|
}>, "many">>>;
|
|
13189
13231
|
bedrock: z.ZodOptional<z.ZodObject<{
|
|
13190
13232
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13245,9 +13287,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13245
13287
|
deploymentName?: string | undefined;
|
|
13246
13288
|
assistants?: boolean | undefined;
|
|
13247
13289
|
serverless?: boolean | undefined;
|
|
13248
|
-
addParams?: Record<string,
|
|
13290
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13249
13291
|
dropParams?: string[] | undefined;
|
|
13250
|
-
additionalHeaders?: Record<string,
|
|
13292
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
13251
13293
|
})[];
|
|
13252
13294
|
assistants?: boolean | undefined;
|
|
13253
13295
|
} & {
|
|
@@ -13308,7 +13350,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13308
13350
|
capabilities: Capabilities[];
|
|
13309
13351
|
apiKey?: string | undefined;
|
|
13310
13352
|
baseURL?: string | undefined;
|
|
13311
|
-
headers?: Record<string,
|
|
13353
|
+
headers?: Record<string, string> | undefined;
|
|
13312
13354
|
streamRate?: number | undefined;
|
|
13313
13355
|
titlePrompt?: string | undefined;
|
|
13314
13356
|
titleModel?: string | undefined;
|
|
@@ -13338,7 +13380,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13338
13380
|
capabilities: Capabilities[];
|
|
13339
13381
|
apiKey?: string | undefined;
|
|
13340
13382
|
baseURL?: string | undefined;
|
|
13341
|
-
headers?: Record<string,
|
|
13383
|
+
headers?: Record<string, string> | undefined;
|
|
13342
13384
|
streamRate?: number | undefined;
|
|
13343
13385
|
titlePrompt?: string | undefined;
|
|
13344
13386
|
titleModel?: string | undefined;
|
|
@@ -13384,7 +13426,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13384
13426
|
iconURL?: string | undefined;
|
|
13385
13427
|
apiKey?: string | undefined;
|
|
13386
13428
|
baseURL?: string | undefined;
|
|
13387
|
-
headers?: Record<string,
|
|
13429
|
+
headers?: Record<string, string> | undefined;
|
|
13388
13430
|
name?: string | undefined;
|
|
13389
13431
|
streamRate?: number | undefined;
|
|
13390
13432
|
titlePrompt?: string | undefined;
|
|
@@ -13402,7 +13444,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13402
13444
|
fetch?: boolean | undefined;
|
|
13403
13445
|
userIdQuery?: boolean | undefined;
|
|
13404
13446
|
} | undefined;
|
|
13405
|
-
addParams?: Record<string,
|
|
13447
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13406
13448
|
dropParams?: string[] | undefined;
|
|
13407
13449
|
modelDisplayLabel?: string | undefined;
|
|
13408
13450
|
customParams?: {
|
|
@@ -13443,7 +13485,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13443
13485
|
}[] | undefined;
|
|
13444
13486
|
} | undefined;
|
|
13445
13487
|
directEndpoint?: boolean | undefined;
|
|
13446
|
-
titleMessageRole?:
|
|
13488
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
13447
13489
|
}[] | undefined;
|
|
13448
13490
|
bedrock?: {
|
|
13449
13491
|
baseURL?: string | undefined;
|
|
@@ -13486,9 +13528,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13486
13528
|
deploymentName?: string | undefined;
|
|
13487
13529
|
assistants?: boolean | undefined;
|
|
13488
13530
|
serverless?: boolean | undefined;
|
|
13489
|
-
addParams?: Record<string,
|
|
13531
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13490
13532
|
dropParams?: string[] | undefined;
|
|
13491
|
-
additionalHeaders?: Record<string,
|
|
13533
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
13492
13534
|
})[];
|
|
13493
13535
|
assistants?: boolean | undefined;
|
|
13494
13536
|
} & {
|
|
@@ -13547,7 +13589,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13547
13589
|
version?: string | number | undefined;
|
|
13548
13590
|
apiKey?: string | undefined;
|
|
13549
13591
|
baseURL?: string | undefined;
|
|
13550
|
-
headers?: Record<string,
|
|
13592
|
+
headers?: Record<string, string> | undefined;
|
|
13551
13593
|
streamRate?: number | undefined;
|
|
13552
13594
|
titlePrompt?: string | undefined;
|
|
13553
13595
|
titleModel?: string | undefined;
|
|
@@ -13577,7 +13619,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13577
13619
|
version?: string | number | undefined;
|
|
13578
13620
|
apiKey?: string | undefined;
|
|
13579
13621
|
baseURL?: string | undefined;
|
|
13580
|
-
headers?: Record<string,
|
|
13622
|
+
headers?: Record<string, string> | undefined;
|
|
13581
13623
|
streamRate?: number | undefined;
|
|
13582
13624
|
titlePrompt?: string | undefined;
|
|
13583
13625
|
titleModel?: string | undefined;
|
|
@@ -13625,7 +13667,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13625
13667
|
iconURL?: string | undefined;
|
|
13626
13668
|
apiKey?: string | undefined;
|
|
13627
13669
|
baseURL?: string | undefined;
|
|
13628
|
-
headers?: Record<string,
|
|
13670
|
+
headers?: Record<string, string> | undefined;
|
|
13629
13671
|
name?: string | undefined;
|
|
13630
13672
|
streamRate?: number | undefined;
|
|
13631
13673
|
titlePrompt?: string | undefined;
|
|
@@ -13643,7 +13685,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13643
13685
|
fetch?: boolean | undefined;
|
|
13644
13686
|
userIdQuery?: boolean | undefined;
|
|
13645
13687
|
} | undefined;
|
|
13646
|
-
addParams?: Record<string,
|
|
13688
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13647
13689
|
dropParams?: string[] | undefined;
|
|
13648
13690
|
modelDisplayLabel?: string | undefined;
|
|
13649
13691
|
customParams?: {
|
|
@@ -13684,7 +13726,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13684
13726
|
}[] | undefined;
|
|
13685
13727
|
} | undefined;
|
|
13686
13728
|
directEndpoint?: boolean | undefined;
|
|
13687
|
-
titleMessageRole?:
|
|
13729
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
13688
13730
|
}[] | undefined;
|
|
13689
13731
|
bedrock?: {
|
|
13690
13732
|
baseURL?: string | undefined;
|
|
@@ -13727,9 +13769,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13727
13769
|
deploymentName?: string | undefined;
|
|
13728
13770
|
assistants?: boolean | undefined;
|
|
13729
13771
|
serverless?: boolean | undefined;
|
|
13730
|
-
addParams?: Record<string,
|
|
13772
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13731
13773
|
dropParams?: string[] | undefined;
|
|
13732
|
-
additionalHeaders?: Record<string,
|
|
13774
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
13733
13775
|
})[];
|
|
13734
13776
|
assistants?: boolean | undefined;
|
|
13735
13777
|
} & {
|
|
@@ -13790,7 +13832,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13790
13832
|
capabilities: Capabilities[];
|
|
13791
13833
|
apiKey?: string | undefined;
|
|
13792
13834
|
baseURL?: string | undefined;
|
|
13793
|
-
headers?: Record<string,
|
|
13835
|
+
headers?: Record<string, string> | undefined;
|
|
13794
13836
|
streamRate?: number | undefined;
|
|
13795
13837
|
titlePrompt?: string | undefined;
|
|
13796
13838
|
titleModel?: string | undefined;
|
|
@@ -13820,7 +13862,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13820
13862
|
capabilities: Capabilities[];
|
|
13821
13863
|
apiKey?: string | undefined;
|
|
13822
13864
|
baseURL?: string | undefined;
|
|
13823
|
-
headers?: Record<string,
|
|
13865
|
+
headers?: Record<string, string> | undefined;
|
|
13824
13866
|
streamRate?: number | undefined;
|
|
13825
13867
|
titlePrompt?: string | undefined;
|
|
13826
13868
|
titleModel?: string | undefined;
|
|
@@ -13866,7 +13908,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13866
13908
|
iconURL?: string | undefined;
|
|
13867
13909
|
apiKey?: string | undefined;
|
|
13868
13910
|
baseURL?: string | undefined;
|
|
13869
|
-
headers?: Record<string,
|
|
13911
|
+
headers?: Record<string, string> | undefined;
|
|
13870
13912
|
name?: string | undefined;
|
|
13871
13913
|
streamRate?: number | undefined;
|
|
13872
13914
|
titlePrompt?: string | undefined;
|
|
@@ -13884,7 +13926,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13884
13926
|
fetch?: boolean | undefined;
|
|
13885
13927
|
userIdQuery?: boolean | undefined;
|
|
13886
13928
|
} | undefined;
|
|
13887
|
-
addParams?: Record<string,
|
|
13929
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13888
13930
|
dropParams?: string[] | undefined;
|
|
13889
13931
|
modelDisplayLabel?: string | undefined;
|
|
13890
13932
|
customParams?: {
|
|
@@ -13925,7 +13967,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13925
13967
|
}[] | undefined;
|
|
13926
13968
|
} | undefined;
|
|
13927
13969
|
directEndpoint?: boolean | undefined;
|
|
13928
|
-
titleMessageRole?:
|
|
13970
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
13929
13971
|
}[] | undefined;
|
|
13930
13972
|
bedrock?: {
|
|
13931
13973
|
baseURL?: string | undefined;
|
|
@@ -13968,9 +14010,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13968
14010
|
deploymentName?: string | undefined;
|
|
13969
14011
|
assistants?: boolean | undefined;
|
|
13970
14012
|
serverless?: boolean | undefined;
|
|
13971
|
-
addParams?: Record<string,
|
|
14013
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13972
14014
|
dropParams?: string[] | undefined;
|
|
13973
|
-
additionalHeaders?: Record<string,
|
|
14015
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
13974
14016
|
})[];
|
|
13975
14017
|
assistants?: boolean | undefined;
|
|
13976
14018
|
} & {
|
|
@@ -14029,7 +14071,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14029
14071
|
version?: string | number | undefined;
|
|
14030
14072
|
apiKey?: string | undefined;
|
|
14031
14073
|
baseURL?: string | undefined;
|
|
14032
|
-
headers?: Record<string,
|
|
14074
|
+
headers?: Record<string, string> | undefined;
|
|
14033
14075
|
streamRate?: number | undefined;
|
|
14034
14076
|
titlePrompt?: string | undefined;
|
|
14035
14077
|
titleModel?: string | undefined;
|
|
@@ -14059,7 +14101,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14059
14101
|
version?: string | number | undefined;
|
|
14060
14102
|
apiKey?: string | undefined;
|
|
14061
14103
|
baseURL?: string | undefined;
|
|
14062
|
-
headers?: Record<string,
|
|
14104
|
+
headers?: Record<string, string> | undefined;
|
|
14063
14105
|
streamRate?: number | undefined;
|
|
14064
14106
|
titlePrompt?: string | undefined;
|
|
14065
14107
|
titleModel?: string | undefined;
|
|
@@ -14107,7 +14149,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14107
14149
|
iconURL?: string | undefined;
|
|
14108
14150
|
apiKey?: string | undefined;
|
|
14109
14151
|
baseURL?: string | undefined;
|
|
14110
|
-
headers?: Record<string,
|
|
14152
|
+
headers?: Record<string, string> | undefined;
|
|
14111
14153
|
name?: string | undefined;
|
|
14112
14154
|
streamRate?: number | undefined;
|
|
14113
14155
|
titlePrompt?: string | undefined;
|
|
@@ -14125,7 +14167,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14125
14167
|
fetch?: boolean | undefined;
|
|
14126
14168
|
userIdQuery?: boolean | undefined;
|
|
14127
14169
|
} | undefined;
|
|
14128
|
-
addParams?: Record<string,
|
|
14170
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
14129
14171
|
dropParams?: string[] | undefined;
|
|
14130
14172
|
modelDisplayLabel?: string | undefined;
|
|
14131
14173
|
customParams?: {
|
|
@@ -14166,7 +14208,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14166
14208
|
}[] | undefined;
|
|
14167
14209
|
} | undefined;
|
|
14168
14210
|
directEndpoint?: boolean | undefined;
|
|
14169
|
-
titleMessageRole?:
|
|
14211
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
14170
14212
|
}[] | undefined;
|
|
14171
14213
|
bedrock?: {
|
|
14172
14214
|
baseURL?: string | undefined;
|