librechat-data-provider 0.8.404 → 0.8.405

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.
@@ -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.ZodAny>>;
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.ZodAny>>;
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, any> | undefined;
73
+ addParams?: Record<string, string | number | boolean | null> | undefined;
74
74
  dropParams?: string[] | undefined;
75
- additionalHeaders?: Record<string, any> | undefined;
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, any> | undefined;
84
+ addParams?: Record<string, string | number | boolean | null> | undefined;
85
85
  dropParams?: string[] | undefined;
86
- additionalHeaders?: Record<string, any> | undefined;
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.ZodAny>>;
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.ZodAny>>;
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, any> | undefined;
137
+ addParams?: Record<string, string | number | boolean | null> | undefined;
138
138
  dropParams?: string[] | undefined;
139
- additionalHeaders?: Record<string, any> | undefined;
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, any> | undefined;
148
+ addParams?: Record<string, string | number | boolean | null> | undefined;
149
149
  dropParams?: string[] | undefined;
150
- additionalHeaders?: Record<string, any> | undefined;
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.ZodAny>>;
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.ZodAny>>;
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, any> | undefined;
200
+ addParams?: Record<string, string | number | boolean | null> | undefined;
201
201
  dropParams?: string[] | undefined;
202
- additionalHeaders?: Record<string, any> | undefined;
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, any> | undefined;
211
+ addParams?: Record<string, string | number | boolean | null> | undefined;
212
212
  dropParams?: string[] | undefined;
213
- additionalHeaders?: Record<string, any> | undefined;
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.ZodAny>>;
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, any> | undefined;
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, any> | undefined;
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.ZodAny>>;
548
- addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
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.ZodString>;
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, any> | undefined;
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, any> | undefined;
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?: string | undefined;
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, any> | undefined;
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, any> | undefined;
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?: string | undefined;
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.ZodAny>>;
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.ZodAny>>;
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, any> | undefined;
1022
+ addParams?: Record<string, string | number | boolean | null> | undefined;
915
1023
  dropParams?: string[] | undefined;
916
- additionalHeaders?: Record<string, any> | undefined;
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, any> | undefined;
1033
+ addParams?: Record<string, string | number | boolean | null> | undefined;
926
1034
  dropParams?: string[] | undefined;
927
- additionalHeaders?: Record<string, any> | undefined;
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, any> | undefined;
1054
+ addParams?: Record<string, string | number | boolean | null> | undefined;
947
1055
  dropParams?: string[] | undefined;
948
- additionalHeaders?: Record<string, any> | undefined;
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, any> | undefined;
1075
+ addParams?: Record<string, string | number | boolean | null> | undefined;
968
1076
  dropParams?: string[] | undefined;
969
- additionalHeaders?: Record<string, any> | undefined;
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.ZodAny>>;
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, any> | undefined;
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, any> | undefined;
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, any> | undefined;
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, any> | undefined;
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.ZodAny>>>;
2300
- addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
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.ZodString>>;
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, any> | undefined;
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, any> | undefined;
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?: string | undefined;
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, any> | undefined;
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, any> | undefined;
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?: string | undefined;
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.ZodAny>>;
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, any> | undefined;
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, any> | undefined;
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, any> | undefined;
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, any> | undefined;
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
- engineSTT: z.ZodOptional<z.ZodString>;
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?: string | undefined;
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?: string | undefined;
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
- engineTTS: z.ZodOptional<z.ZodString>;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>, any[] | undefined, any[] | undefined>>;
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?: any[] | undefined;
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?: any[] | undefined;
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.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>, any[] | undefined, any[] | undefined>>;
4759
+ supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
4650
4760
  }, "strip", z.ZodTypeAny, {
4651
- supportedMimeTypes?: any[] | undefined;
4761
+ supportedMimeTypes?: string[] | undefined;
4652
4762
  }, {
4653
- supportedMimeTypes?: any[] | undefined;
4763
+ supportedMimeTypes?: string[] | undefined;
4654
4764
  }>>;
4655
4765
  text: z.ZodOptional<z.ZodObject<{
4656
- supportedMimeTypes: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>, any[] | undefined, any[] | undefined>>;
4766
+ supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
4657
4767
  }, "strip", z.ZodTypeAny, {
4658
- supportedMimeTypes?: any[] | undefined;
4768
+ supportedMimeTypes?: string[] | undefined;
4659
4769
  }, {
4660
- supportedMimeTypes?: any[] | undefined;
4770
+ supportedMimeTypes?: string[] | undefined;
4661
4771
  }>>;
4662
4772
  }, "strip", z.ZodTypeAny, {
4663
4773
  text?: {
4664
- supportedMimeTypes?: any[] | undefined;
4774
+ supportedMimeTypes?: string[] | undefined;
4665
4775
  } | undefined;
4666
4776
  ocr?: {
4667
- supportedMimeTypes?: any[] | undefined;
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?: any[] | undefined;
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?: any[] | undefined;
4801
+ supportedMimeTypes?: string[] | undefined;
4692
4802
  } | undefined;
4693
4803
  ocr?: {
4694
- supportedMimeTypes?: any[] | undefined;
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?: any[] | undefined;
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; /** Google Cloud Project ID (optional - auto-detected from service key file if not provided) */
4843
+ name: z.ZodString;
4734
4844
  pluginKey: z.ZodString;
4735
4845
  description: z.ZodOptional<z.ZodString>;
4736
4846
  icon: z.ZodOptional<z.ZodString>;
@@ -5820,11 +5930,11 @@ export declare const configSchema: z.ZodObject<{
5820
5930
  instanceName: z.ZodOptional<z.ZodString>;
5821
5931
  deploymentName: z.ZodOptional<z.ZodString>;
5822
5932
  assistants: z.ZodOptional<z.ZodBoolean>;
5823
- addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
5933
+ addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
5824
5934
  dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5825
5935
  version: z.ZodOptional<z.ZodString>;
5826
5936
  baseURL: z.ZodOptional<z.ZodString>;
5827
- additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
5937
+ additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5828
5938
  }, "strip", z.ZodTypeAny, {
5829
5939
  apiKey: string;
5830
5940
  version?: string | undefined;
@@ -5833,9 +5943,9 @@ export declare const configSchema: z.ZodObject<{
5833
5943
  deploymentName?: string | undefined;
5834
5944
  assistants?: boolean | undefined;
5835
5945
  serverless?: boolean | undefined;
5836
- addParams?: Record<string, any> | undefined;
5946
+ addParams?: Record<string, string | number | boolean | null> | undefined;
5837
5947
  dropParams?: string[] | undefined;
5838
- additionalHeaders?: Record<string, any> | undefined;
5948
+ additionalHeaders?: Record<string, string> | undefined;
5839
5949
  }, {
5840
5950
  apiKey: string;
5841
5951
  version?: string | undefined;
@@ -5844,9 +5954,9 @@ export declare const configSchema: z.ZodObject<{
5844
5954
  deploymentName?: string | undefined;
5845
5955
  assistants?: boolean | undefined;
5846
5956
  serverless?: boolean | undefined;
5847
- addParams?: Record<string, any> | undefined;
5957
+ addParams?: Record<string, string | number | boolean | null> | undefined;
5848
5958
  dropParams?: string[] | undefined;
5849
- additionalHeaders?: Record<string, any> | undefined;
5959
+ additionalHeaders?: Record<string, string> | undefined;
5850
5960
  }>>, "many">;
5851
5961
  assistants: z.ZodOptional<z.ZodBoolean>;
5852
5962
  }, "strip", z.ZodTypeAny, {
@@ -5865,9 +5975,9 @@ export declare const configSchema: z.ZodObject<{
5865
5975
  deploymentName?: string | undefined;
5866
5976
  assistants?: boolean | undefined;
5867
5977
  serverless?: boolean | undefined;
5868
- addParams?: Record<string, any> | undefined;
5978
+ addParams?: Record<string, string | number | boolean | null> | undefined;
5869
5979
  dropParams?: string[] | undefined;
5870
- additionalHeaders?: Record<string, any> | undefined;
5980
+ additionalHeaders?: Record<string, string> | undefined;
5871
5981
  })[];
5872
5982
  assistants?: boolean | undefined;
5873
5983
  }, {
@@ -5886,9 +5996,9 @@ export declare const configSchema: z.ZodObject<{
5886
5996
  deploymentName?: string | undefined;
5887
5997
  assistants?: boolean | undefined;
5888
5998
  serverless?: boolean | undefined;
5889
- addParams?: Record<string, any> | undefined;
5999
+ addParams?: Record<string, string | number | boolean | null> | undefined;
5890
6000
  dropParams?: string[] | undefined;
5891
- additionalHeaders?: Record<string, any> | undefined;
6001
+ additionalHeaders?: Record<string, string> | undefined;
5892
6002
  })[];
5893
6003
  assistants?: boolean | undefined;
5894
6004
  }>, z.ZodObject<{
@@ -5963,14 +6073,14 @@ export declare const configSchema: z.ZodObject<{
5963
6073
  fetch?: boolean | undefined;
5964
6074
  userIdQuery?: boolean | undefined;
5965
6075
  }>>;
5966
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6076
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5967
6077
  }, "strip", z.ZodTypeAny, {
5968
6078
  version: string | number;
5969
6079
  retrievalModels: string[];
5970
6080
  capabilities: Capabilities[];
5971
6081
  apiKey?: string | undefined;
5972
6082
  baseURL?: string | undefined;
5973
- headers?: Record<string, any> | undefined;
6083
+ headers?: Record<string, string> | undefined;
5974
6084
  streamRate?: number | undefined;
5975
6085
  titlePrompt?: string | undefined;
5976
6086
  titleModel?: string | undefined;
@@ -5997,7 +6107,7 @@ export declare const configSchema: z.ZodObject<{
5997
6107
  version?: string | number | undefined;
5998
6108
  apiKey?: string | undefined;
5999
6109
  baseURL?: string | undefined;
6000
- headers?: Record<string, any> | undefined;
6110
+ headers?: Record<string, string> | undefined;
6001
6111
  streamRate?: number | undefined;
6002
6112
  titlePrompt?: string | undefined;
6003
6113
  titleModel?: string | undefined;
@@ -6073,14 +6183,14 @@ export declare const configSchema: z.ZodObject<{
6073
6183
  fetch?: boolean | undefined;
6074
6184
  userIdQuery?: boolean | undefined;
6075
6185
  }>>;
6076
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6186
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
6077
6187
  }, "strip", z.ZodTypeAny, {
6078
6188
  version: string | number;
6079
6189
  retrievalModels: string[];
6080
6190
  capabilities: Capabilities[];
6081
6191
  apiKey?: string | undefined;
6082
6192
  baseURL?: string | undefined;
6083
- headers?: Record<string, any> | undefined;
6193
+ headers?: Record<string, string> | undefined;
6084
6194
  streamRate?: number | undefined;
6085
6195
  titlePrompt?: string | undefined;
6086
6196
  titleModel?: string | undefined;
@@ -6107,7 +6217,7 @@ export declare const configSchema: z.ZodObject<{
6107
6217
  version?: string | number | undefined;
6108
6218
  apiKey?: string | undefined;
6109
6219
  baseURL?: string | undefined;
6110
- headers?: Record<string, any> | undefined;
6220
+ headers?: Record<string, string> | undefined;
6111
6221
  streamRate?: number | undefined;
6112
6222
  titlePrompt?: string | undefined;
6113
6223
  titleModel?: string | undefined;
@@ -6230,8 +6340,8 @@ export declare const configSchema: z.ZodObject<{
6230
6340
  }>>;
6231
6341
  iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6232
6342
  modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6233
- headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
6234
- addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
6343
+ headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
6344
+ addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>>;
6235
6345
  dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
6236
6346
  customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
6237
6347
  defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
@@ -6417,12 +6527,12 @@ export declare const configSchema: z.ZodObject<{
6417
6527
  }[] | undefined;
6418
6528
  }>>>;
6419
6529
  directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
6420
- titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6530
+ titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodEnum<["system", "user", "assistant"]>>>;
6421
6531
  }, "strip", z.ZodTypeAny, {
6422
6532
  iconURL?: string | undefined;
6423
6533
  apiKey?: string | undefined;
6424
6534
  baseURL?: string | undefined;
6425
- headers?: Record<string, any> | undefined;
6535
+ headers?: Record<string, string> | undefined;
6426
6536
  name?: string | undefined;
6427
6537
  streamRate?: number | undefined;
6428
6538
  titlePrompt?: string | undefined;
@@ -6440,7 +6550,7 @@ export declare const configSchema: z.ZodObject<{
6440
6550
  fetch?: boolean | undefined;
6441
6551
  userIdQuery?: boolean | undefined;
6442
6552
  } | undefined;
6443
- addParams?: Record<string, any> | undefined;
6553
+ addParams?: Record<string, string | number | boolean | null> | undefined;
6444
6554
  dropParams?: string[] | undefined;
6445
6555
  modelDisplayLabel?: string | undefined;
6446
6556
  customParams?: {
@@ -6481,12 +6591,12 @@ export declare const configSchema: z.ZodObject<{
6481
6591
  }[] | undefined;
6482
6592
  } | undefined;
6483
6593
  directEndpoint?: boolean | undefined;
6484
- titleMessageRole?: string | undefined;
6594
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
6485
6595
  }, {
6486
6596
  iconURL?: string | undefined;
6487
6597
  apiKey?: string | undefined;
6488
6598
  baseURL?: string | undefined;
6489
- headers?: Record<string, any> | undefined;
6599
+ headers?: Record<string, string> | undefined;
6490
6600
  name?: string | undefined;
6491
6601
  streamRate?: number | undefined;
6492
6602
  titlePrompt?: string | undefined;
@@ -6504,7 +6614,7 @@ export declare const configSchema: z.ZodObject<{
6504
6614
  fetch?: boolean | undefined;
6505
6615
  userIdQuery?: boolean | undefined;
6506
6616
  } | undefined;
6507
- addParams?: Record<string, any> | undefined;
6617
+ addParams?: Record<string, string | number | boolean | null> | undefined;
6508
6618
  dropParams?: string[] | undefined;
6509
6619
  modelDisplayLabel?: string | undefined;
6510
6620
  customParams?: {
@@ -6545,7 +6655,7 @@ export declare const configSchema: z.ZodObject<{
6545
6655
  }[] | undefined;
6546
6656
  } | undefined;
6547
6657
  directEndpoint?: boolean | undefined;
6548
- titleMessageRole?: string | undefined;
6658
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
6549
6659
  }>, "many">>>;
6550
6660
  bedrock: z.ZodOptional<z.ZodObject<{
6551
6661
  streamRate: z.ZodOptional<z.ZodNumber>;
@@ -6606,9 +6716,9 @@ export declare const configSchema: z.ZodObject<{
6606
6716
  deploymentName?: string | undefined;
6607
6717
  assistants?: boolean | undefined;
6608
6718
  serverless?: boolean | undefined;
6609
- addParams?: Record<string, any> | undefined;
6719
+ addParams?: Record<string, string | number | boolean | null> | undefined;
6610
6720
  dropParams?: string[] | undefined;
6611
- additionalHeaders?: Record<string, any> | undefined;
6721
+ additionalHeaders?: Record<string, string> | undefined;
6612
6722
  })[];
6613
6723
  assistants?: boolean | undefined;
6614
6724
  } & {
@@ -6669,7 +6779,7 @@ export declare const configSchema: z.ZodObject<{
6669
6779
  capabilities: Capabilities[];
6670
6780
  apiKey?: string | undefined;
6671
6781
  baseURL?: string | undefined;
6672
- headers?: Record<string, any> | undefined;
6782
+ headers?: Record<string, string> | undefined;
6673
6783
  streamRate?: number | undefined;
6674
6784
  titlePrompt?: string | undefined;
6675
6785
  titleModel?: string | undefined;
@@ -6699,7 +6809,7 @@ export declare const configSchema: z.ZodObject<{
6699
6809
  capabilities: Capabilities[];
6700
6810
  apiKey?: string | undefined;
6701
6811
  baseURL?: string | undefined;
6702
- headers?: Record<string, any> | undefined;
6812
+ headers?: Record<string, string> | undefined;
6703
6813
  streamRate?: number | undefined;
6704
6814
  titlePrompt?: string | undefined;
6705
6815
  titleModel?: string | undefined;
@@ -6745,7 +6855,7 @@ export declare const configSchema: z.ZodObject<{
6745
6855
  iconURL?: string | undefined;
6746
6856
  apiKey?: string | undefined;
6747
6857
  baseURL?: string | undefined;
6748
- headers?: Record<string, any> | undefined;
6858
+ headers?: Record<string, string> | undefined;
6749
6859
  name?: string | undefined;
6750
6860
  streamRate?: number | undefined;
6751
6861
  titlePrompt?: string | undefined;
@@ -6763,7 +6873,7 @@ export declare const configSchema: z.ZodObject<{
6763
6873
  fetch?: boolean | undefined;
6764
6874
  userIdQuery?: boolean | undefined;
6765
6875
  } | undefined;
6766
- addParams?: Record<string, any> | undefined;
6876
+ addParams?: Record<string, string | number | boolean | null> | undefined;
6767
6877
  dropParams?: string[] | undefined;
6768
6878
  modelDisplayLabel?: string | undefined;
6769
6879
  customParams?: {
@@ -6804,7 +6914,7 @@ export declare const configSchema: z.ZodObject<{
6804
6914
  }[] | undefined;
6805
6915
  } | undefined;
6806
6916
  directEndpoint?: boolean | undefined;
6807
- titleMessageRole?: string | undefined;
6917
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
6808
6918
  }[] | undefined;
6809
6919
  bedrock?: {
6810
6920
  baseURL?: string | undefined;
@@ -6847,9 +6957,9 @@ export declare const configSchema: z.ZodObject<{
6847
6957
  deploymentName?: string | undefined;
6848
6958
  assistants?: boolean | undefined;
6849
6959
  serverless?: boolean | undefined;
6850
- addParams?: Record<string, any> | undefined;
6960
+ addParams?: Record<string, string | number | boolean | null> | undefined;
6851
6961
  dropParams?: string[] | undefined;
6852
- additionalHeaders?: Record<string, any> | undefined;
6962
+ additionalHeaders?: Record<string, string> | undefined;
6853
6963
  })[];
6854
6964
  assistants?: boolean | undefined;
6855
6965
  } & {
@@ -6908,7 +7018,7 @@ export declare const configSchema: z.ZodObject<{
6908
7018
  version?: string | number | undefined;
6909
7019
  apiKey?: string | undefined;
6910
7020
  baseURL?: string | undefined;
6911
- headers?: Record<string, any> | undefined;
7021
+ headers?: Record<string, string> | undefined;
6912
7022
  streamRate?: number | undefined;
6913
7023
  titlePrompt?: string | undefined;
6914
7024
  titleModel?: string | undefined;
@@ -6938,7 +7048,7 @@ export declare const configSchema: z.ZodObject<{
6938
7048
  version?: string | number | undefined;
6939
7049
  apiKey?: string | undefined;
6940
7050
  baseURL?: string | undefined;
6941
- headers?: Record<string, any> | undefined;
7051
+ headers?: Record<string, string> | undefined;
6942
7052
  streamRate?: number | undefined;
6943
7053
  titlePrompt?: string | undefined;
6944
7054
  titleModel?: string | undefined;
@@ -6986,7 +7096,7 @@ export declare const configSchema: z.ZodObject<{
6986
7096
  iconURL?: string | undefined;
6987
7097
  apiKey?: string | undefined;
6988
7098
  baseURL?: string | undefined;
6989
- headers?: Record<string, any> | undefined;
7099
+ headers?: Record<string, string> | undefined;
6990
7100
  name?: string | undefined;
6991
7101
  streamRate?: number | undefined;
6992
7102
  titlePrompt?: string | undefined;
@@ -7004,7 +7114,7 @@ export declare const configSchema: z.ZodObject<{
7004
7114
  fetch?: boolean | undefined;
7005
7115
  userIdQuery?: boolean | undefined;
7006
7116
  } | undefined;
7007
- addParams?: Record<string, any> | undefined;
7117
+ addParams?: Record<string, string | number | boolean | null> | undefined;
7008
7118
  dropParams?: string[] | undefined;
7009
7119
  modelDisplayLabel?: string | undefined;
7010
7120
  customParams?: {
@@ -7045,7 +7155,7 @@ export declare const configSchema: z.ZodObject<{
7045
7155
  }[] | undefined;
7046
7156
  } | undefined;
7047
7157
  directEndpoint?: boolean | undefined;
7048
- titleMessageRole?: string | undefined;
7158
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
7049
7159
  }[] | undefined;
7050
7160
  bedrock?: {
7051
7161
  baseURL?: string | undefined;
@@ -7088,9 +7198,9 @@ export declare const configSchema: z.ZodObject<{
7088
7198
  deploymentName?: string | undefined;
7089
7199
  assistants?: boolean | undefined;
7090
7200
  serverless?: boolean | undefined;
7091
- addParams?: Record<string, any> | undefined;
7201
+ addParams?: Record<string, string | number | boolean | null> | undefined;
7092
7202
  dropParams?: string[] | undefined;
7093
- additionalHeaders?: Record<string, any> | undefined;
7203
+ additionalHeaders?: Record<string, string> | undefined;
7094
7204
  })[];
7095
7205
  assistants?: boolean | undefined;
7096
7206
  } & {
@@ -7151,7 +7261,7 @@ export declare const configSchema: z.ZodObject<{
7151
7261
  capabilities: Capabilities[];
7152
7262
  apiKey?: string | undefined;
7153
7263
  baseURL?: string | undefined;
7154
- headers?: Record<string, any> | undefined;
7264
+ headers?: Record<string, string> | undefined;
7155
7265
  streamRate?: number | undefined;
7156
7266
  titlePrompt?: string | undefined;
7157
7267
  titleModel?: string | undefined;
@@ -7181,7 +7291,7 @@ export declare const configSchema: z.ZodObject<{
7181
7291
  capabilities: Capabilities[];
7182
7292
  apiKey?: string | undefined;
7183
7293
  baseURL?: string | undefined;
7184
- headers?: Record<string, any> | undefined;
7294
+ headers?: Record<string, string> | undefined;
7185
7295
  streamRate?: number | undefined;
7186
7296
  titlePrompt?: string | undefined;
7187
7297
  titleModel?: string | undefined;
@@ -7227,7 +7337,7 @@ export declare const configSchema: z.ZodObject<{
7227
7337
  iconURL?: string | undefined;
7228
7338
  apiKey?: string | undefined;
7229
7339
  baseURL?: string | undefined;
7230
- headers?: Record<string, any> | undefined;
7340
+ headers?: Record<string, string> | undefined;
7231
7341
  name?: string | undefined;
7232
7342
  streamRate?: number | undefined;
7233
7343
  titlePrompt?: string | undefined;
@@ -7245,7 +7355,7 @@ export declare const configSchema: z.ZodObject<{
7245
7355
  fetch?: boolean | undefined;
7246
7356
  userIdQuery?: boolean | undefined;
7247
7357
  } | undefined;
7248
- addParams?: Record<string, any> | undefined;
7358
+ addParams?: Record<string, string | number | boolean | null> | undefined;
7249
7359
  dropParams?: string[] | undefined;
7250
7360
  modelDisplayLabel?: string | undefined;
7251
7361
  customParams?: {
@@ -7286,7 +7396,7 @@ export declare const configSchema: z.ZodObject<{
7286
7396
  }[] | undefined;
7287
7397
  } | undefined;
7288
7398
  directEndpoint?: boolean | undefined;
7289
- titleMessageRole?: string | undefined;
7399
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
7290
7400
  }[] | undefined;
7291
7401
  bedrock?: {
7292
7402
  baseURL?: string | undefined;
@@ -7329,9 +7439,9 @@ export declare const configSchema: z.ZodObject<{
7329
7439
  deploymentName?: string | undefined;
7330
7440
  assistants?: boolean | undefined;
7331
7441
  serverless?: boolean | undefined;
7332
- addParams?: Record<string, any> | undefined;
7442
+ addParams?: Record<string, string | number | boolean | null> | undefined;
7333
7443
  dropParams?: string[] | undefined;
7334
- additionalHeaders?: Record<string, any> | undefined;
7444
+ additionalHeaders?: Record<string, string> | undefined;
7335
7445
  })[];
7336
7446
  assistants?: boolean | undefined;
7337
7447
  } & {
@@ -7390,7 +7500,7 @@ export declare const configSchema: z.ZodObject<{
7390
7500
  version?: string | number | undefined;
7391
7501
  apiKey?: string | undefined;
7392
7502
  baseURL?: string | undefined;
7393
- headers?: Record<string, any> | undefined;
7503
+ headers?: Record<string, string> | undefined;
7394
7504
  streamRate?: number | undefined;
7395
7505
  titlePrompt?: string | undefined;
7396
7506
  titleModel?: string | undefined;
@@ -7420,7 +7530,7 @@ export declare const configSchema: z.ZodObject<{
7420
7530
  version?: string | number | undefined;
7421
7531
  apiKey?: string | undefined;
7422
7532
  baseURL?: string | undefined;
7423
- headers?: Record<string, any> | undefined;
7533
+ headers?: Record<string, string> | undefined;
7424
7534
  streamRate?: number | undefined;
7425
7535
  titlePrompt?: string | undefined;
7426
7536
  titleModel?: string | undefined;
@@ -7468,7 +7578,7 @@ export declare const configSchema: z.ZodObject<{
7468
7578
  iconURL?: string | undefined;
7469
7579
  apiKey?: string | undefined;
7470
7580
  baseURL?: string | undefined;
7471
- headers?: Record<string, any> | undefined;
7581
+ headers?: Record<string, string> | undefined;
7472
7582
  name?: string | undefined;
7473
7583
  streamRate?: number | undefined;
7474
7584
  titlePrompt?: string | undefined;
@@ -7486,7 +7596,7 @@ export declare const configSchema: z.ZodObject<{
7486
7596
  fetch?: boolean | undefined;
7487
7597
  userIdQuery?: boolean | undefined;
7488
7598
  } | undefined;
7489
- addParams?: Record<string, any> | undefined;
7599
+ addParams?: Record<string, string | number | boolean | null> | undefined;
7490
7600
  dropParams?: string[] | undefined;
7491
7601
  modelDisplayLabel?: string | undefined;
7492
7602
  customParams?: {
@@ -7527,7 +7637,7 @@ export declare const configSchema: z.ZodObject<{
7527
7637
  }[] | undefined;
7528
7638
  } | undefined;
7529
7639
  directEndpoint?: boolean | undefined;
7530
- titleMessageRole?: string | undefined;
7640
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
7531
7641
  }[] | undefined;
7532
7642
  bedrock?: {
7533
7643
  baseURL?: string | undefined;
@@ -7690,7 +7800,7 @@ export declare const configSchema: z.ZodObject<{
7690
7800
  model: string;
7691
7801
  provider: string;
7692
7802
  instructions?: string | undefined;
7693
- model_parameters?: Record<string, any> | undefined;
7803
+ model_parameters?: Record<string, string | number | boolean> | undefined;
7694
7804
  } | undefined;
7695
7805
  } | undefined;
7696
7806
  summarization?: {
@@ -7967,14 +8077,14 @@ export declare const configSchema: z.ZodObject<{
7967
8077
  conversationMode?: boolean | undefined;
7968
8078
  advancedMode?: boolean | undefined;
7969
8079
  speechToText?: boolean | {
7970
- engineSTT?: string | undefined;
8080
+ engineSTT?: "openai" | "azureOpenAI" | undefined;
7971
8081
  languageSTT?: string | undefined;
7972
8082
  autoTranscribeAudio?: boolean | undefined;
7973
8083
  decibelValue?: number | undefined;
7974
8084
  autoSendText?: number | undefined;
7975
8085
  } | undefined;
7976
8086
  textToSpeech?: boolean | {
7977
- engineTTS?: string | undefined;
8087
+ engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
7978
8088
  voice?: string | undefined;
7979
8089
  languageTTS?: string | undefined;
7980
8090
  automaticPlayback?: boolean | undefined;
@@ -8026,9 +8136,9 @@ export declare const configSchema: z.ZodObject<{
8026
8136
  deploymentName?: string | undefined;
8027
8137
  assistants?: boolean | undefined;
8028
8138
  serverless?: boolean | undefined;
8029
- addParams?: Record<string, any> | undefined;
8139
+ addParams?: Record<string, string | number | boolean | null> | undefined;
8030
8140
  dropParams?: string[] | undefined;
8031
- additionalHeaders?: Record<string, any> | undefined;
8141
+ additionalHeaders?: Record<string, string> | undefined;
8032
8142
  })[];
8033
8143
  assistants?: boolean | undefined;
8034
8144
  } & {
@@ -8089,7 +8199,7 @@ export declare const configSchema: z.ZodObject<{
8089
8199
  capabilities: Capabilities[];
8090
8200
  apiKey?: string | undefined;
8091
8201
  baseURL?: string | undefined;
8092
- headers?: Record<string, any> | undefined;
8202
+ headers?: Record<string, string> | undefined;
8093
8203
  streamRate?: number | undefined;
8094
8204
  titlePrompt?: string | undefined;
8095
8205
  titleModel?: string | undefined;
@@ -8119,7 +8229,7 @@ export declare const configSchema: z.ZodObject<{
8119
8229
  capabilities: Capabilities[];
8120
8230
  apiKey?: string | undefined;
8121
8231
  baseURL?: string | undefined;
8122
- headers?: Record<string, any> | undefined;
8232
+ headers?: Record<string, string> | undefined;
8123
8233
  streamRate?: number | undefined;
8124
8234
  titlePrompt?: string | undefined;
8125
8235
  titleModel?: string | undefined;
@@ -8165,7 +8275,7 @@ export declare const configSchema: z.ZodObject<{
8165
8275
  iconURL?: string | undefined;
8166
8276
  apiKey?: string | undefined;
8167
8277
  baseURL?: string | undefined;
8168
- headers?: Record<string, any> | undefined;
8278
+ headers?: Record<string, string> | undefined;
8169
8279
  name?: string | undefined;
8170
8280
  streamRate?: number | undefined;
8171
8281
  titlePrompt?: string | undefined;
@@ -8183,7 +8293,7 @@ export declare const configSchema: z.ZodObject<{
8183
8293
  fetch?: boolean | undefined;
8184
8294
  userIdQuery?: boolean | undefined;
8185
8295
  } | undefined;
8186
- addParams?: Record<string, any> | undefined;
8296
+ addParams?: Record<string, string | number | boolean | null> | undefined;
8187
8297
  dropParams?: string[] | undefined;
8188
8298
  modelDisplayLabel?: string | undefined;
8189
8299
  customParams?: {
@@ -8224,7 +8334,7 @@ export declare const configSchema: z.ZodObject<{
8224
8334
  }[] | undefined;
8225
8335
  } | undefined;
8226
8336
  directEndpoint?: boolean | undefined;
8227
- titleMessageRole?: string | undefined;
8337
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
8228
8338
  }[] | undefined;
8229
8339
  bedrock?: {
8230
8340
  baseURL?: string | undefined;
@@ -8253,17 +8363,17 @@ export declare const configSchema: z.ZodObject<{
8253
8363
  } | undefined;
8254
8364
  fileConfig?: {
8255
8365
  text?: {
8256
- supportedMimeTypes?: any[] | undefined;
8366
+ supportedMimeTypes?: string[] | undefined;
8257
8367
  } | undefined;
8258
8368
  ocr?: {
8259
- supportedMimeTypes?: any[] | undefined;
8369
+ supportedMimeTypes?: string[] | undefined;
8260
8370
  } | undefined;
8261
8371
  endpoints?: Record<string, {
8262
8372
  disabled?: boolean | undefined;
8263
8373
  fileLimit?: number | undefined;
8264
8374
  fileSizeLimit?: number | undefined;
8265
8375
  totalSizeLimit?: number | undefined;
8266
- supportedMimeTypes?: any[] | undefined;
8376
+ supportedMimeTypes?: string[] | undefined;
8267
8377
  }> | undefined;
8268
8378
  serverFileSizeLimit?: number | undefined;
8269
8379
  avatarSizeLimit?: number | undefined;
@@ -8464,7 +8574,7 @@ export declare const configSchema: z.ZodObject<{
8464
8574
  model: string;
8465
8575
  provider: string;
8466
8576
  instructions?: string | undefined;
8467
- model_parameters?: Record<string, any> | undefined;
8577
+ model_parameters?: Record<string, string | number | boolean> | undefined;
8468
8578
  } | undefined;
8469
8579
  } | undefined;
8470
8580
  summarization?: {
@@ -8812,14 +8922,14 @@ export declare const configSchema: z.ZodObject<{
8812
8922
  conversationMode?: boolean | undefined;
8813
8923
  advancedMode?: boolean | undefined;
8814
8924
  speechToText?: boolean | {
8815
- engineSTT?: string | undefined;
8925
+ engineSTT?: "openai" | "azureOpenAI" | undefined;
8816
8926
  languageSTT?: string | undefined;
8817
8927
  autoTranscribeAudio?: boolean | undefined;
8818
8928
  decibelValue?: number | undefined;
8819
8929
  autoSendText?: number | undefined;
8820
8930
  } | undefined;
8821
8931
  textToSpeech?: boolean | {
8822
- engineTTS?: string | undefined;
8932
+ engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
8823
8933
  voice?: string | undefined;
8824
8934
  languageTTS?: string | undefined;
8825
8935
  automaticPlayback?: boolean | undefined;
@@ -8871,9 +8981,9 @@ export declare const configSchema: z.ZodObject<{
8871
8981
  deploymentName?: string | undefined;
8872
8982
  assistants?: boolean | undefined;
8873
8983
  serverless?: boolean | undefined;
8874
- addParams?: Record<string, any> | undefined;
8984
+ addParams?: Record<string, string | number | boolean | null> | undefined;
8875
8985
  dropParams?: string[] | undefined;
8876
- additionalHeaders?: Record<string, any> | undefined;
8986
+ additionalHeaders?: Record<string, string> | undefined;
8877
8987
  })[];
8878
8988
  assistants?: boolean | undefined;
8879
8989
  } & {
@@ -8932,7 +9042,7 @@ export declare const configSchema: z.ZodObject<{
8932
9042
  version?: string | number | undefined;
8933
9043
  apiKey?: string | undefined;
8934
9044
  baseURL?: string | undefined;
8935
- headers?: Record<string, any> | undefined;
9045
+ headers?: Record<string, string> | undefined;
8936
9046
  streamRate?: number | undefined;
8937
9047
  titlePrompt?: string | undefined;
8938
9048
  titleModel?: string | undefined;
@@ -8962,7 +9072,7 @@ export declare const configSchema: z.ZodObject<{
8962
9072
  version?: string | number | undefined;
8963
9073
  apiKey?: string | undefined;
8964
9074
  baseURL?: string | undefined;
8965
- headers?: Record<string, any> | undefined;
9075
+ headers?: Record<string, string> | undefined;
8966
9076
  streamRate?: number | undefined;
8967
9077
  titlePrompt?: string | undefined;
8968
9078
  titleModel?: string | undefined;
@@ -9010,7 +9120,7 @@ export declare const configSchema: z.ZodObject<{
9010
9120
  iconURL?: string | undefined;
9011
9121
  apiKey?: string | undefined;
9012
9122
  baseURL?: string | undefined;
9013
- headers?: Record<string, any> | undefined;
9123
+ headers?: Record<string, string> | undefined;
9014
9124
  name?: string | undefined;
9015
9125
  streamRate?: number | undefined;
9016
9126
  titlePrompt?: string | undefined;
@@ -9028,7 +9138,7 @@ export declare const configSchema: z.ZodObject<{
9028
9138
  fetch?: boolean | undefined;
9029
9139
  userIdQuery?: boolean | undefined;
9030
9140
  } | undefined;
9031
- addParams?: Record<string, any> | undefined;
9141
+ addParams?: Record<string, string | number | boolean | null> | undefined;
9032
9142
  dropParams?: string[] | undefined;
9033
9143
  modelDisplayLabel?: string | undefined;
9034
9144
  customParams?: {
@@ -9069,7 +9179,7 @@ export declare const configSchema: z.ZodObject<{
9069
9179
  }[] | undefined;
9070
9180
  } | undefined;
9071
9181
  directEndpoint?: boolean | undefined;
9072
- titleMessageRole?: string | undefined;
9182
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
9073
9183
  }[] | undefined;
9074
9184
  bedrock?: {
9075
9185
  baseURL?: string | undefined;
@@ -9098,17 +9208,17 @@ export declare const configSchema: z.ZodObject<{
9098
9208
  } | undefined;
9099
9209
  fileConfig?: {
9100
9210
  text?: {
9101
- supportedMimeTypes?: any[] | undefined;
9211
+ supportedMimeTypes?: string[] | undefined;
9102
9212
  } | undefined;
9103
9213
  ocr?: {
9104
- supportedMimeTypes?: any[] | undefined;
9214
+ supportedMimeTypes?: string[] | undefined;
9105
9215
  } | undefined;
9106
9216
  endpoints?: Record<string, {
9107
9217
  disabled?: boolean | undefined;
9108
9218
  fileLimit?: number | undefined;
9109
9219
  fileSizeLimit?: number | undefined;
9110
9220
  totalSizeLimit?: number | undefined;
9111
- supportedMimeTypes?: any[] | undefined;
9221
+ supportedMimeTypes?: string[] | undefined;
9112
9222
  }> | undefined;
9113
9223
  serverFileSizeLimit?: number | undefined;
9114
9224
  avatarSizeLimit?: number | undefined;
@@ -9483,17 +9593,17 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9483
9593
  provider: z.ZodString;
9484
9594
  model: z.ZodString;
9485
9595
  instructions: z.ZodOptional<z.ZodString>;
9486
- model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9596
+ model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
9487
9597
  }, "strip", z.ZodTypeAny, {
9488
9598
  model: string;
9489
9599
  provider: string;
9490
9600
  instructions?: string | undefined;
9491
- model_parameters?: Record<string, any> | undefined;
9601
+ model_parameters?: Record<string, string | number | boolean> | undefined;
9492
9602
  }, {
9493
9603
  model: string;
9494
9604
  provider: string;
9495
9605
  instructions?: string | undefined;
9496
- model_parameters?: Record<string, any> | undefined;
9606
+ model_parameters?: Record<string, string | number | boolean> | undefined;
9497
9607
  }>]>>;
9498
9608
  }, "strip", z.ZodTypeAny, {
9499
9609
  charLimit: number;
@@ -9508,7 +9618,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9508
9618
  model: string;
9509
9619
  provider: string;
9510
9620
  instructions?: string | undefined;
9511
- model_parameters?: Record<string, any> | undefined;
9621
+ model_parameters?: Record<string, string | number | boolean> | undefined;
9512
9622
  } | undefined;
9513
9623
  }, {
9514
9624
  disabled?: boolean | undefined;
@@ -9523,7 +9633,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9523
9633
  model: string;
9524
9634
  provider: string;
9525
9635
  instructions?: string | undefined;
9526
- model_parameters?: Record<string, any> | undefined;
9636
+ model_parameters?: Record<string, string | number | boolean> | undefined;
9527
9637
  } | undefined;
9528
9638
  }>>;
9529
9639
  summarization: z.ZodOptional<z.ZodObject<{
@@ -9697,7 +9807,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9697
9807
  type: z.ZodDefault<z.ZodLiteral<"stdio">>;
9698
9808
  command: z.ZodString;
9699
9809
  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>;
9810
+ 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
9811
  stderr: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["pipe", "ignore", "inherit"]>, z.ZodNumber]>>;
9702
9812
  }, "strip", z.ZodTypeAny, {
9703
9813
  type: "stdio";
@@ -10903,40 +11013,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10903
11013
  conversationMode: z.ZodOptional<z.ZodBoolean>;
10904
11014
  advancedMode: z.ZodOptional<z.ZodBoolean>;
10905
11015
  speechToText: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
10906
- engineSTT: z.ZodOptional<z.ZodString>;
11016
+ /** Keep in sync with STTProviders enum (defined below — cannot reference due to eval order) */
11017
+ engineSTT: z.ZodOptional<z.ZodEnum<["openai", "azureOpenAI"]>>;
10907
11018
  languageSTT: z.ZodOptional<z.ZodString>;
10908
11019
  autoTranscribeAudio: z.ZodOptional<z.ZodBoolean>;
10909
11020
  decibelValue: z.ZodOptional<z.ZodNumber>;
10910
11021
  autoSendText: z.ZodOptional<z.ZodNumber>;
10911
11022
  }, "strip", z.ZodTypeAny, {
10912
- engineSTT?: string | undefined;
11023
+ engineSTT?: "openai" | "azureOpenAI" | undefined;
10913
11024
  languageSTT?: string | undefined;
10914
11025
  autoTranscribeAudio?: boolean | undefined;
10915
11026
  decibelValue?: number | undefined;
10916
11027
  autoSendText?: number | undefined;
10917
11028
  }, {
10918
- engineSTT?: string | undefined;
11029
+ engineSTT?: "openai" | "azureOpenAI" | undefined;
10919
11030
  languageSTT?: string | undefined;
10920
11031
  autoTranscribeAudio?: boolean | undefined;
10921
11032
  decibelValue?: number | undefined;
10922
11033
  autoSendText?: number | undefined;
10923
11034
  }>]>>;
10924
11035
  textToSpeech: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
10925
- engineTTS: z.ZodOptional<z.ZodString>;
11036
+ /** Keep in sync with TTSProviders enum (defined below — cannot reference due to eval order) */
11037
+ engineTTS: z.ZodOptional<z.ZodEnum<["openai", "azureOpenAI", "elevenlabs", "localai"]>>;
10926
11038
  voice: z.ZodOptional<z.ZodString>;
10927
11039
  languageTTS: z.ZodOptional<z.ZodString>;
10928
11040
  automaticPlayback: z.ZodOptional<z.ZodBoolean>;
10929
11041
  playbackRate: z.ZodOptional<z.ZodNumber>;
10930
11042
  cacheTTS: z.ZodOptional<z.ZodBoolean>;
10931
11043
  }, "strip", z.ZodTypeAny, {
10932
- engineTTS?: string | undefined;
11044
+ engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
10933
11045
  voice?: string | undefined;
10934
11046
  languageTTS?: string | undefined;
10935
11047
  automaticPlayback?: boolean | undefined;
10936
11048
  playbackRate?: number | undefined;
10937
11049
  cacheTTS?: boolean | undefined;
10938
11050
  }, {
10939
- engineTTS?: string | undefined;
11051
+ engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
10940
11052
  voice?: string | undefined;
10941
11053
  languageTTS?: string | undefined;
10942
11054
  automaticPlayback?: boolean | undefined;
@@ -10947,14 +11059,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10947
11059
  conversationMode?: boolean | undefined;
10948
11060
  advancedMode?: boolean | undefined;
10949
11061
  speechToText?: boolean | {
10950
- engineSTT?: string | undefined;
11062
+ engineSTT?: "openai" | "azureOpenAI" | undefined;
10951
11063
  languageSTT?: string | undefined;
10952
11064
  autoTranscribeAudio?: boolean | undefined;
10953
11065
  decibelValue?: number | undefined;
10954
11066
  autoSendText?: number | undefined;
10955
11067
  } | undefined;
10956
11068
  textToSpeech?: boolean | {
10957
- engineTTS?: string | undefined;
11069
+ engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
10958
11070
  voice?: string | undefined;
10959
11071
  languageTTS?: string | undefined;
10960
11072
  automaticPlayback?: boolean | undefined;
@@ -10965,14 +11077,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10965
11077
  conversationMode?: boolean | undefined;
10966
11078
  advancedMode?: boolean | undefined;
10967
11079
  speechToText?: boolean | {
10968
- engineSTT?: string | undefined;
11080
+ engineSTT?: "openai" | "azureOpenAI" | undefined;
10969
11081
  languageSTT?: string | undefined;
10970
11082
  autoTranscribeAudio?: boolean | undefined;
10971
11083
  decibelValue?: number | undefined;
10972
11084
  autoSendText?: number | undefined;
10973
11085
  } | undefined;
10974
11086
  textToSpeech?: boolean | {
10975
- engineTTS?: string | undefined;
11087
+ engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
10976
11088
  voice?: string | undefined;
10977
11089
  languageTTS?: string | undefined;
10978
11090
  automaticPlayback?: boolean | undefined;
@@ -11034,14 +11146,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11034
11146
  conversationMode?: boolean | undefined;
11035
11147
  advancedMode?: boolean | undefined;
11036
11148
  speechToText?: boolean | {
11037
- engineSTT?: string | undefined;
11149
+ engineSTT?: "openai" | "azureOpenAI" | undefined;
11038
11150
  languageSTT?: string | undefined;
11039
11151
  autoTranscribeAudio?: boolean | undefined;
11040
11152
  decibelValue?: number | undefined;
11041
11153
  autoSendText?: number | undefined;
11042
11154
  } | undefined;
11043
11155
  textToSpeech?: boolean | {
11044
- engineTTS?: string | undefined;
11156
+ engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
11045
11157
  voice?: string | undefined;
11046
11158
  languageTTS?: string | undefined;
11047
11159
  automaticPlayback?: boolean | undefined;
@@ -11103,14 +11215,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11103
11215
  conversationMode?: boolean | undefined;
11104
11216
  advancedMode?: boolean | undefined;
11105
11217
  speechToText?: boolean | {
11106
- engineSTT?: string | undefined;
11218
+ engineSTT?: "openai" | "azureOpenAI" | undefined;
11107
11219
  languageSTT?: string | undefined;
11108
11220
  autoTranscribeAudio?: boolean | undefined;
11109
11221
  decibelValue?: number | undefined;
11110
11222
  autoSendText?: number | undefined;
11111
11223
  } | undefined;
11112
11224
  textToSpeech?: boolean | {
11113
- engineTTS?: string | undefined;
11225
+ engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
11114
11226
  voice?: string | undefined;
11115
11227
  languageTTS?: string | undefined;
11116
11228
  automaticPlayback?: boolean | undefined;
@@ -11241,19 +11353,19 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11241
11353
  fileLimit: z.ZodOptional<z.ZodNumber>;
11242
11354
  fileSizeLimit: z.ZodOptional<z.ZodNumber>;
11243
11355
  totalSizeLimit: z.ZodOptional<z.ZodNumber>;
11244
- supportedMimeTypes: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>, any[] | undefined, any[] | undefined>>;
11356
+ supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
11245
11357
  }, "strip", z.ZodTypeAny, {
11246
11358
  disabled?: boolean | undefined;
11247
11359
  fileLimit?: number | undefined;
11248
11360
  fileSizeLimit?: number | undefined;
11249
11361
  totalSizeLimit?: number | undefined;
11250
- supportedMimeTypes?: any[] | undefined;
11362
+ supportedMimeTypes?: string[] | undefined;
11251
11363
  }, {
11252
11364
  disabled?: boolean | undefined;
11253
11365
  fileLimit?: number | undefined;
11254
11366
  fileSizeLimit?: number | undefined;
11255
11367
  totalSizeLimit?: number | undefined;
11256
- supportedMimeTypes?: any[] | undefined;
11368
+ supportedMimeTypes?: string[] | undefined;
11257
11369
  }>>>;
11258
11370
  serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
11259
11371
  avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
@@ -11285,32 +11397,32 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11285
11397
  quality?: number | undefined;
11286
11398
  }>>;
11287
11399
  ocr: z.ZodOptional<z.ZodObject<{
11288
- supportedMimeTypes: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>, any[] | undefined, any[] | undefined>>;
11400
+ supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
11289
11401
  }, "strip", z.ZodTypeAny, {
11290
- supportedMimeTypes?: any[] | undefined;
11402
+ supportedMimeTypes?: string[] | undefined;
11291
11403
  }, {
11292
- supportedMimeTypes?: any[] | undefined;
11404
+ supportedMimeTypes?: string[] | undefined;
11293
11405
  }>>;
11294
11406
  text: z.ZodOptional<z.ZodObject<{
11295
- supportedMimeTypes: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>, any[] | undefined, any[] | undefined>>;
11407
+ supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
11296
11408
  }, "strip", z.ZodTypeAny, {
11297
- supportedMimeTypes?: any[] | undefined;
11409
+ supportedMimeTypes?: string[] | undefined;
11298
11410
  }, {
11299
- supportedMimeTypes?: any[] | undefined;
11411
+ supportedMimeTypes?: string[] | undefined;
11300
11412
  }>>;
11301
11413
  }, "strip", z.ZodTypeAny, {
11302
11414
  text?: {
11303
- supportedMimeTypes?: any[] | undefined;
11415
+ supportedMimeTypes?: string[] | undefined;
11304
11416
  } | undefined;
11305
11417
  ocr?: {
11306
- supportedMimeTypes?: any[] | undefined;
11418
+ supportedMimeTypes?: string[] | undefined;
11307
11419
  } | undefined;
11308
11420
  endpoints?: Record<string, {
11309
11421
  disabled?: boolean | undefined;
11310
11422
  fileLimit?: number | undefined;
11311
11423
  fileSizeLimit?: number | undefined;
11312
11424
  totalSizeLimit?: number | undefined;
11313
- supportedMimeTypes?: any[] | undefined;
11425
+ supportedMimeTypes?: string[] | undefined;
11314
11426
  }> | undefined;
11315
11427
  serverFileSizeLimit?: number | undefined;
11316
11428
  avatarSizeLimit?: number | undefined;
@@ -11327,17 +11439,17 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11327
11439
  } | undefined;
11328
11440
  }, {
11329
11441
  text?: {
11330
- supportedMimeTypes?: any[] | undefined;
11442
+ supportedMimeTypes?: string[] | undefined;
11331
11443
  } | undefined;
11332
11444
  ocr?: {
11333
- supportedMimeTypes?: any[] | undefined;
11445
+ supportedMimeTypes?: string[] | undefined;
11334
11446
  } | undefined;
11335
11447
  endpoints?: Record<string, {
11336
11448
  disabled?: boolean | undefined;
11337
11449
  fileLimit?: number | undefined;
11338
11450
  fileSizeLimit?: number | undefined;
11339
11451
  totalSizeLimit?: number | undefined;
11340
- supportedMimeTypes?: any[] | undefined;
11452
+ supportedMimeTypes?: string[] | undefined;
11341
11453
  }> | undefined;
11342
11454
  serverFileSizeLimit?: number | undefined;
11343
11455
  avatarSizeLimit?: number | undefined;
@@ -11369,7 +11481,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11369
11481
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11370
11482
  user: z.ZodOptional<z.ZodString>;
11371
11483
  tools: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
11372
- name: z.ZodString; /** Google Cloud Project ID (optional - auto-detected from service key file if not provided) */
11484
+ name: z.ZodString;
11373
11485
  pluginKey: z.ZodString;
11374
11486
  description: z.ZodOptional<z.ZodString>;
11375
11487
  icon: z.ZodOptional<z.ZodString>;
@@ -12459,11 +12571,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12459
12571
  instanceName: z.ZodOptional<z.ZodString>;
12460
12572
  deploymentName: z.ZodOptional<z.ZodString>;
12461
12573
  assistants: z.ZodOptional<z.ZodBoolean>;
12462
- addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
12574
+ addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
12463
12575
  dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12464
12576
  version: z.ZodOptional<z.ZodString>;
12465
12577
  baseURL: z.ZodOptional<z.ZodString>;
12466
- additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
12578
+ additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
12467
12579
  }, "strip", z.ZodTypeAny, {
12468
12580
  apiKey: string;
12469
12581
  version?: string | undefined;
@@ -12472,9 +12584,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12472
12584
  deploymentName?: string | undefined;
12473
12585
  assistants?: boolean | undefined;
12474
12586
  serverless?: boolean | undefined;
12475
- addParams?: Record<string, any> | undefined;
12587
+ addParams?: Record<string, string | number | boolean | null> | undefined;
12476
12588
  dropParams?: string[] | undefined;
12477
- additionalHeaders?: Record<string, any> | undefined;
12589
+ additionalHeaders?: Record<string, string> | undefined;
12478
12590
  }, {
12479
12591
  apiKey: string;
12480
12592
  version?: string | undefined;
@@ -12483,9 +12595,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12483
12595
  deploymentName?: string | undefined;
12484
12596
  assistants?: boolean | undefined;
12485
12597
  serverless?: boolean | undefined;
12486
- addParams?: Record<string, any> | undefined;
12598
+ addParams?: Record<string, string | number | boolean | null> | undefined;
12487
12599
  dropParams?: string[] | undefined;
12488
- additionalHeaders?: Record<string, any> | undefined;
12600
+ additionalHeaders?: Record<string, string> | undefined;
12489
12601
  }>>, "many">;
12490
12602
  assistants: z.ZodOptional<z.ZodBoolean>;
12491
12603
  }, "strip", z.ZodTypeAny, {
@@ -12504,9 +12616,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12504
12616
  deploymentName?: string | undefined;
12505
12617
  assistants?: boolean | undefined;
12506
12618
  serverless?: boolean | undefined;
12507
- addParams?: Record<string, any> | undefined;
12619
+ addParams?: Record<string, string | number | boolean | null> | undefined;
12508
12620
  dropParams?: string[] | undefined;
12509
- additionalHeaders?: Record<string, any> | undefined;
12621
+ additionalHeaders?: Record<string, string> | undefined;
12510
12622
  })[];
12511
12623
  assistants?: boolean | undefined;
12512
12624
  }, {
@@ -12525,9 +12637,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12525
12637
  deploymentName?: string | undefined;
12526
12638
  assistants?: boolean | undefined;
12527
12639
  serverless?: boolean | undefined;
12528
- addParams?: Record<string, any> | undefined;
12640
+ addParams?: Record<string, string | number | boolean | null> | undefined;
12529
12641
  dropParams?: string[] | undefined;
12530
- additionalHeaders?: Record<string, any> | undefined;
12642
+ additionalHeaders?: Record<string, string> | undefined;
12531
12643
  })[];
12532
12644
  assistants?: boolean | undefined;
12533
12645
  }>, z.ZodObject<{
@@ -12602,14 +12714,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12602
12714
  fetch?: boolean | undefined;
12603
12715
  userIdQuery?: boolean | undefined;
12604
12716
  }>>;
12605
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
12717
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
12606
12718
  }, "strip", z.ZodTypeAny, {
12607
12719
  version: string | number;
12608
12720
  retrievalModels: string[];
12609
12721
  capabilities: Capabilities[];
12610
12722
  apiKey?: string | undefined;
12611
12723
  baseURL?: string | undefined;
12612
- headers?: Record<string, any> | undefined;
12724
+ headers?: Record<string, string> | undefined;
12613
12725
  streamRate?: number | undefined;
12614
12726
  titlePrompt?: string | undefined;
12615
12727
  titleModel?: string | undefined;
@@ -12636,7 +12748,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12636
12748
  version?: string | number | undefined;
12637
12749
  apiKey?: string | undefined;
12638
12750
  baseURL?: string | undefined;
12639
- headers?: Record<string, any> | undefined;
12751
+ headers?: Record<string, string> | undefined;
12640
12752
  streamRate?: number | undefined;
12641
12753
  titlePrompt?: string | undefined;
12642
12754
  titleModel?: string | undefined;
@@ -12712,14 +12824,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12712
12824
  fetch?: boolean | undefined;
12713
12825
  userIdQuery?: boolean | undefined;
12714
12826
  }>>;
12715
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
12827
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
12716
12828
  }, "strip", z.ZodTypeAny, {
12717
12829
  version: string | number;
12718
12830
  retrievalModels: string[];
12719
12831
  capabilities: Capabilities[];
12720
12832
  apiKey?: string | undefined;
12721
12833
  baseURL?: string | undefined;
12722
- headers?: Record<string, any> | undefined;
12834
+ headers?: Record<string, string> | undefined;
12723
12835
  streamRate?: number | undefined;
12724
12836
  titlePrompt?: string | undefined;
12725
12837
  titleModel?: string | undefined;
@@ -12746,7 +12858,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12746
12858
  version?: string | number | undefined;
12747
12859
  apiKey?: string | undefined;
12748
12860
  baseURL?: string | undefined;
12749
- headers?: Record<string, any> | undefined;
12861
+ headers?: Record<string, string> | undefined;
12750
12862
  streamRate?: number | undefined;
12751
12863
  titlePrompt?: string | undefined;
12752
12864
  titleModel?: string | undefined;
@@ -12869,8 +12981,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12869
12981
  }>>;
12870
12982
  iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12871
12983
  modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12872
- headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
12873
- addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
12984
+ headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
12985
+ addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>>;
12874
12986
  dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
12875
12987
  customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
12876
12988
  defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
@@ -13056,12 +13168,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13056
13168
  }[] | undefined;
13057
13169
  }>>>;
13058
13170
  directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
13059
- titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13171
+ titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodEnum<["system", "user", "assistant"]>>>;
13060
13172
  }, "strip", z.ZodTypeAny, {
13061
13173
  iconURL?: string | undefined;
13062
13174
  apiKey?: string | undefined;
13063
13175
  baseURL?: string | undefined;
13064
- headers?: Record<string, any> | undefined;
13176
+ headers?: Record<string, string> | undefined;
13065
13177
  name?: string | undefined;
13066
13178
  streamRate?: number | undefined;
13067
13179
  titlePrompt?: string | undefined;
@@ -13079,7 +13191,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13079
13191
  fetch?: boolean | undefined;
13080
13192
  userIdQuery?: boolean | undefined;
13081
13193
  } | undefined;
13082
- addParams?: Record<string, any> | undefined;
13194
+ addParams?: Record<string, string | number | boolean | null> | undefined;
13083
13195
  dropParams?: string[] | undefined;
13084
13196
  modelDisplayLabel?: string | undefined;
13085
13197
  customParams?: {
@@ -13120,12 +13232,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13120
13232
  }[] | undefined;
13121
13233
  } | undefined;
13122
13234
  directEndpoint?: boolean | undefined;
13123
- titleMessageRole?: string | undefined;
13235
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
13124
13236
  }, {
13125
13237
  iconURL?: string | undefined;
13126
13238
  apiKey?: string | undefined;
13127
13239
  baseURL?: string | undefined;
13128
- headers?: Record<string, any> | undefined;
13240
+ headers?: Record<string, string> | undefined;
13129
13241
  name?: string | undefined;
13130
13242
  streamRate?: number | undefined;
13131
13243
  titlePrompt?: string | undefined;
@@ -13143,7 +13255,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13143
13255
  fetch?: boolean | undefined;
13144
13256
  userIdQuery?: boolean | undefined;
13145
13257
  } | undefined;
13146
- addParams?: Record<string, any> | undefined;
13258
+ addParams?: Record<string, string | number | boolean | null> | undefined;
13147
13259
  dropParams?: string[] | undefined;
13148
13260
  modelDisplayLabel?: string | undefined;
13149
13261
  customParams?: {
@@ -13184,7 +13296,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13184
13296
  }[] | undefined;
13185
13297
  } | undefined;
13186
13298
  directEndpoint?: boolean | undefined;
13187
- titleMessageRole?: string | undefined;
13299
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
13188
13300
  }>, "many">>>;
13189
13301
  bedrock: z.ZodOptional<z.ZodObject<{
13190
13302
  streamRate: z.ZodOptional<z.ZodNumber>;
@@ -13245,9 +13357,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13245
13357
  deploymentName?: string | undefined;
13246
13358
  assistants?: boolean | undefined;
13247
13359
  serverless?: boolean | undefined;
13248
- addParams?: Record<string, any> | undefined;
13360
+ addParams?: Record<string, string | number | boolean | null> | undefined;
13249
13361
  dropParams?: string[] | undefined;
13250
- additionalHeaders?: Record<string, any> | undefined;
13362
+ additionalHeaders?: Record<string, string> | undefined;
13251
13363
  })[];
13252
13364
  assistants?: boolean | undefined;
13253
13365
  } & {
@@ -13308,7 +13420,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13308
13420
  capabilities: Capabilities[];
13309
13421
  apiKey?: string | undefined;
13310
13422
  baseURL?: string | undefined;
13311
- headers?: Record<string, any> | undefined;
13423
+ headers?: Record<string, string> | undefined;
13312
13424
  streamRate?: number | undefined;
13313
13425
  titlePrompt?: string | undefined;
13314
13426
  titleModel?: string | undefined;
@@ -13338,7 +13450,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13338
13450
  capabilities: Capabilities[];
13339
13451
  apiKey?: string | undefined;
13340
13452
  baseURL?: string | undefined;
13341
- headers?: Record<string, any> | undefined;
13453
+ headers?: Record<string, string> | undefined;
13342
13454
  streamRate?: number | undefined;
13343
13455
  titlePrompt?: string | undefined;
13344
13456
  titleModel?: string | undefined;
@@ -13384,7 +13496,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13384
13496
  iconURL?: string | undefined;
13385
13497
  apiKey?: string | undefined;
13386
13498
  baseURL?: string | undefined;
13387
- headers?: Record<string, any> | undefined;
13499
+ headers?: Record<string, string> | undefined;
13388
13500
  name?: string | undefined;
13389
13501
  streamRate?: number | undefined;
13390
13502
  titlePrompt?: string | undefined;
@@ -13402,7 +13514,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13402
13514
  fetch?: boolean | undefined;
13403
13515
  userIdQuery?: boolean | undefined;
13404
13516
  } | undefined;
13405
- addParams?: Record<string, any> | undefined;
13517
+ addParams?: Record<string, string | number | boolean | null> | undefined;
13406
13518
  dropParams?: string[] | undefined;
13407
13519
  modelDisplayLabel?: string | undefined;
13408
13520
  customParams?: {
@@ -13443,7 +13555,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13443
13555
  }[] | undefined;
13444
13556
  } | undefined;
13445
13557
  directEndpoint?: boolean | undefined;
13446
- titleMessageRole?: string | undefined;
13558
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
13447
13559
  }[] | undefined;
13448
13560
  bedrock?: {
13449
13561
  baseURL?: string | undefined;
@@ -13486,9 +13598,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13486
13598
  deploymentName?: string | undefined;
13487
13599
  assistants?: boolean | undefined;
13488
13600
  serverless?: boolean | undefined;
13489
- addParams?: Record<string, any> | undefined;
13601
+ addParams?: Record<string, string | number | boolean | null> | undefined;
13490
13602
  dropParams?: string[] | undefined;
13491
- additionalHeaders?: Record<string, any> | undefined;
13603
+ additionalHeaders?: Record<string, string> | undefined;
13492
13604
  })[];
13493
13605
  assistants?: boolean | undefined;
13494
13606
  } & {
@@ -13547,7 +13659,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13547
13659
  version?: string | number | undefined;
13548
13660
  apiKey?: string | undefined;
13549
13661
  baseURL?: string | undefined;
13550
- headers?: Record<string, any> | undefined;
13662
+ headers?: Record<string, string> | undefined;
13551
13663
  streamRate?: number | undefined;
13552
13664
  titlePrompt?: string | undefined;
13553
13665
  titleModel?: string | undefined;
@@ -13577,7 +13689,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13577
13689
  version?: string | number | undefined;
13578
13690
  apiKey?: string | undefined;
13579
13691
  baseURL?: string | undefined;
13580
- headers?: Record<string, any> | undefined;
13692
+ headers?: Record<string, string> | undefined;
13581
13693
  streamRate?: number | undefined;
13582
13694
  titlePrompt?: string | undefined;
13583
13695
  titleModel?: string | undefined;
@@ -13625,7 +13737,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13625
13737
  iconURL?: string | undefined;
13626
13738
  apiKey?: string | undefined;
13627
13739
  baseURL?: string | undefined;
13628
- headers?: Record<string, any> | undefined;
13740
+ headers?: Record<string, string> | undefined;
13629
13741
  name?: string | undefined;
13630
13742
  streamRate?: number | undefined;
13631
13743
  titlePrompt?: string | undefined;
@@ -13643,7 +13755,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13643
13755
  fetch?: boolean | undefined;
13644
13756
  userIdQuery?: boolean | undefined;
13645
13757
  } | undefined;
13646
- addParams?: Record<string, any> | undefined;
13758
+ addParams?: Record<string, string | number | boolean | null> | undefined;
13647
13759
  dropParams?: string[] | undefined;
13648
13760
  modelDisplayLabel?: string | undefined;
13649
13761
  customParams?: {
@@ -13684,7 +13796,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13684
13796
  }[] | undefined;
13685
13797
  } | undefined;
13686
13798
  directEndpoint?: boolean | undefined;
13687
- titleMessageRole?: string | undefined;
13799
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
13688
13800
  }[] | undefined;
13689
13801
  bedrock?: {
13690
13802
  baseURL?: string | undefined;
@@ -13727,9 +13839,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13727
13839
  deploymentName?: string | undefined;
13728
13840
  assistants?: boolean | undefined;
13729
13841
  serverless?: boolean | undefined;
13730
- addParams?: Record<string, any> | undefined;
13842
+ addParams?: Record<string, string | number | boolean | null> | undefined;
13731
13843
  dropParams?: string[] | undefined;
13732
- additionalHeaders?: Record<string, any> | undefined;
13844
+ additionalHeaders?: Record<string, string> | undefined;
13733
13845
  })[];
13734
13846
  assistants?: boolean | undefined;
13735
13847
  } & {
@@ -13790,7 +13902,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13790
13902
  capabilities: Capabilities[];
13791
13903
  apiKey?: string | undefined;
13792
13904
  baseURL?: string | undefined;
13793
- headers?: Record<string, any> | undefined;
13905
+ headers?: Record<string, string> | undefined;
13794
13906
  streamRate?: number | undefined;
13795
13907
  titlePrompt?: string | undefined;
13796
13908
  titleModel?: string | undefined;
@@ -13820,7 +13932,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13820
13932
  capabilities: Capabilities[];
13821
13933
  apiKey?: string | undefined;
13822
13934
  baseURL?: string | undefined;
13823
- headers?: Record<string, any> | undefined;
13935
+ headers?: Record<string, string> | undefined;
13824
13936
  streamRate?: number | undefined;
13825
13937
  titlePrompt?: string | undefined;
13826
13938
  titleModel?: string | undefined;
@@ -13866,7 +13978,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13866
13978
  iconURL?: string | undefined;
13867
13979
  apiKey?: string | undefined;
13868
13980
  baseURL?: string | undefined;
13869
- headers?: Record<string, any> | undefined;
13981
+ headers?: Record<string, string> | undefined;
13870
13982
  name?: string | undefined;
13871
13983
  streamRate?: number | undefined;
13872
13984
  titlePrompt?: string | undefined;
@@ -13884,7 +13996,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13884
13996
  fetch?: boolean | undefined;
13885
13997
  userIdQuery?: boolean | undefined;
13886
13998
  } | undefined;
13887
- addParams?: Record<string, any> | undefined;
13999
+ addParams?: Record<string, string | number | boolean | null> | undefined;
13888
14000
  dropParams?: string[] | undefined;
13889
14001
  modelDisplayLabel?: string | undefined;
13890
14002
  customParams?: {
@@ -13925,7 +14037,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13925
14037
  }[] | undefined;
13926
14038
  } | undefined;
13927
14039
  directEndpoint?: boolean | undefined;
13928
- titleMessageRole?: string | undefined;
14040
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
13929
14041
  }[] | undefined;
13930
14042
  bedrock?: {
13931
14043
  baseURL?: string | undefined;
@@ -13968,9 +14080,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13968
14080
  deploymentName?: string | undefined;
13969
14081
  assistants?: boolean | undefined;
13970
14082
  serverless?: boolean | undefined;
13971
- addParams?: Record<string, any> | undefined;
14083
+ addParams?: Record<string, string | number | boolean | null> | undefined;
13972
14084
  dropParams?: string[] | undefined;
13973
- additionalHeaders?: Record<string, any> | undefined;
14085
+ additionalHeaders?: Record<string, string> | undefined;
13974
14086
  })[];
13975
14087
  assistants?: boolean | undefined;
13976
14088
  } & {
@@ -14029,7 +14141,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14029
14141
  version?: string | number | undefined;
14030
14142
  apiKey?: string | undefined;
14031
14143
  baseURL?: string | undefined;
14032
- headers?: Record<string, any> | undefined;
14144
+ headers?: Record<string, string> | undefined;
14033
14145
  streamRate?: number | undefined;
14034
14146
  titlePrompt?: string | undefined;
14035
14147
  titleModel?: string | undefined;
@@ -14059,7 +14171,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14059
14171
  version?: string | number | undefined;
14060
14172
  apiKey?: string | undefined;
14061
14173
  baseURL?: string | undefined;
14062
- headers?: Record<string, any> | undefined;
14174
+ headers?: Record<string, string> | undefined;
14063
14175
  streamRate?: number | undefined;
14064
14176
  titlePrompt?: string | undefined;
14065
14177
  titleModel?: string | undefined;
@@ -14107,7 +14219,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14107
14219
  iconURL?: string | undefined;
14108
14220
  apiKey?: string | undefined;
14109
14221
  baseURL?: string | undefined;
14110
- headers?: Record<string, any> | undefined;
14222
+ headers?: Record<string, string> | undefined;
14111
14223
  name?: string | undefined;
14112
14224
  streamRate?: number | undefined;
14113
14225
  titlePrompt?: string | undefined;
@@ -14125,7 +14237,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14125
14237
  fetch?: boolean | undefined;
14126
14238
  userIdQuery?: boolean | undefined;
14127
14239
  } | undefined;
14128
- addParams?: Record<string, any> | undefined;
14240
+ addParams?: Record<string, string | number | boolean | null> | undefined;
14129
14241
  dropParams?: string[] | undefined;
14130
14242
  modelDisplayLabel?: string | undefined;
14131
14243
  customParams?: {
@@ -14166,7 +14278,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14166
14278
  }[] | undefined;
14167
14279
  } | undefined;
14168
14280
  directEndpoint?: boolean | undefined;
14169
- titleMessageRole?: string | undefined;
14281
+ titleMessageRole?: "user" | "system" | "assistant" | undefined;
14170
14282
  }[] | undefined;
14171
14283
  bedrock?: {
14172
14284
  baseURL?: string | undefined;