librechat-data-provider 0.8.403 → 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.
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/react-query/index.es.js +1 -1
- package/dist/react-query/index.es.js.map +1 -1
- package/dist/types/api-endpoints.d.ts +1 -0
- package/dist/types/config.d.ts +1724 -679
- package/dist/types/data-service.d.ts +3 -0
- package/dist/types/file-config.d.ts +18 -18
- package/dist/types/mcp.d.ts +36 -42
- package/dist/types/models.d.ts +6 -136
- package/dist/types/schemas.d.ts +295 -0
- package/package.json +2 -1
package/dist/types/config.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
import type { ZodError } from 'zod';
|
|
3
3
|
import type { TEndpointsConfig, TModelsConfig, TConfig } from './types';
|
|
4
4
|
import { EModelEndpoint } from './schemas';
|
|
5
|
+
import { ComponentTypes, SettingTypes, OptionTypes } from './generate';
|
|
5
6
|
import { TSpecsConfig } from './models';
|
|
6
7
|
import { FileSources } from './types/files';
|
|
7
8
|
export declare const defaultSocialLogins: string[];
|
|
@@ -56,11 +57,11 @@ export declare const azureBaseSchema: z.ZodObject<{
|
|
|
56
57
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
57
58
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
58
59
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
59
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
60
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
60
61
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
61
62
|
version: z.ZodOptional<z.ZodString>;
|
|
62
63
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
63
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
64
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
64
65
|
}, "strip", z.ZodTypeAny, {
|
|
65
66
|
apiKey: string;
|
|
66
67
|
version?: string | undefined;
|
|
@@ -69,9 +70,9 @@ export declare const azureBaseSchema: z.ZodObject<{
|
|
|
69
70
|
deploymentName?: string | undefined;
|
|
70
71
|
assistants?: boolean | undefined;
|
|
71
72
|
serverless?: boolean | undefined;
|
|
72
|
-
addParams?: Record<string,
|
|
73
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
73
74
|
dropParams?: string[] | undefined;
|
|
74
|
-
additionalHeaders?: Record<string,
|
|
75
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
75
76
|
}, {
|
|
76
77
|
apiKey: string;
|
|
77
78
|
version?: string | undefined;
|
|
@@ -80,9 +81,9 @@ export declare const azureBaseSchema: z.ZodObject<{
|
|
|
80
81
|
deploymentName?: string | undefined;
|
|
81
82
|
assistants?: boolean | undefined;
|
|
82
83
|
serverless?: boolean | undefined;
|
|
83
|
-
addParams?: Record<string,
|
|
84
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
84
85
|
dropParams?: string[] | undefined;
|
|
85
|
-
additionalHeaders?: Record<string,
|
|
86
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
86
87
|
}>;
|
|
87
88
|
export type TAzureBaseSchema = z.infer<typeof azureBaseSchema>;
|
|
88
89
|
export declare const azureGroupSchema: z.ZodIntersection<z.ZodObject<{
|
|
@@ -120,11 +121,11 @@ export declare const azureGroupSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
120
121
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
121
122
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
122
123
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
123
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
124
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
124
125
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
125
126
|
version: z.ZodOptional<z.ZodString>;
|
|
126
127
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
127
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
128
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
128
129
|
}, "strip", z.ZodTypeAny, {
|
|
129
130
|
apiKey: string;
|
|
130
131
|
version?: string | undefined;
|
|
@@ -133,9 +134,9 @@ export declare const azureGroupSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
133
134
|
deploymentName?: string | undefined;
|
|
134
135
|
assistants?: boolean | undefined;
|
|
135
136
|
serverless?: boolean | undefined;
|
|
136
|
-
addParams?: Record<string,
|
|
137
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
137
138
|
dropParams?: string[] | undefined;
|
|
138
|
-
additionalHeaders?: Record<string,
|
|
139
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
139
140
|
}, {
|
|
140
141
|
apiKey: string;
|
|
141
142
|
version?: string | undefined;
|
|
@@ -144,9 +145,9 @@ export declare const azureGroupSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
144
145
|
deploymentName?: string | undefined;
|
|
145
146
|
assistants?: boolean | undefined;
|
|
146
147
|
serverless?: boolean | undefined;
|
|
147
|
-
addParams?: Record<string,
|
|
148
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
148
149
|
dropParams?: string[] | undefined;
|
|
149
|
-
additionalHeaders?: Record<string,
|
|
150
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
150
151
|
}>>;
|
|
151
152
|
export declare const azureGroupConfigsSchema: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
152
153
|
group: z.ZodString;
|
|
@@ -183,11 +184,11 @@ export declare const azureGroupConfigsSchema: z.ZodArray<z.ZodIntersection<z.Zod
|
|
|
183
184
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
184
185
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
185
186
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
186
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
187
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
187
188
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
188
189
|
version: z.ZodOptional<z.ZodString>;
|
|
189
190
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
190
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
191
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
191
192
|
}, "strip", z.ZodTypeAny, {
|
|
192
193
|
apiKey: string;
|
|
193
194
|
version?: string | undefined;
|
|
@@ -196,9 +197,9 @@ export declare const azureGroupConfigsSchema: z.ZodArray<z.ZodIntersection<z.Zod
|
|
|
196
197
|
deploymentName?: string | undefined;
|
|
197
198
|
assistants?: boolean | undefined;
|
|
198
199
|
serverless?: boolean | undefined;
|
|
199
|
-
addParams?: Record<string,
|
|
200
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
200
201
|
dropParams?: string[] | undefined;
|
|
201
|
-
additionalHeaders?: Record<string,
|
|
202
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
202
203
|
}, {
|
|
203
204
|
apiKey: string;
|
|
204
205
|
version?: string | undefined;
|
|
@@ -207,9 +208,9 @@ export declare const azureGroupConfigsSchema: z.ZodArray<z.ZodIntersection<z.Zod
|
|
|
207
208
|
deploymentName?: string | undefined;
|
|
208
209
|
assistants?: boolean | undefined;
|
|
209
210
|
serverless?: boolean | undefined;
|
|
210
|
-
addParams?: Record<string,
|
|
211
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
211
212
|
dropParams?: string[] | undefined;
|
|
212
|
-
additionalHeaders?: Record<string,
|
|
213
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
213
214
|
}>>, "many">;
|
|
214
215
|
export type TAzureGroup = z.infer<typeof azureGroupSchema>;
|
|
215
216
|
export type TAzureGroups = z.infer<typeof azureGroupConfigsSchema>;
|
|
@@ -382,14 +383,14 @@ export declare const assistantEndpointSchema: z.ZodObject<{
|
|
|
382
383
|
fetch?: boolean | undefined;
|
|
383
384
|
userIdQuery?: boolean | undefined;
|
|
384
385
|
}>>;
|
|
385
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
386
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
386
387
|
}, "strip", z.ZodTypeAny, {
|
|
387
388
|
version: string | number;
|
|
388
389
|
retrievalModels: string[];
|
|
389
390
|
capabilities: Capabilities[];
|
|
390
391
|
apiKey?: string | undefined;
|
|
391
392
|
baseURL?: string | undefined;
|
|
392
|
-
headers?: Record<string,
|
|
393
|
+
headers?: Record<string, string> | undefined;
|
|
393
394
|
streamRate?: number | undefined;
|
|
394
395
|
titlePrompt?: string | undefined;
|
|
395
396
|
titleModel?: string | undefined;
|
|
@@ -416,7 +417,7 @@ export declare const assistantEndpointSchema: z.ZodObject<{
|
|
|
416
417
|
version?: string | number | undefined;
|
|
417
418
|
apiKey?: string | undefined;
|
|
418
419
|
baseURL?: string | undefined;
|
|
419
|
-
headers?: Record<string,
|
|
420
|
+
headers?: Record<string, string> | undefined;
|
|
420
421
|
streamRate?: number | undefined;
|
|
421
422
|
titlePrompt?: string | undefined;
|
|
422
423
|
titleModel?: string | undefined;
|
|
@@ -444,7 +445,7 @@ export declare const assistantEndpointSchema: z.ZodObject<{
|
|
|
444
445
|
}>;
|
|
445
446
|
export type TAssistantEndpoint = z.infer<typeof assistantEndpointSchema>;
|
|
446
447
|
export declare const defaultAgentCapabilities: AgentCapabilities[];
|
|
447
|
-
export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<{
|
|
448
|
+
export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
448
449
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
449
450
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
450
451
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -455,7 +456,7 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<{
|
|
|
455
456
|
titlePromptTemplate: z.ZodOptional<z.ZodString>;
|
|
456
457
|
/** Maximum characters allowed in a single tool result before truncation. */
|
|
457
458
|
maxToolResultChars: z.ZodOptional<z.ZodNumber>;
|
|
458
|
-
} & {
|
|
459
|
+
}, "baseURL"> & {
|
|
459
460
|
recursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
460
461
|
disableBuilder: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
461
462
|
maxRecursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -470,7 +471,6 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<{
|
|
|
470
471
|
maxCitations: number;
|
|
471
472
|
maxCitationsPerFile: number;
|
|
472
473
|
minRelevanceScore: number;
|
|
473
|
-
baseURL?: string | undefined;
|
|
474
474
|
streamRate?: number | undefined;
|
|
475
475
|
titlePrompt?: string | undefined;
|
|
476
476
|
titleModel?: string | undefined;
|
|
@@ -483,7 +483,6 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<{
|
|
|
483
483
|
maxRecursionLimit?: number | undefined;
|
|
484
484
|
allowedProviders?: string[] | undefined;
|
|
485
485
|
}, {
|
|
486
|
-
baseURL?: string | undefined;
|
|
487
486
|
streamRate?: number | undefined;
|
|
488
487
|
titlePrompt?: string | undefined;
|
|
489
488
|
titleModel?: string | undefined;
|
|
@@ -502,6 +501,114 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<{
|
|
|
502
501
|
allowedProviders?: string[] | undefined;
|
|
503
502
|
}>>;
|
|
504
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
|
+
}>;
|
|
505
612
|
export declare const endpointSchema: z.ZodObject<{
|
|
506
613
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
507
614
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -543,26 +650,196 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
543
650
|
fetch?: boolean | undefined;
|
|
544
651
|
userIdQuery?: boolean | undefined;
|
|
545
652
|
}>;
|
|
546
|
-
summarize: z.ZodOptional<z.ZodBoolean>;
|
|
547
|
-
summaryModel: z.ZodOptional<z.ZodString>;
|
|
548
653
|
iconURL: z.ZodOptional<z.ZodString>;
|
|
549
654
|
modelDisplayLabel: z.ZodOptional<z.ZodString>;
|
|
550
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
551
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
655
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
656
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
552
657
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
553
658
|
customParams: z.ZodOptional<z.ZodObject<{
|
|
554
659
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
555
|
-
paramDefinitions: z.ZodOptional<z.ZodArray<z.
|
|
660
|
+
paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
661
|
+
key: z.ZodString;
|
|
662
|
+
description: z.ZodOptional<z.ZodString>;
|
|
663
|
+
type: z.ZodOptional<z.ZodNativeEnum<typeof SettingTypes>>;
|
|
664
|
+
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
665
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
666
|
+
showDefault: z.ZodOptional<z.ZodBoolean>;
|
|
667
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
668
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
669
|
+
min: z.ZodNumber;
|
|
670
|
+
max: z.ZodNumber;
|
|
671
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
672
|
+
}, "strip", z.ZodTypeAny, {
|
|
673
|
+
min: number;
|
|
674
|
+
max: number;
|
|
675
|
+
step?: number | undefined;
|
|
676
|
+
}, {
|
|
677
|
+
min: number;
|
|
678
|
+
max: number;
|
|
679
|
+
step?: number | undefined;
|
|
680
|
+
}>>;
|
|
681
|
+
enumMappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString]>>>;
|
|
682
|
+
component: z.ZodOptional<z.ZodNativeEnum<typeof ComponentTypes>>;
|
|
683
|
+
optionType: z.ZodOptional<z.ZodNativeEnum<typeof OptionTypes>>;
|
|
684
|
+
columnSpan: z.ZodOptional<z.ZodNumber>;
|
|
685
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
686
|
+
label: z.ZodOptional<z.ZodString>;
|
|
687
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
688
|
+
labelCode: z.ZodOptional<z.ZodBoolean>;
|
|
689
|
+
placeholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
690
|
+
descriptionCode: z.ZodOptional<z.ZodBoolean>;
|
|
691
|
+
minText: z.ZodOptional<z.ZodNumber>;
|
|
692
|
+
maxText: z.ZodOptional<z.ZodNumber>;
|
|
693
|
+
minTags: z.ZodOptional<z.ZodNumber>;
|
|
694
|
+
maxTags: z.ZodOptional<z.ZodNumber>;
|
|
695
|
+
includeInput: z.ZodOptional<z.ZodBoolean>;
|
|
696
|
+
descriptionSide: z.ZodOptional<z.ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
697
|
+
searchPlaceholder: z.ZodOptional<z.ZodString>;
|
|
698
|
+
selectPlaceholder: z.ZodOptional<z.ZodString>;
|
|
699
|
+
searchPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
700
|
+
selectPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
701
|
+
}, "strip", z.ZodTypeAny, {
|
|
702
|
+
key: string;
|
|
703
|
+
default?: string | number | boolean | string[] | undefined;
|
|
704
|
+
options?: string[] | undefined;
|
|
705
|
+
type?: SettingTypes | undefined;
|
|
706
|
+
description?: string | undefined;
|
|
707
|
+
placeholder?: string | undefined;
|
|
708
|
+
label?: string | undefined;
|
|
709
|
+
showLabel?: boolean | undefined;
|
|
710
|
+
showDefault?: boolean | undefined;
|
|
711
|
+
range?: {
|
|
712
|
+
min: number;
|
|
713
|
+
max: number;
|
|
714
|
+
step?: number | undefined;
|
|
715
|
+
} | undefined;
|
|
716
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
717
|
+
component?: ComponentTypes | undefined;
|
|
718
|
+
optionType?: OptionTypes | undefined;
|
|
719
|
+
columnSpan?: number | undefined;
|
|
720
|
+
columns?: number | undefined;
|
|
721
|
+
labelCode?: boolean | undefined;
|
|
722
|
+
placeholderCode?: boolean | undefined;
|
|
723
|
+
descriptionCode?: boolean | undefined;
|
|
724
|
+
minText?: number | undefined;
|
|
725
|
+
maxText?: number | undefined;
|
|
726
|
+
minTags?: number | undefined;
|
|
727
|
+
maxTags?: number | undefined;
|
|
728
|
+
includeInput?: boolean | undefined;
|
|
729
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
730
|
+
searchPlaceholder?: string | undefined;
|
|
731
|
+
selectPlaceholder?: string | undefined;
|
|
732
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
733
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
734
|
+
}, {
|
|
735
|
+
key: string;
|
|
736
|
+
default?: string | number | boolean | string[] | undefined;
|
|
737
|
+
options?: string[] | undefined;
|
|
738
|
+
type?: SettingTypes | undefined;
|
|
739
|
+
description?: string | undefined;
|
|
740
|
+
placeholder?: string | undefined;
|
|
741
|
+
label?: string | undefined;
|
|
742
|
+
showLabel?: boolean | undefined;
|
|
743
|
+
showDefault?: boolean | undefined;
|
|
744
|
+
range?: {
|
|
745
|
+
min: number;
|
|
746
|
+
max: number;
|
|
747
|
+
step?: number | undefined;
|
|
748
|
+
} | undefined;
|
|
749
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
750
|
+
component?: ComponentTypes | undefined;
|
|
751
|
+
optionType?: OptionTypes | undefined;
|
|
752
|
+
columnSpan?: number | undefined;
|
|
753
|
+
columns?: number | undefined;
|
|
754
|
+
labelCode?: boolean | undefined;
|
|
755
|
+
placeholderCode?: boolean | undefined;
|
|
756
|
+
descriptionCode?: boolean | undefined;
|
|
757
|
+
minText?: number | undefined;
|
|
758
|
+
maxText?: number | undefined;
|
|
759
|
+
minTags?: number | undefined;
|
|
760
|
+
maxTags?: number | undefined;
|
|
761
|
+
includeInput?: boolean | undefined;
|
|
762
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
763
|
+
searchPlaceholder?: string | undefined;
|
|
764
|
+
selectPlaceholder?: string | undefined;
|
|
765
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
766
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
767
|
+
}>, "many">>;
|
|
556
768
|
}, "strict", z.ZodTypeAny, {
|
|
557
769
|
defaultParamsEndpoint: string;
|
|
558
|
-
paramDefinitions?:
|
|
770
|
+
paramDefinitions?: {
|
|
771
|
+
key: string;
|
|
772
|
+
default?: string | number | boolean | string[] | undefined;
|
|
773
|
+
options?: string[] | undefined;
|
|
774
|
+
type?: SettingTypes | undefined;
|
|
775
|
+
description?: string | undefined;
|
|
776
|
+
placeholder?: string | undefined;
|
|
777
|
+
label?: string | undefined;
|
|
778
|
+
showLabel?: boolean | undefined;
|
|
779
|
+
showDefault?: boolean | undefined;
|
|
780
|
+
range?: {
|
|
781
|
+
min: number;
|
|
782
|
+
max: number;
|
|
783
|
+
step?: number | undefined;
|
|
784
|
+
} | undefined;
|
|
785
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
786
|
+
component?: ComponentTypes | undefined;
|
|
787
|
+
optionType?: OptionTypes | undefined;
|
|
788
|
+
columnSpan?: number | undefined;
|
|
789
|
+
columns?: number | undefined;
|
|
790
|
+
labelCode?: boolean | undefined;
|
|
791
|
+
placeholderCode?: boolean | undefined;
|
|
792
|
+
descriptionCode?: boolean | undefined;
|
|
793
|
+
minText?: number | undefined;
|
|
794
|
+
maxText?: number | undefined;
|
|
795
|
+
minTags?: number | undefined;
|
|
796
|
+
maxTags?: number | undefined;
|
|
797
|
+
includeInput?: boolean | undefined;
|
|
798
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
799
|
+
searchPlaceholder?: string | undefined;
|
|
800
|
+
selectPlaceholder?: string | undefined;
|
|
801
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
802
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
803
|
+
}[] | undefined;
|
|
559
804
|
}, {
|
|
560
805
|
defaultParamsEndpoint?: string | undefined;
|
|
561
|
-
paramDefinitions?:
|
|
806
|
+
paramDefinitions?: {
|
|
807
|
+
key: string;
|
|
808
|
+
default?: string | number | boolean | string[] | undefined;
|
|
809
|
+
options?: string[] | undefined;
|
|
810
|
+
type?: SettingTypes | undefined;
|
|
811
|
+
description?: string | undefined;
|
|
812
|
+
placeholder?: string | undefined;
|
|
813
|
+
label?: string | undefined;
|
|
814
|
+
showLabel?: boolean | undefined;
|
|
815
|
+
showDefault?: boolean | undefined;
|
|
816
|
+
range?: {
|
|
817
|
+
min: number;
|
|
818
|
+
max: number;
|
|
819
|
+
step?: number | undefined;
|
|
820
|
+
} | undefined;
|
|
821
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
822
|
+
component?: ComponentTypes | undefined;
|
|
823
|
+
optionType?: OptionTypes | undefined;
|
|
824
|
+
columnSpan?: number | undefined;
|
|
825
|
+
columns?: number | undefined;
|
|
826
|
+
labelCode?: boolean | undefined;
|
|
827
|
+
placeholderCode?: boolean | undefined;
|
|
828
|
+
descriptionCode?: boolean | undefined;
|
|
829
|
+
minText?: number | undefined;
|
|
830
|
+
maxText?: number | undefined;
|
|
831
|
+
minTags?: number | undefined;
|
|
832
|
+
maxTags?: number | undefined;
|
|
833
|
+
includeInput?: boolean | undefined;
|
|
834
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
835
|
+
searchPlaceholder?: string | undefined;
|
|
836
|
+
selectPlaceholder?: string | undefined;
|
|
837
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
838
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
839
|
+
}[] | undefined;
|
|
562
840
|
}>>;
|
|
563
|
-
customOrder: z.ZodOptional<z.ZodNumber>;
|
|
564
841
|
directEndpoint: z.ZodOptional<z.ZodBoolean>;
|
|
565
|
-
titleMessageRole: z.ZodOptional<z.
|
|
842
|
+
titleMessageRole: z.ZodOptional<z.ZodEnum<["system", "user", "assistant"]>>;
|
|
566
843
|
}, "strip", z.ZodTypeAny, {
|
|
567
844
|
apiKey: string;
|
|
568
845
|
baseURL: string;
|
|
@@ -576,7 +853,7 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
576
853
|
userIdQuery?: boolean | undefined;
|
|
577
854
|
};
|
|
578
855
|
iconURL?: string | undefined;
|
|
579
|
-
headers?: Record<string,
|
|
856
|
+
headers?: Record<string, string> | undefined;
|
|
580
857
|
streamRate?: number | undefined;
|
|
581
858
|
titlePrompt?: string | undefined;
|
|
582
859
|
titleModel?: string | undefined;
|
|
@@ -585,18 +862,48 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
585
862
|
titleEndpoint?: string | undefined;
|
|
586
863
|
titlePromptTemplate?: string | undefined;
|
|
587
864
|
maxToolResultChars?: number | undefined;
|
|
588
|
-
addParams?: Record<string,
|
|
865
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
589
866
|
dropParams?: string[] | undefined;
|
|
590
|
-
summarize?: boolean | undefined;
|
|
591
|
-
summaryModel?: string | undefined;
|
|
592
867
|
modelDisplayLabel?: string | undefined;
|
|
593
868
|
customParams?: {
|
|
594
869
|
defaultParamsEndpoint: string;
|
|
595
|
-
paramDefinitions?:
|
|
870
|
+
paramDefinitions?: {
|
|
871
|
+
key: string;
|
|
872
|
+
default?: string | number | boolean | string[] | undefined;
|
|
873
|
+
options?: string[] | undefined;
|
|
874
|
+
type?: SettingTypes | undefined;
|
|
875
|
+
description?: string | undefined;
|
|
876
|
+
placeholder?: string | undefined;
|
|
877
|
+
label?: string | undefined;
|
|
878
|
+
showLabel?: boolean | undefined;
|
|
879
|
+
showDefault?: boolean | undefined;
|
|
880
|
+
range?: {
|
|
881
|
+
min: number;
|
|
882
|
+
max: number;
|
|
883
|
+
step?: number | undefined;
|
|
884
|
+
} | undefined;
|
|
885
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
886
|
+
component?: ComponentTypes | undefined;
|
|
887
|
+
optionType?: OptionTypes | undefined;
|
|
888
|
+
columnSpan?: number | undefined;
|
|
889
|
+
columns?: number | undefined;
|
|
890
|
+
labelCode?: boolean | undefined;
|
|
891
|
+
placeholderCode?: boolean | undefined;
|
|
892
|
+
descriptionCode?: boolean | undefined;
|
|
893
|
+
minText?: number | undefined;
|
|
894
|
+
maxText?: number | undefined;
|
|
895
|
+
minTags?: number | undefined;
|
|
896
|
+
maxTags?: number | undefined;
|
|
897
|
+
includeInput?: boolean | undefined;
|
|
898
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
899
|
+
searchPlaceholder?: string | undefined;
|
|
900
|
+
selectPlaceholder?: string | undefined;
|
|
901
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
902
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
903
|
+
}[] | undefined;
|
|
596
904
|
} | undefined;
|
|
597
|
-
customOrder?: number | undefined;
|
|
598
905
|
directEndpoint?: boolean | undefined;
|
|
599
|
-
titleMessageRole?:
|
|
906
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
600
907
|
}, {
|
|
601
908
|
apiKey: string;
|
|
602
909
|
baseURL: string;
|
|
@@ -610,7 +917,7 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
610
917
|
userIdQuery?: boolean | undefined;
|
|
611
918
|
};
|
|
612
919
|
iconURL?: string | undefined;
|
|
613
|
-
headers?: Record<string,
|
|
920
|
+
headers?: Record<string, string> | undefined;
|
|
614
921
|
streamRate?: number | undefined;
|
|
615
922
|
titlePrompt?: string | undefined;
|
|
616
923
|
titleModel?: string | undefined;
|
|
@@ -619,18 +926,48 @@ export declare const endpointSchema: z.ZodObject<{
|
|
|
619
926
|
titleEndpoint?: string | undefined;
|
|
620
927
|
titlePromptTemplate?: string | undefined;
|
|
621
928
|
maxToolResultChars?: number | undefined;
|
|
622
|
-
addParams?: Record<string,
|
|
929
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
623
930
|
dropParams?: string[] | undefined;
|
|
624
|
-
summarize?: boolean | undefined;
|
|
625
|
-
summaryModel?: string | undefined;
|
|
626
931
|
modelDisplayLabel?: string | undefined;
|
|
627
932
|
customParams?: {
|
|
628
933
|
defaultParamsEndpoint?: string | undefined;
|
|
629
|
-
paramDefinitions?:
|
|
934
|
+
paramDefinitions?: {
|
|
935
|
+
key: string;
|
|
936
|
+
default?: string | number | boolean | string[] | undefined;
|
|
937
|
+
options?: string[] | undefined;
|
|
938
|
+
type?: SettingTypes | undefined;
|
|
939
|
+
description?: string | undefined;
|
|
940
|
+
placeholder?: string | undefined;
|
|
941
|
+
label?: string | undefined;
|
|
942
|
+
showLabel?: boolean | undefined;
|
|
943
|
+
showDefault?: boolean | undefined;
|
|
944
|
+
range?: {
|
|
945
|
+
min: number;
|
|
946
|
+
max: number;
|
|
947
|
+
step?: number | undefined;
|
|
948
|
+
} | undefined;
|
|
949
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
950
|
+
component?: ComponentTypes | undefined;
|
|
951
|
+
optionType?: OptionTypes | undefined;
|
|
952
|
+
columnSpan?: number | undefined;
|
|
953
|
+
columns?: number | undefined;
|
|
954
|
+
labelCode?: boolean | undefined;
|
|
955
|
+
placeholderCode?: boolean | undefined;
|
|
956
|
+
descriptionCode?: boolean | undefined;
|
|
957
|
+
minText?: number | undefined;
|
|
958
|
+
maxText?: number | undefined;
|
|
959
|
+
minTags?: number | undefined;
|
|
960
|
+
maxTags?: number | undefined;
|
|
961
|
+
includeInput?: boolean | undefined;
|
|
962
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
963
|
+
searchPlaceholder?: string | undefined;
|
|
964
|
+
selectPlaceholder?: string | undefined;
|
|
965
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
966
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
967
|
+
}[] | undefined;
|
|
630
968
|
} | undefined;
|
|
631
|
-
customOrder?: number | undefined;
|
|
632
969
|
directEndpoint?: boolean | undefined;
|
|
633
|
-
titleMessageRole?:
|
|
970
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
634
971
|
}>;
|
|
635
972
|
export type TEndpoint = z.infer<typeof endpointSchema>;
|
|
636
973
|
export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
@@ -669,11 +1006,11 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
669
1006
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
670
1007
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
671
1008
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
672
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
1009
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
673
1010
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
674
1011
|
version: z.ZodOptional<z.ZodString>;
|
|
675
1012
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
676
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
1013
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
677
1014
|
}, "strip", z.ZodTypeAny, {
|
|
678
1015
|
apiKey: string;
|
|
679
1016
|
version?: string | undefined;
|
|
@@ -682,9 +1019,9 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
682
1019
|
deploymentName?: string | undefined;
|
|
683
1020
|
assistants?: boolean | undefined;
|
|
684
1021
|
serverless?: boolean | undefined;
|
|
685
|
-
addParams?: Record<string,
|
|
1022
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
686
1023
|
dropParams?: string[] | undefined;
|
|
687
|
-
additionalHeaders?: Record<string,
|
|
1024
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
688
1025
|
}, {
|
|
689
1026
|
apiKey: string;
|
|
690
1027
|
version?: string | undefined;
|
|
@@ -693,11 +1030,10 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
693
1030
|
deploymentName?: string | undefined;
|
|
694
1031
|
assistants?: boolean | undefined;
|
|
695
1032
|
serverless?: boolean | undefined;
|
|
696
|
-
addParams?: Record<string,
|
|
1033
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
697
1034
|
dropParams?: string[] | undefined;
|
|
698
|
-
additionalHeaders?: Record<string,
|
|
1035
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
699
1036
|
}>>, "many">;
|
|
700
|
-
plugins: z.ZodOptional<z.ZodBoolean>;
|
|
701
1037
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
702
1038
|
}, "strip", z.ZodTypeAny, {
|
|
703
1039
|
groups: ({
|
|
@@ -715,12 +1051,11 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
715
1051
|
deploymentName?: string | undefined;
|
|
716
1052
|
assistants?: boolean | undefined;
|
|
717
1053
|
serverless?: boolean | undefined;
|
|
718
|
-
addParams?: Record<string,
|
|
1054
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
719
1055
|
dropParams?: string[] | undefined;
|
|
720
|
-
additionalHeaders?: Record<string,
|
|
1056
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
721
1057
|
})[];
|
|
722
1058
|
assistants?: boolean | undefined;
|
|
723
|
-
plugins?: boolean | undefined;
|
|
724
1059
|
}, {
|
|
725
1060
|
groups: ({
|
|
726
1061
|
group: string;
|
|
@@ -737,12 +1072,11 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
737
1072
|
deploymentName?: string | undefined;
|
|
738
1073
|
assistants?: boolean | undefined;
|
|
739
1074
|
serverless?: boolean | undefined;
|
|
740
|
-
addParams?: Record<string,
|
|
1075
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
741
1076
|
dropParams?: string[] | undefined;
|
|
742
|
-
additionalHeaders?: Record<string,
|
|
1077
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
743
1078
|
})[];
|
|
744
1079
|
assistants?: boolean | undefined;
|
|
745
|
-
plugins?: boolean | undefined;
|
|
746
1080
|
}>, z.ZodObject<{
|
|
747
1081
|
streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
748
1082
|
titlePrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -750,9 +1084,6 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
750
1084
|
titleConvo: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
751
1085
|
titleMethod: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"completion">, z.ZodLiteral<"functions">, z.ZodLiteral<"structured">]>>>;
|
|
752
1086
|
titlePromptTemplate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
753
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
754
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
755
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
756
1087
|
}, "strip", z.ZodTypeAny, {
|
|
757
1088
|
streamRate?: number | undefined;
|
|
758
1089
|
titlePrompt?: string | undefined;
|
|
@@ -760,9 +1091,6 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
760
1091
|
titleConvo?: boolean | undefined;
|
|
761
1092
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
762
1093
|
titlePromptTemplate?: string | undefined;
|
|
763
|
-
summarize?: boolean | undefined;
|
|
764
|
-
summaryModel?: string | undefined;
|
|
765
|
-
customOrder?: number | undefined;
|
|
766
1094
|
}, {
|
|
767
1095
|
streamRate?: number | undefined;
|
|
768
1096
|
titlePrompt?: string | undefined;
|
|
@@ -770,9 +1098,6 @@ export declare const azureEndpointSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
770
1098
|
titleConvo?: boolean | undefined;
|
|
771
1099
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
772
1100
|
titlePromptTemplate?: string | undefined;
|
|
773
|
-
summarize?: boolean | undefined;
|
|
774
|
-
summaryModel?: string | undefined;
|
|
775
|
-
customOrder?: number | undefined;
|
|
776
1101
|
}>>;
|
|
777
1102
|
export type TAzureConfig = Omit<z.infer<typeof azureEndpointSchema>, 'groups'> & TAzureConfigValidationResult;
|
|
778
1103
|
/**
|
|
@@ -1884,17 +2209,17 @@ export declare const memorySchema: z.ZodObject<{
|
|
|
1884
2209
|
provider: z.ZodString;
|
|
1885
2210
|
model: z.ZodString;
|
|
1886
2211
|
instructions: z.ZodOptional<z.ZodString>;
|
|
1887
|
-
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
2212
|
+
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
1888
2213
|
}, "strip", z.ZodTypeAny, {
|
|
1889
2214
|
model: string;
|
|
1890
2215
|
provider: string;
|
|
1891
2216
|
instructions?: string | undefined;
|
|
1892
|
-
model_parameters?: Record<string,
|
|
2217
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
1893
2218
|
}, {
|
|
1894
2219
|
model: string;
|
|
1895
2220
|
provider: string;
|
|
1896
2221
|
instructions?: string | undefined;
|
|
1897
|
-
model_parameters?: Record<string,
|
|
2222
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
1898
2223
|
}>]>>;
|
|
1899
2224
|
}, "strip", z.ZodTypeAny, {
|
|
1900
2225
|
charLimit: number;
|
|
@@ -1909,7 +2234,7 @@ export declare const memorySchema: z.ZodObject<{
|
|
|
1909
2234
|
model: string;
|
|
1910
2235
|
provider: string;
|
|
1911
2236
|
instructions?: string | undefined;
|
|
1912
|
-
model_parameters?: Record<string,
|
|
2237
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
1913
2238
|
} | undefined;
|
|
1914
2239
|
}, {
|
|
1915
2240
|
disabled?: boolean | undefined;
|
|
@@ -1924,7 +2249,7 @@ export declare const memorySchema: z.ZodObject<{
|
|
|
1924
2249
|
model: string;
|
|
1925
2250
|
provider: string;
|
|
1926
2251
|
instructions?: string | undefined;
|
|
1927
|
-
model_parameters?: Record<string,
|
|
2252
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
1928
2253
|
} | undefined;
|
|
1929
2254
|
}>;
|
|
1930
2255
|
export type TMemoryConfig = DeepPartial<z.infer<typeof memorySchema>>;
|
|
@@ -2077,31 +2402,201 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2077
2402
|
fetch?: boolean | undefined;
|
|
2078
2403
|
userIdQuery?: boolean | undefined;
|
|
2079
2404
|
}>>;
|
|
2080
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2081
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2082
2405
|
iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2083
2406
|
modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2084
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
2085
|
-
addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
2407
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
2408
|
+
addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>>;
|
|
2086
2409
|
dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2087
2410
|
customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
2088
2411
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
2089
|
-
paramDefinitions: z.ZodOptional<z.ZodArray<z.
|
|
2412
|
+
paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2413
|
+
key: z.ZodString;
|
|
2414
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2415
|
+
type: z.ZodOptional<z.ZodNativeEnum<typeof SettingTypes>>;
|
|
2416
|
+
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
2417
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
2418
|
+
showDefault: z.ZodOptional<z.ZodBoolean>;
|
|
2419
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2420
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
2421
|
+
min: z.ZodNumber;
|
|
2422
|
+
max: z.ZodNumber;
|
|
2423
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
2424
|
+
}, "strip", z.ZodTypeAny, {
|
|
2425
|
+
min: number;
|
|
2426
|
+
max: number;
|
|
2427
|
+
step?: number | undefined;
|
|
2428
|
+
}, {
|
|
2429
|
+
min: number;
|
|
2430
|
+
max: number;
|
|
2431
|
+
step?: number | undefined;
|
|
2432
|
+
}>>;
|
|
2433
|
+
enumMappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString]>>>;
|
|
2434
|
+
component: z.ZodOptional<z.ZodNativeEnum<typeof ComponentTypes>>;
|
|
2435
|
+
optionType: z.ZodOptional<z.ZodNativeEnum<typeof OptionTypes>>;
|
|
2436
|
+
columnSpan: z.ZodOptional<z.ZodNumber>;
|
|
2437
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
2438
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2439
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
2440
|
+
labelCode: z.ZodOptional<z.ZodBoolean>;
|
|
2441
|
+
placeholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
2442
|
+
descriptionCode: z.ZodOptional<z.ZodBoolean>;
|
|
2443
|
+
minText: z.ZodOptional<z.ZodNumber>;
|
|
2444
|
+
maxText: z.ZodOptional<z.ZodNumber>;
|
|
2445
|
+
minTags: z.ZodOptional<z.ZodNumber>;
|
|
2446
|
+
maxTags: z.ZodOptional<z.ZodNumber>;
|
|
2447
|
+
includeInput: z.ZodOptional<z.ZodBoolean>;
|
|
2448
|
+
descriptionSide: z.ZodOptional<z.ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
2449
|
+
searchPlaceholder: z.ZodOptional<z.ZodString>;
|
|
2450
|
+
selectPlaceholder: z.ZodOptional<z.ZodString>;
|
|
2451
|
+
searchPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
2452
|
+
selectPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
2453
|
+
}, "strip", z.ZodTypeAny, {
|
|
2454
|
+
key: string;
|
|
2455
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2456
|
+
options?: string[] | undefined;
|
|
2457
|
+
type?: SettingTypes | undefined;
|
|
2458
|
+
description?: string | undefined;
|
|
2459
|
+
placeholder?: string | undefined;
|
|
2460
|
+
label?: string | undefined;
|
|
2461
|
+
showLabel?: boolean | undefined;
|
|
2462
|
+
showDefault?: boolean | undefined;
|
|
2463
|
+
range?: {
|
|
2464
|
+
min: number;
|
|
2465
|
+
max: number;
|
|
2466
|
+
step?: number | undefined;
|
|
2467
|
+
} | undefined;
|
|
2468
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2469
|
+
component?: ComponentTypes | undefined;
|
|
2470
|
+
optionType?: OptionTypes | undefined;
|
|
2471
|
+
columnSpan?: number | undefined;
|
|
2472
|
+
columns?: number | undefined;
|
|
2473
|
+
labelCode?: boolean | undefined;
|
|
2474
|
+
placeholderCode?: boolean | undefined;
|
|
2475
|
+
descriptionCode?: boolean | undefined;
|
|
2476
|
+
minText?: number | undefined;
|
|
2477
|
+
maxText?: number | undefined;
|
|
2478
|
+
minTags?: number | undefined;
|
|
2479
|
+
maxTags?: number | undefined;
|
|
2480
|
+
includeInput?: boolean | undefined;
|
|
2481
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2482
|
+
searchPlaceholder?: string | undefined;
|
|
2483
|
+
selectPlaceholder?: string | undefined;
|
|
2484
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2485
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2486
|
+
}, {
|
|
2487
|
+
key: string;
|
|
2488
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2489
|
+
options?: string[] | undefined;
|
|
2490
|
+
type?: SettingTypes | undefined;
|
|
2491
|
+
description?: string | undefined;
|
|
2492
|
+
placeholder?: string | undefined;
|
|
2493
|
+
label?: string | undefined;
|
|
2494
|
+
showLabel?: boolean | undefined;
|
|
2495
|
+
showDefault?: boolean | undefined;
|
|
2496
|
+
range?: {
|
|
2497
|
+
min: number;
|
|
2498
|
+
max: number;
|
|
2499
|
+
step?: number | undefined;
|
|
2500
|
+
} | undefined;
|
|
2501
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2502
|
+
component?: ComponentTypes | undefined;
|
|
2503
|
+
optionType?: OptionTypes | undefined;
|
|
2504
|
+
columnSpan?: number | undefined;
|
|
2505
|
+
columns?: number | undefined;
|
|
2506
|
+
labelCode?: boolean | undefined;
|
|
2507
|
+
placeholderCode?: boolean | undefined;
|
|
2508
|
+
descriptionCode?: boolean | undefined;
|
|
2509
|
+
minText?: number | undefined;
|
|
2510
|
+
maxText?: number | undefined;
|
|
2511
|
+
minTags?: number | undefined;
|
|
2512
|
+
maxTags?: number | undefined;
|
|
2513
|
+
includeInput?: boolean | undefined;
|
|
2514
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2515
|
+
searchPlaceholder?: string | undefined;
|
|
2516
|
+
selectPlaceholder?: string | undefined;
|
|
2517
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2518
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2519
|
+
}>, "many">>;
|
|
2090
2520
|
}, "strict", z.ZodTypeAny, {
|
|
2091
2521
|
defaultParamsEndpoint: string;
|
|
2092
|
-
paramDefinitions?:
|
|
2522
|
+
paramDefinitions?: {
|
|
2523
|
+
key: string;
|
|
2524
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2525
|
+
options?: string[] | undefined;
|
|
2526
|
+
type?: SettingTypes | undefined;
|
|
2527
|
+
description?: string | undefined;
|
|
2528
|
+
placeholder?: string | undefined;
|
|
2529
|
+
label?: string | undefined;
|
|
2530
|
+
showLabel?: boolean | undefined;
|
|
2531
|
+
showDefault?: boolean | undefined;
|
|
2532
|
+
range?: {
|
|
2533
|
+
min: number;
|
|
2534
|
+
max: number;
|
|
2535
|
+
step?: number | undefined;
|
|
2536
|
+
} | undefined;
|
|
2537
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2538
|
+
component?: ComponentTypes | undefined;
|
|
2539
|
+
optionType?: OptionTypes | undefined;
|
|
2540
|
+
columnSpan?: number | undefined;
|
|
2541
|
+
columns?: number | undefined;
|
|
2542
|
+
labelCode?: boolean | undefined;
|
|
2543
|
+
placeholderCode?: boolean | undefined;
|
|
2544
|
+
descriptionCode?: boolean | undefined;
|
|
2545
|
+
minText?: number | undefined;
|
|
2546
|
+
maxText?: number | undefined;
|
|
2547
|
+
minTags?: number | undefined;
|
|
2548
|
+
maxTags?: number | undefined;
|
|
2549
|
+
includeInput?: boolean | undefined;
|
|
2550
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2551
|
+
searchPlaceholder?: string | undefined;
|
|
2552
|
+
selectPlaceholder?: string | undefined;
|
|
2553
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2554
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2555
|
+
}[] | undefined;
|
|
2093
2556
|
}, {
|
|
2094
2557
|
defaultParamsEndpoint?: string | undefined;
|
|
2095
|
-
paramDefinitions?:
|
|
2558
|
+
paramDefinitions?: {
|
|
2559
|
+
key: string;
|
|
2560
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2561
|
+
options?: string[] | undefined;
|
|
2562
|
+
type?: SettingTypes | undefined;
|
|
2563
|
+
description?: string | undefined;
|
|
2564
|
+
placeholder?: string | undefined;
|
|
2565
|
+
label?: string | undefined;
|
|
2566
|
+
showLabel?: boolean | undefined;
|
|
2567
|
+
showDefault?: boolean | undefined;
|
|
2568
|
+
range?: {
|
|
2569
|
+
min: number;
|
|
2570
|
+
max: number;
|
|
2571
|
+
step?: number | undefined;
|
|
2572
|
+
} | undefined;
|
|
2573
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2574
|
+
component?: ComponentTypes | undefined;
|
|
2575
|
+
optionType?: OptionTypes | undefined;
|
|
2576
|
+
columnSpan?: number | undefined;
|
|
2577
|
+
columns?: number | undefined;
|
|
2578
|
+
labelCode?: boolean | undefined;
|
|
2579
|
+
placeholderCode?: boolean | undefined;
|
|
2580
|
+
descriptionCode?: boolean | undefined;
|
|
2581
|
+
minText?: number | undefined;
|
|
2582
|
+
maxText?: number | undefined;
|
|
2583
|
+
minTags?: number | undefined;
|
|
2584
|
+
maxTags?: number | undefined;
|
|
2585
|
+
includeInput?: boolean | undefined;
|
|
2586
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2587
|
+
searchPlaceholder?: string | undefined;
|
|
2588
|
+
selectPlaceholder?: string | undefined;
|
|
2589
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2590
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2591
|
+
}[] | undefined;
|
|
2096
2592
|
}>>>;
|
|
2097
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2098
2593
|
directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2099
|
-
titleMessageRole: z.ZodOptional<z.ZodOptional<z.
|
|
2594
|
+
titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodEnum<["system", "user", "assistant"]>>>;
|
|
2100
2595
|
}, "strip", z.ZodTypeAny, {
|
|
2101
2596
|
iconURL?: string | undefined;
|
|
2102
2597
|
apiKey?: string | undefined;
|
|
2103
2598
|
baseURL?: string | undefined;
|
|
2104
|
-
headers?: Record<string,
|
|
2599
|
+
headers?: Record<string, string> | undefined;
|
|
2105
2600
|
name?: string | undefined;
|
|
2106
2601
|
streamRate?: number | undefined;
|
|
2107
2602
|
titlePrompt?: string | undefined;
|
|
@@ -2119,23 +2614,53 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2119
2614
|
fetch?: boolean | undefined;
|
|
2120
2615
|
userIdQuery?: boolean | undefined;
|
|
2121
2616
|
} | undefined;
|
|
2122
|
-
addParams?: Record<string,
|
|
2617
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
2123
2618
|
dropParams?: string[] | undefined;
|
|
2124
|
-
summarize?: boolean | undefined;
|
|
2125
|
-
summaryModel?: string | undefined;
|
|
2126
2619
|
modelDisplayLabel?: string | undefined;
|
|
2127
2620
|
customParams?: {
|
|
2128
2621
|
defaultParamsEndpoint: string;
|
|
2129
|
-
paramDefinitions?:
|
|
2622
|
+
paramDefinitions?: {
|
|
2623
|
+
key: string;
|
|
2624
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2625
|
+
options?: string[] | undefined;
|
|
2626
|
+
type?: SettingTypes | undefined;
|
|
2627
|
+
description?: string | undefined;
|
|
2628
|
+
placeholder?: string | undefined;
|
|
2629
|
+
label?: string | undefined;
|
|
2630
|
+
showLabel?: boolean | undefined;
|
|
2631
|
+
showDefault?: boolean | undefined;
|
|
2632
|
+
range?: {
|
|
2633
|
+
min: number;
|
|
2634
|
+
max: number;
|
|
2635
|
+
step?: number | undefined;
|
|
2636
|
+
} | undefined;
|
|
2637
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2638
|
+
component?: ComponentTypes | undefined;
|
|
2639
|
+
optionType?: OptionTypes | undefined;
|
|
2640
|
+
columnSpan?: number | undefined;
|
|
2641
|
+
columns?: number | undefined;
|
|
2642
|
+
labelCode?: boolean | undefined;
|
|
2643
|
+
placeholderCode?: boolean | undefined;
|
|
2644
|
+
descriptionCode?: boolean | undefined;
|
|
2645
|
+
minText?: number | undefined;
|
|
2646
|
+
maxText?: number | undefined;
|
|
2647
|
+
minTags?: number | undefined;
|
|
2648
|
+
maxTags?: number | undefined;
|
|
2649
|
+
includeInput?: boolean | undefined;
|
|
2650
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2651
|
+
searchPlaceholder?: string | undefined;
|
|
2652
|
+
selectPlaceholder?: string | undefined;
|
|
2653
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2654
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2655
|
+
}[] | undefined;
|
|
2130
2656
|
} | undefined;
|
|
2131
|
-
customOrder?: number | undefined;
|
|
2132
2657
|
directEndpoint?: boolean | undefined;
|
|
2133
|
-
titleMessageRole?:
|
|
2658
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
2134
2659
|
}, {
|
|
2135
2660
|
iconURL?: string | undefined;
|
|
2136
2661
|
apiKey?: string | undefined;
|
|
2137
2662
|
baseURL?: string | undefined;
|
|
2138
|
-
headers?: Record<string,
|
|
2663
|
+
headers?: Record<string, string> | undefined;
|
|
2139
2664
|
name?: string | undefined;
|
|
2140
2665
|
streamRate?: number | undefined;
|
|
2141
2666
|
titlePrompt?: string | undefined;
|
|
@@ -2153,18 +2678,48 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
|
2153
2678
|
fetch?: boolean | undefined;
|
|
2154
2679
|
userIdQuery?: boolean | undefined;
|
|
2155
2680
|
} | undefined;
|
|
2156
|
-
addParams?: Record<string,
|
|
2681
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
2157
2682
|
dropParams?: string[] | undefined;
|
|
2158
|
-
summarize?: boolean | undefined;
|
|
2159
|
-
summaryModel?: string | undefined;
|
|
2160
2683
|
modelDisplayLabel?: string | undefined;
|
|
2161
2684
|
customParams?: {
|
|
2162
2685
|
defaultParamsEndpoint?: string | undefined;
|
|
2163
|
-
paramDefinitions?:
|
|
2686
|
+
paramDefinitions?: {
|
|
2687
|
+
key: string;
|
|
2688
|
+
default?: string | number | boolean | string[] | undefined;
|
|
2689
|
+
options?: string[] | undefined;
|
|
2690
|
+
type?: SettingTypes | undefined;
|
|
2691
|
+
description?: string | undefined;
|
|
2692
|
+
placeholder?: string | undefined;
|
|
2693
|
+
label?: string | undefined;
|
|
2694
|
+
showLabel?: boolean | undefined;
|
|
2695
|
+
showDefault?: boolean | undefined;
|
|
2696
|
+
range?: {
|
|
2697
|
+
min: number;
|
|
2698
|
+
max: number;
|
|
2699
|
+
step?: number | undefined;
|
|
2700
|
+
} | undefined;
|
|
2701
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
2702
|
+
component?: ComponentTypes | undefined;
|
|
2703
|
+
optionType?: OptionTypes | undefined;
|
|
2704
|
+
columnSpan?: number | undefined;
|
|
2705
|
+
columns?: number | undefined;
|
|
2706
|
+
labelCode?: boolean | undefined;
|
|
2707
|
+
placeholderCode?: boolean | undefined;
|
|
2708
|
+
descriptionCode?: boolean | undefined;
|
|
2709
|
+
minText?: number | undefined;
|
|
2710
|
+
maxText?: number | undefined;
|
|
2711
|
+
minTags?: number | undefined;
|
|
2712
|
+
maxTags?: number | undefined;
|
|
2713
|
+
includeInput?: boolean | undefined;
|
|
2714
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
2715
|
+
searchPlaceholder?: string | undefined;
|
|
2716
|
+
selectPlaceholder?: string | undefined;
|
|
2717
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
2718
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
2719
|
+
}[] | undefined;
|
|
2164
2720
|
} | undefined;
|
|
2165
|
-
customOrder?: number | undefined;
|
|
2166
2721
|
directEndpoint?: boolean | undefined;
|
|
2167
|
-
titleMessageRole?:
|
|
2722
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
2168
2723
|
}>, "many">>;
|
|
2169
2724
|
export declare const configSchema: z.ZodObject<{
|
|
2170
2725
|
version: z.ZodString;
|
|
@@ -2397,17 +2952,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2397
2952
|
provider: z.ZodString;
|
|
2398
2953
|
model: z.ZodString;
|
|
2399
2954
|
instructions: z.ZodOptional<z.ZodString>;
|
|
2400
|
-
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
2955
|
+
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
2401
2956
|
}, "strip", z.ZodTypeAny, {
|
|
2402
2957
|
model: string;
|
|
2403
2958
|
provider: string;
|
|
2404
2959
|
instructions?: string | undefined;
|
|
2405
|
-
model_parameters?: Record<string,
|
|
2960
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2406
2961
|
}, {
|
|
2407
2962
|
model: string;
|
|
2408
2963
|
provider: string;
|
|
2409
2964
|
instructions?: string | undefined;
|
|
2410
|
-
model_parameters?: Record<string,
|
|
2965
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2411
2966
|
}>]>>;
|
|
2412
2967
|
}, "strip", z.ZodTypeAny, {
|
|
2413
2968
|
charLimit: number;
|
|
@@ -2422,7 +2977,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2422
2977
|
model: string;
|
|
2423
2978
|
provider: string;
|
|
2424
2979
|
instructions?: string | undefined;
|
|
2425
|
-
model_parameters?: Record<string,
|
|
2980
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2426
2981
|
} | undefined;
|
|
2427
2982
|
}, {
|
|
2428
2983
|
disabled?: boolean | undefined;
|
|
@@ -2437,7 +2992,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2437
2992
|
model: string;
|
|
2438
2993
|
provider: string;
|
|
2439
2994
|
instructions?: string | undefined;
|
|
2440
|
-
model_parameters?: Record<string,
|
|
2995
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2441
2996
|
} | undefined;
|
|
2442
2997
|
}>>;
|
|
2443
2998
|
summarization: z.ZodOptional<z.ZodObject<{
|
|
@@ -2608,16 +3163,16 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2608
3163
|
description: string;
|
|
2609
3164
|
}>>>;
|
|
2610
3165
|
} & {
|
|
2611
|
-
type: z.
|
|
3166
|
+
type: z.ZodDefault<z.ZodLiteral<"stdio">>;
|
|
2612
3167
|
command: z.ZodString;
|
|
2613
3168
|
args: z.ZodArray<z.ZodString, "many">;
|
|
2614
|
-
env: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>, Record<string, string> | undefined, Record<string, string> | undefined>;
|
|
2615
|
-
stderr: z.ZodOptional<z.
|
|
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. */
|
|
3170
|
+
stderr: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["pipe", "ignore", "inherit"]>, z.ZodNumber]>>;
|
|
2616
3171
|
}, "strip", z.ZodTypeAny, {
|
|
3172
|
+
type: "stdio";
|
|
2617
3173
|
command: string;
|
|
2618
3174
|
args: string[];
|
|
2619
3175
|
title?: string | undefined;
|
|
2620
|
-
type?: "stdio" | undefined;
|
|
2621
3176
|
description?: string | undefined;
|
|
2622
3177
|
apiKey?: {
|
|
2623
3178
|
source: "user" | "admin";
|
|
@@ -2655,7 +3210,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2655
3210
|
description: string;
|
|
2656
3211
|
}> | undefined;
|
|
2657
3212
|
env?: Record<string, string> | undefined;
|
|
2658
|
-
stderr?:
|
|
3213
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
2659
3214
|
}, {
|
|
2660
3215
|
command: string;
|
|
2661
3216
|
args: string[];
|
|
@@ -2698,7 +3253,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2698
3253
|
description: string;
|
|
2699
3254
|
}> | undefined;
|
|
2700
3255
|
env?: Record<string, string> | undefined;
|
|
2701
|
-
stderr?:
|
|
3256
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
2702
3257
|
}>, z.ZodObject<{
|
|
2703
3258
|
title: z.ZodOptional<z.ZodString>;
|
|
2704
3259
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2784,12 +3339,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2784
3339
|
description: string;
|
|
2785
3340
|
}>>>;
|
|
2786
3341
|
} & {
|
|
2787
|
-
type: z.
|
|
3342
|
+
type: z.ZodDefault<z.ZodLiteral<"websocket">>;
|
|
2788
3343
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
2789
3344
|
}, "strip", z.ZodTypeAny, {
|
|
3345
|
+
type: "websocket";
|
|
2790
3346
|
url: string;
|
|
2791
3347
|
title?: string | undefined;
|
|
2792
|
-
type?: "websocket" | undefined;
|
|
2793
3348
|
description?: string | undefined;
|
|
2794
3349
|
apiKey?: {
|
|
2795
3350
|
source: "user" | "admin";
|
|
@@ -2951,13 +3506,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2951
3506
|
description: string;
|
|
2952
3507
|
}>>>;
|
|
2953
3508
|
} & {
|
|
2954
|
-
type: z.
|
|
3509
|
+
type: z.ZodDefault<z.ZodLiteral<"sse">>;
|
|
2955
3510
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2956
3511
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
2957
3512
|
}, "strip", z.ZodTypeAny, {
|
|
3513
|
+
type: "sse";
|
|
2958
3514
|
url: string;
|
|
2959
3515
|
title?: string | undefined;
|
|
2960
|
-
type?: "sse" | undefined;
|
|
2961
3516
|
description?: string | undefined;
|
|
2962
3517
|
apiKey?: {
|
|
2963
3518
|
source: "user" | "admin";
|
|
@@ -3817,40 +4372,42 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3817
4372
|
conversationMode: z.ZodOptional<z.ZodBoolean>;
|
|
3818
4373
|
advancedMode: z.ZodOptional<z.ZodBoolean>;
|
|
3819
4374
|
speechToText: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
|
|
3820
|
-
|
|
4375
|
+
/** Keep in sync with STTProviders enum (defined below — cannot reference due to eval order) */
|
|
4376
|
+
engineSTT: z.ZodOptional<z.ZodEnum<["openai", "azureOpenAI"]>>;
|
|
3821
4377
|
languageSTT: z.ZodOptional<z.ZodString>;
|
|
3822
4378
|
autoTranscribeAudio: z.ZodOptional<z.ZodBoolean>;
|
|
3823
4379
|
decibelValue: z.ZodOptional<z.ZodNumber>;
|
|
3824
4380
|
autoSendText: z.ZodOptional<z.ZodNumber>;
|
|
3825
4381
|
}, "strip", z.ZodTypeAny, {
|
|
3826
|
-
engineSTT?:
|
|
4382
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
3827
4383
|
languageSTT?: string | undefined;
|
|
3828
4384
|
autoTranscribeAudio?: boolean | undefined;
|
|
3829
4385
|
decibelValue?: number | undefined;
|
|
3830
4386
|
autoSendText?: number | undefined;
|
|
3831
4387
|
}, {
|
|
3832
|
-
engineSTT?:
|
|
4388
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
3833
4389
|
languageSTT?: string | undefined;
|
|
3834
4390
|
autoTranscribeAudio?: boolean | undefined;
|
|
3835
4391
|
decibelValue?: number | undefined;
|
|
3836
4392
|
autoSendText?: number | undefined;
|
|
3837
4393
|
}>]>>;
|
|
3838
4394
|
textToSpeech: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
|
|
3839
|
-
|
|
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"]>>;
|
|
3840
4397
|
voice: z.ZodOptional<z.ZodString>;
|
|
3841
4398
|
languageTTS: z.ZodOptional<z.ZodString>;
|
|
3842
4399
|
automaticPlayback: z.ZodOptional<z.ZodBoolean>;
|
|
3843
4400
|
playbackRate: z.ZodOptional<z.ZodNumber>;
|
|
3844
4401
|
cacheTTS: z.ZodOptional<z.ZodBoolean>;
|
|
3845
4402
|
}, "strip", z.ZodTypeAny, {
|
|
3846
|
-
engineTTS?:
|
|
4403
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
3847
4404
|
voice?: string | undefined;
|
|
3848
4405
|
languageTTS?: string | undefined;
|
|
3849
4406
|
automaticPlayback?: boolean | undefined;
|
|
3850
4407
|
playbackRate?: number | undefined;
|
|
3851
4408
|
cacheTTS?: boolean | undefined;
|
|
3852
4409
|
}, {
|
|
3853
|
-
engineTTS?:
|
|
4410
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
3854
4411
|
voice?: string | undefined;
|
|
3855
4412
|
languageTTS?: string | undefined;
|
|
3856
4413
|
automaticPlayback?: boolean | undefined;
|
|
@@ -3861,14 +4418,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3861
4418
|
conversationMode?: boolean | undefined;
|
|
3862
4419
|
advancedMode?: boolean | undefined;
|
|
3863
4420
|
speechToText?: boolean | {
|
|
3864
|
-
engineSTT?:
|
|
4421
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
3865
4422
|
languageSTT?: string | undefined;
|
|
3866
4423
|
autoTranscribeAudio?: boolean | undefined;
|
|
3867
4424
|
decibelValue?: number | undefined;
|
|
3868
4425
|
autoSendText?: number | undefined;
|
|
3869
4426
|
} | undefined;
|
|
3870
4427
|
textToSpeech?: boolean | {
|
|
3871
|
-
engineTTS?:
|
|
4428
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
3872
4429
|
voice?: string | undefined;
|
|
3873
4430
|
languageTTS?: string | undefined;
|
|
3874
4431
|
automaticPlayback?: boolean | undefined;
|
|
@@ -3879,14 +4436,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3879
4436
|
conversationMode?: boolean | undefined;
|
|
3880
4437
|
advancedMode?: boolean | undefined;
|
|
3881
4438
|
speechToText?: boolean | {
|
|
3882
|
-
engineSTT?:
|
|
4439
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
3883
4440
|
languageSTT?: string | undefined;
|
|
3884
4441
|
autoTranscribeAudio?: boolean | undefined;
|
|
3885
4442
|
decibelValue?: number | undefined;
|
|
3886
4443
|
autoSendText?: number | undefined;
|
|
3887
4444
|
} | undefined;
|
|
3888
4445
|
textToSpeech?: boolean | {
|
|
3889
|
-
engineTTS?:
|
|
4446
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
3890
4447
|
voice?: string | undefined;
|
|
3891
4448
|
languageTTS?: string | undefined;
|
|
3892
4449
|
automaticPlayback?: boolean | undefined;
|
|
@@ -3948,14 +4505,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3948
4505
|
conversationMode?: boolean | undefined;
|
|
3949
4506
|
advancedMode?: boolean | undefined;
|
|
3950
4507
|
speechToText?: boolean | {
|
|
3951
|
-
engineSTT?:
|
|
4508
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
3952
4509
|
languageSTT?: string | undefined;
|
|
3953
4510
|
autoTranscribeAudio?: boolean | undefined;
|
|
3954
4511
|
decibelValue?: number | undefined;
|
|
3955
4512
|
autoSendText?: number | undefined;
|
|
3956
4513
|
} | undefined;
|
|
3957
4514
|
textToSpeech?: boolean | {
|
|
3958
|
-
engineTTS?:
|
|
4515
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
3959
4516
|
voice?: string | undefined;
|
|
3960
4517
|
languageTTS?: string | undefined;
|
|
3961
4518
|
automaticPlayback?: boolean | undefined;
|
|
@@ -4017,14 +4574,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4017
4574
|
conversationMode?: boolean | undefined;
|
|
4018
4575
|
advancedMode?: boolean | undefined;
|
|
4019
4576
|
speechToText?: boolean | {
|
|
4020
|
-
engineSTT?:
|
|
4577
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
4021
4578
|
languageSTT?: string | undefined;
|
|
4022
4579
|
autoTranscribeAudio?: boolean | undefined;
|
|
4023
4580
|
decibelValue?: number | undefined;
|
|
4024
4581
|
autoSendText?: number | undefined;
|
|
4025
4582
|
} | undefined;
|
|
4026
4583
|
textToSpeech?: boolean | {
|
|
4027
|
-
engineTTS?:
|
|
4584
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
4028
4585
|
voice?: string | undefined;
|
|
4029
4586
|
languageTTS?: string | undefined;
|
|
4030
4587
|
automaticPlayback?: boolean | undefined;
|
|
@@ -4155,19 +4712,19 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4155
4712
|
fileLimit: z.ZodOptional<z.ZodNumber>;
|
|
4156
4713
|
fileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4157
4714
|
totalSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4158
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
4715
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4159
4716
|
}, "strip", z.ZodTypeAny, {
|
|
4160
4717
|
disabled?: boolean | undefined;
|
|
4161
4718
|
fileLimit?: number | undefined;
|
|
4162
4719
|
fileSizeLimit?: number | undefined;
|
|
4163
4720
|
totalSizeLimit?: number | undefined;
|
|
4164
|
-
supportedMimeTypes?:
|
|
4721
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4165
4722
|
}, {
|
|
4166
4723
|
disabled?: boolean | undefined;
|
|
4167
4724
|
fileLimit?: number | undefined;
|
|
4168
4725
|
fileSizeLimit?: number | undefined;
|
|
4169
4726
|
totalSizeLimit?: number | undefined;
|
|
4170
|
-
supportedMimeTypes?:
|
|
4727
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4171
4728
|
}>>>;
|
|
4172
4729
|
serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4173
4730
|
avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4199,32 +4756,32 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4199
4756
|
quality?: number | undefined;
|
|
4200
4757
|
}>>;
|
|
4201
4758
|
ocr: z.ZodOptional<z.ZodObject<{
|
|
4202
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
4759
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4203
4760
|
}, "strip", z.ZodTypeAny, {
|
|
4204
|
-
supportedMimeTypes?:
|
|
4761
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4205
4762
|
}, {
|
|
4206
|
-
supportedMimeTypes?:
|
|
4763
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4207
4764
|
}>>;
|
|
4208
4765
|
text: z.ZodOptional<z.ZodObject<{
|
|
4209
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
4766
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4210
4767
|
}, "strip", z.ZodTypeAny, {
|
|
4211
|
-
supportedMimeTypes?:
|
|
4768
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4212
4769
|
}, {
|
|
4213
|
-
supportedMimeTypes?:
|
|
4770
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4214
4771
|
}>>;
|
|
4215
4772
|
}, "strip", z.ZodTypeAny, {
|
|
4216
4773
|
text?: {
|
|
4217
|
-
supportedMimeTypes?:
|
|
4774
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4218
4775
|
} | undefined;
|
|
4219
4776
|
ocr?: {
|
|
4220
|
-
supportedMimeTypes?:
|
|
4777
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4221
4778
|
} | undefined;
|
|
4222
4779
|
endpoints?: Record<string, {
|
|
4223
4780
|
disabled?: boolean | undefined;
|
|
4224
4781
|
fileLimit?: number | undefined;
|
|
4225
4782
|
fileSizeLimit?: number | undefined;
|
|
4226
4783
|
totalSizeLimit?: number | undefined;
|
|
4227
|
-
supportedMimeTypes?:
|
|
4784
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4228
4785
|
}> | undefined;
|
|
4229
4786
|
serverFileSizeLimit?: number | undefined;
|
|
4230
4787
|
avatarSizeLimit?: number | undefined;
|
|
@@ -4241,17 +4798,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4241
4798
|
} | undefined;
|
|
4242
4799
|
}, {
|
|
4243
4800
|
text?: {
|
|
4244
|
-
supportedMimeTypes?:
|
|
4801
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4245
4802
|
} | undefined;
|
|
4246
4803
|
ocr?: {
|
|
4247
|
-
supportedMimeTypes?:
|
|
4804
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4248
4805
|
} | undefined;
|
|
4249
4806
|
endpoints?: Record<string, {
|
|
4250
4807
|
disabled?: boolean | undefined;
|
|
4251
4808
|
fileLimit?: number | undefined;
|
|
4252
4809
|
fileSizeLimit?: number | undefined;
|
|
4253
4810
|
totalSizeLimit?: number | undefined;
|
|
4254
|
-
supportedMimeTypes?:
|
|
4811
|
+
supportedMimeTypes?: string[] | undefined;
|
|
4255
4812
|
}> | undefined;
|
|
4256
4813
|
serverFileSizeLimit?: number | undefined;
|
|
4257
4814
|
avatarSizeLimit?: number | undefined;
|
|
@@ -4273,7 +4830,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4273
4830
|
list: z.ZodArray<z.ZodObject<{
|
|
4274
4831
|
name: z.ZodString;
|
|
4275
4832
|
label: z.ZodString;
|
|
4276
|
-
preset: z.ZodObject<{
|
|
4833
|
+
preset: z.ZodObject<Omit<{
|
|
4277
4834
|
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4278
4835
|
greeting: z.ZodOptional<z.ZodString>;
|
|
4279
4836
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
@@ -4469,18 +5026,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4469
5026
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
4470
5027
|
order: z.ZodOptional<z.ZodNumber>;
|
|
4471
5028
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
4472
|
-
}, "strip", z.ZodTypeAny, {
|
|
5029
|
+
}, "iconURL" | "greeting" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel">, "strip", z.ZodTypeAny, {
|
|
4473
5030
|
endpoint: string | null;
|
|
4474
5031
|
conversationId?: string | null | undefined;
|
|
4475
5032
|
title?: string | null | undefined;
|
|
4476
|
-
iconURL?: string | null | undefined;
|
|
4477
|
-
greeting?: string | undefined;
|
|
4478
5033
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4479
|
-
expiredAt?: string | null | undefined;
|
|
4480
|
-
messages?: string[] | undefined;
|
|
4481
|
-
isArchived?: boolean | undefined;
|
|
4482
|
-
tags?: string[] | undefined;
|
|
4483
|
-
user?: string | undefined;
|
|
4484
5034
|
tools?: string[] | {
|
|
4485
5035
|
name: string;
|
|
4486
5036
|
pluginKey: string;
|
|
@@ -4498,7 +5048,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4498
5048
|
toolkit?: boolean | undefined;
|
|
4499
5049
|
}[] | undefined;
|
|
4500
5050
|
model?: string | null | undefined;
|
|
4501
|
-
spec?: string | null | undefined;
|
|
4502
5051
|
instructions?: string | undefined;
|
|
4503
5052
|
fileTokenLimit?: number | undefined;
|
|
4504
5053
|
modelLabel?: string | null | undefined;
|
|
@@ -4510,7 +5059,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4510
5059
|
top_p?: number | undefined;
|
|
4511
5060
|
frequency_penalty?: number | undefined;
|
|
4512
5061
|
presence_penalty?: number | undefined;
|
|
4513
|
-
parentMessageId?: string | undefined;
|
|
4514
5062
|
maxOutputTokens?: number | null | undefined;
|
|
4515
5063
|
maxContextTokens?: number | undefined;
|
|
4516
5064
|
max_tokens?: number | undefined;
|
|
@@ -4531,7 +5079,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4531
5079
|
};
|
|
4532
5080
|
}[] | undefined;
|
|
4533
5081
|
resendFiles?: boolean | undefined;
|
|
4534
|
-
file_ids?: string[] | undefined;
|
|
4535
5082
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
4536
5083
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
4537
5084
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -4571,10 +5118,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4571
5118
|
} | null) | undefined;
|
|
4572
5119
|
additional_instructions?: string | undefined;
|
|
4573
5120
|
append_current_datetime?: boolean | undefined;
|
|
4574
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
4575
5121
|
stop?: string[] | undefined;
|
|
4576
|
-
resendImages?: boolean | undefined;
|
|
4577
|
-
chatGptLabel?: string | null | undefined;
|
|
4578
5122
|
presetId?: string | null | undefined;
|
|
4579
5123
|
defaultPreset?: boolean | undefined;
|
|
4580
5124
|
order?: number | undefined;
|
|
@@ -4582,14 +5126,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4582
5126
|
endpoint: string | null;
|
|
4583
5127
|
conversationId?: string | null | undefined;
|
|
4584
5128
|
title?: string | null | undefined;
|
|
4585
|
-
iconURL?: string | null | undefined;
|
|
4586
|
-
greeting?: string | undefined;
|
|
4587
5129
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4588
|
-
expiredAt?: string | null | undefined;
|
|
4589
|
-
messages?: string[] | undefined;
|
|
4590
|
-
isArchived?: boolean | undefined;
|
|
4591
|
-
tags?: string[] | undefined;
|
|
4592
|
-
user?: string | undefined;
|
|
4593
5130
|
tools?: string[] | {
|
|
4594
5131
|
name: string;
|
|
4595
5132
|
pluginKey: string;
|
|
@@ -4607,7 +5144,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4607
5144
|
toolkit?: boolean | undefined;
|
|
4608
5145
|
}[] | undefined;
|
|
4609
5146
|
model?: string | null | undefined;
|
|
4610
|
-
spec?: string | null | undefined;
|
|
4611
5147
|
instructions?: string | undefined;
|
|
4612
5148
|
fileTokenLimit?: string | number | undefined;
|
|
4613
5149
|
modelLabel?: string | null | undefined;
|
|
@@ -4619,7 +5155,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4619
5155
|
top_p?: number | undefined;
|
|
4620
5156
|
frequency_penalty?: number | undefined;
|
|
4621
5157
|
presence_penalty?: number | undefined;
|
|
4622
|
-
parentMessageId?: string | undefined;
|
|
4623
5158
|
maxOutputTokens?: string | number | null | undefined;
|
|
4624
5159
|
maxContextTokens?: string | number | undefined;
|
|
4625
5160
|
max_tokens?: string | number | undefined;
|
|
@@ -4640,7 +5175,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4640
5175
|
};
|
|
4641
5176
|
}[] | undefined;
|
|
4642
5177
|
resendFiles?: boolean | undefined;
|
|
4643
|
-
file_ids?: string[] | undefined;
|
|
4644
5178
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
4645
5179
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
4646
5180
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -4680,10 +5214,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4680
5214
|
} | null) | undefined;
|
|
4681
5215
|
additional_instructions?: string | undefined;
|
|
4682
5216
|
append_current_datetime?: boolean | undefined;
|
|
4683
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
4684
5217
|
stop?: string[] | undefined;
|
|
4685
|
-
resendImages?: boolean | undefined;
|
|
4686
|
-
chatGptLabel?: string | null | undefined;
|
|
4687
5218
|
presetId?: string | null | undefined;
|
|
4688
5219
|
defaultPreset?: boolean | undefined;
|
|
4689
5220
|
order?: number | undefined;
|
|
@@ -4709,14 +5240,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4709
5240
|
endpoint: string | null;
|
|
4710
5241
|
conversationId?: string | null | undefined;
|
|
4711
5242
|
title?: string | null | undefined;
|
|
4712
|
-
iconURL?: string | null | undefined;
|
|
4713
|
-
greeting?: string | undefined;
|
|
4714
5243
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4715
|
-
expiredAt?: string | null | undefined;
|
|
4716
|
-
messages?: string[] | undefined;
|
|
4717
|
-
isArchived?: boolean | undefined;
|
|
4718
|
-
tags?: string[] | undefined;
|
|
4719
|
-
user?: string | undefined;
|
|
4720
5244
|
tools?: string[] | {
|
|
4721
5245
|
name: string;
|
|
4722
5246
|
pluginKey: string;
|
|
@@ -4734,7 +5258,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4734
5258
|
toolkit?: boolean | undefined;
|
|
4735
5259
|
}[] | undefined;
|
|
4736
5260
|
model?: string | null | undefined;
|
|
4737
|
-
spec?: string | null | undefined;
|
|
4738
5261
|
instructions?: string | undefined;
|
|
4739
5262
|
fileTokenLimit?: number | undefined;
|
|
4740
5263
|
modelLabel?: string | null | undefined;
|
|
@@ -4746,7 +5269,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4746
5269
|
top_p?: number | undefined;
|
|
4747
5270
|
frequency_penalty?: number | undefined;
|
|
4748
5271
|
presence_penalty?: number | undefined;
|
|
4749
|
-
parentMessageId?: string | undefined;
|
|
4750
5272
|
maxOutputTokens?: number | null | undefined;
|
|
4751
5273
|
maxContextTokens?: number | undefined;
|
|
4752
5274
|
max_tokens?: number | undefined;
|
|
@@ -4767,7 +5289,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4767
5289
|
};
|
|
4768
5290
|
}[] | undefined;
|
|
4769
5291
|
resendFiles?: boolean | undefined;
|
|
4770
|
-
file_ids?: string[] | undefined;
|
|
4771
5292
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
4772
5293
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
4773
5294
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -4807,10 +5328,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4807
5328
|
} | null) | undefined;
|
|
4808
5329
|
additional_instructions?: string | undefined;
|
|
4809
5330
|
append_current_datetime?: boolean | undefined;
|
|
4810
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
4811
5331
|
stop?: string[] | undefined;
|
|
4812
|
-
resendImages?: boolean | undefined;
|
|
4813
|
-
chatGptLabel?: string | null | undefined;
|
|
4814
5332
|
presetId?: string | null | undefined;
|
|
4815
5333
|
defaultPreset?: boolean | undefined;
|
|
4816
5334
|
order?: number | undefined;
|
|
@@ -4836,14 +5354,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4836
5354
|
endpoint: string | null;
|
|
4837
5355
|
conversationId?: string | null | undefined;
|
|
4838
5356
|
title?: string | null | undefined;
|
|
4839
|
-
iconURL?: string | null | undefined;
|
|
4840
|
-
greeting?: string | undefined;
|
|
4841
5357
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4842
|
-
expiredAt?: string | null | undefined;
|
|
4843
|
-
messages?: string[] | undefined;
|
|
4844
|
-
isArchived?: boolean | undefined;
|
|
4845
|
-
tags?: string[] | undefined;
|
|
4846
|
-
user?: string | undefined;
|
|
4847
5358
|
tools?: string[] | {
|
|
4848
5359
|
name: string;
|
|
4849
5360
|
pluginKey: string;
|
|
@@ -4861,7 +5372,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4861
5372
|
toolkit?: boolean | undefined;
|
|
4862
5373
|
}[] | undefined;
|
|
4863
5374
|
model?: string | null | undefined;
|
|
4864
|
-
spec?: string | null | undefined;
|
|
4865
5375
|
instructions?: string | undefined;
|
|
4866
5376
|
fileTokenLimit?: string | number | undefined;
|
|
4867
5377
|
modelLabel?: string | null | undefined;
|
|
@@ -4873,7 +5383,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4873
5383
|
top_p?: number | undefined;
|
|
4874
5384
|
frequency_penalty?: number | undefined;
|
|
4875
5385
|
presence_penalty?: number | undefined;
|
|
4876
|
-
parentMessageId?: string | undefined;
|
|
4877
5386
|
maxOutputTokens?: string | number | null | undefined;
|
|
4878
5387
|
maxContextTokens?: string | number | undefined;
|
|
4879
5388
|
max_tokens?: string | number | undefined;
|
|
@@ -4894,7 +5403,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4894
5403
|
};
|
|
4895
5404
|
}[] | undefined;
|
|
4896
5405
|
resendFiles?: boolean | undefined;
|
|
4897
|
-
file_ids?: string[] | undefined;
|
|
4898
5406
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
4899
5407
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
4900
5408
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -4934,10 +5442,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4934
5442
|
} | null) | undefined;
|
|
4935
5443
|
additional_instructions?: string | undefined;
|
|
4936
5444
|
append_current_datetime?: boolean | undefined;
|
|
4937
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
4938
5445
|
stop?: string[] | undefined;
|
|
4939
|
-
resendImages?: boolean | undefined;
|
|
4940
|
-
chatGptLabel?: string | null | undefined;
|
|
4941
5446
|
presetId?: string | null | undefined;
|
|
4942
5447
|
defaultPreset?: boolean | undefined;
|
|
4943
5448
|
order?: number | undefined;
|
|
@@ -4968,14 +5473,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4968
5473
|
endpoint: string | null;
|
|
4969
5474
|
conversationId?: string | null | undefined;
|
|
4970
5475
|
title?: string | null | undefined;
|
|
4971
|
-
iconURL?: string | null | undefined;
|
|
4972
|
-
greeting?: string | undefined;
|
|
4973
5476
|
endpointType?: EModelEndpoint | null | undefined;
|
|
4974
|
-
expiredAt?: string | null | undefined;
|
|
4975
|
-
messages?: string[] | undefined;
|
|
4976
|
-
isArchived?: boolean | undefined;
|
|
4977
|
-
tags?: string[] | undefined;
|
|
4978
|
-
user?: string | undefined;
|
|
4979
5477
|
tools?: string[] | {
|
|
4980
5478
|
name: string;
|
|
4981
5479
|
pluginKey: string;
|
|
@@ -4993,7 +5491,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4993
5491
|
toolkit?: boolean | undefined;
|
|
4994
5492
|
}[] | undefined;
|
|
4995
5493
|
model?: string | null | undefined;
|
|
4996
|
-
spec?: string | null | undefined;
|
|
4997
5494
|
instructions?: string | undefined;
|
|
4998
5495
|
fileTokenLimit?: number | undefined;
|
|
4999
5496
|
modelLabel?: string | null | undefined;
|
|
@@ -5005,7 +5502,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5005
5502
|
top_p?: number | undefined;
|
|
5006
5503
|
frequency_penalty?: number | undefined;
|
|
5007
5504
|
presence_penalty?: number | undefined;
|
|
5008
|
-
parentMessageId?: string | undefined;
|
|
5009
5505
|
maxOutputTokens?: number | null | undefined;
|
|
5010
5506
|
maxContextTokens?: number | undefined;
|
|
5011
5507
|
max_tokens?: number | undefined;
|
|
@@ -5026,7 +5522,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5026
5522
|
};
|
|
5027
5523
|
}[] | undefined;
|
|
5028
5524
|
resendFiles?: boolean | undefined;
|
|
5029
|
-
file_ids?: string[] | undefined;
|
|
5030
5525
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
5031
5526
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
5032
5527
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -5066,10 +5561,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5066
5561
|
} | null) | undefined;
|
|
5067
5562
|
additional_instructions?: string | undefined;
|
|
5068
5563
|
append_current_datetime?: boolean | undefined;
|
|
5069
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
5070
5564
|
stop?: string[] | undefined;
|
|
5071
|
-
resendImages?: boolean | undefined;
|
|
5072
|
-
chatGptLabel?: string | null | undefined;
|
|
5073
5565
|
presetId?: string | null | undefined;
|
|
5074
5566
|
defaultPreset?: boolean | undefined;
|
|
5075
5567
|
order?: number | undefined;
|
|
@@ -5098,14 +5590,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5098
5590
|
endpoint: string | null;
|
|
5099
5591
|
conversationId?: string | null | undefined;
|
|
5100
5592
|
title?: string | null | undefined;
|
|
5101
|
-
iconURL?: string | null | undefined;
|
|
5102
|
-
greeting?: string | undefined;
|
|
5103
5593
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5104
|
-
expiredAt?: string | null | undefined;
|
|
5105
|
-
messages?: string[] | undefined;
|
|
5106
|
-
isArchived?: boolean | undefined;
|
|
5107
|
-
tags?: string[] | undefined;
|
|
5108
|
-
user?: string | undefined;
|
|
5109
5594
|
tools?: string[] | {
|
|
5110
5595
|
name: string;
|
|
5111
5596
|
pluginKey: string;
|
|
@@ -5123,7 +5608,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5123
5608
|
toolkit?: boolean | undefined;
|
|
5124
5609
|
}[] | undefined;
|
|
5125
5610
|
model?: string | null | undefined;
|
|
5126
|
-
spec?: string | null | undefined;
|
|
5127
5611
|
instructions?: string | undefined;
|
|
5128
5612
|
fileTokenLimit?: string | number | undefined;
|
|
5129
5613
|
modelLabel?: string | null | undefined;
|
|
@@ -5135,7 +5619,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5135
5619
|
top_p?: number | undefined;
|
|
5136
5620
|
frequency_penalty?: number | undefined;
|
|
5137
5621
|
presence_penalty?: number | undefined;
|
|
5138
|
-
parentMessageId?: string | undefined;
|
|
5139
5622
|
maxOutputTokens?: string | number | null | undefined;
|
|
5140
5623
|
maxContextTokens?: string | number | undefined;
|
|
5141
5624
|
max_tokens?: string | number | undefined;
|
|
@@ -5156,7 +5639,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5156
5639
|
};
|
|
5157
5640
|
}[] | undefined;
|
|
5158
5641
|
resendFiles?: boolean | undefined;
|
|
5159
|
-
file_ids?: string[] | undefined;
|
|
5160
5642
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
5161
5643
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
5162
5644
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -5196,10 +5678,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5196
5678
|
} | null) | undefined;
|
|
5197
5679
|
additional_instructions?: string | undefined;
|
|
5198
5680
|
append_current_datetime?: boolean | undefined;
|
|
5199
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
5200
5681
|
stop?: string[] | undefined;
|
|
5201
|
-
resendImages?: boolean | undefined;
|
|
5202
|
-
chatGptLabel?: string | null | undefined;
|
|
5203
5682
|
presetId?: string | null | undefined;
|
|
5204
5683
|
defaultPreset?: boolean | undefined;
|
|
5205
5684
|
order?: number | undefined;
|
|
@@ -5224,7 +5703,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5224
5703
|
addedEndpoints?: string[] | undefined;
|
|
5225
5704
|
}>>;
|
|
5226
5705
|
endpoints: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
5227
|
-
all: z.ZodOptional<z.ZodObject<{
|
|
5706
|
+
all: z.ZodOptional<z.ZodObject<Omit<{
|
|
5228
5707
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
5229
5708
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
5230
5709
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -5235,8 +5714,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5235
5714
|
titlePromptTemplate: z.ZodOptional<z.ZodString>;
|
|
5236
5715
|
/** Maximum characters allowed in a single tool result before truncation. */
|
|
5237
5716
|
maxToolResultChars: z.ZodOptional<z.ZodNumber>;
|
|
5238
|
-
}, "strip", z.ZodTypeAny, {
|
|
5239
|
-
baseURL?: string | undefined;
|
|
5717
|
+
}, "baseURL">, "strip", z.ZodTypeAny, {
|
|
5240
5718
|
streamRate?: number | undefined;
|
|
5241
5719
|
titlePrompt?: string | undefined;
|
|
5242
5720
|
titleModel?: string | undefined;
|
|
@@ -5246,7 +5724,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5246
5724
|
titlePromptTemplate?: string | undefined;
|
|
5247
5725
|
maxToolResultChars?: number | undefined;
|
|
5248
5726
|
}, {
|
|
5249
|
-
baseURL?: string | undefined;
|
|
5250
5727
|
streamRate?: number | undefined;
|
|
5251
5728
|
titlePrompt?: string | undefined;
|
|
5252
5729
|
titleModel?: string | undefined;
|
|
@@ -5453,11 +5930,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5453
5930
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
5454
5931
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
5455
5932
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
5456
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5933
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
5457
5934
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5458
5935
|
version: z.ZodOptional<z.ZodString>;
|
|
5459
5936
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
5460
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5937
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5461
5938
|
}, "strip", z.ZodTypeAny, {
|
|
5462
5939
|
apiKey: string;
|
|
5463
5940
|
version?: string | undefined;
|
|
@@ -5466,9 +5943,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5466
5943
|
deploymentName?: string | undefined;
|
|
5467
5944
|
assistants?: boolean | undefined;
|
|
5468
5945
|
serverless?: boolean | undefined;
|
|
5469
|
-
addParams?: Record<string,
|
|
5946
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
5470
5947
|
dropParams?: string[] | undefined;
|
|
5471
|
-
additionalHeaders?: Record<string,
|
|
5948
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
5472
5949
|
}, {
|
|
5473
5950
|
apiKey: string;
|
|
5474
5951
|
version?: string | undefined;
|
|
@@ -5477,11 +5954,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5477
5954
|
deploymentName?: string | undefined;
|
|
5478
5955
|
assistants?: boolean | undefined;
|
|
5479
5956
|
serverless?: boolean | undefined;
|
|
5480
|
-
addParams?: Record<string,
|
|
5957
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
5481
5958
|
dropParams?: string[] | undefined;
|
|
5482
|
-
additionalHeaders?: Record<string,
|
|
5959
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
5483
5960
|
}>>, "many">;
|
|
5484
|
-
plugins: z.ZodOptional<z.ZodBoolean>;
|
|
5485
5961
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
5486
5962
|
}, "strip", z.ZodTypeAny, {
|
|
5487
5963
|
groups: ({
|
|
@@ -5499,12 +5975,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5499
5975
|
deploymentName?: string | undefined;
|
|
5500
5976
|
assistants?: boolean | undefined;
|
|
5501
5977
|
serverless?: boolean | undefined;
|
|
5502
|
-
addParams?: Record<string,
|
|
5978
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
5503
5979
|
dropParams?: string[] | undefined;
|
|
5504
|
-
additionalHeaders?: Record<string,
|
|
5980
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
5505
5981
|
})[];
|
|
5506
5982
|
assistants?: boolean | undefined;
|
|
5507
|
-
plugins?: boolean | undefined;
|
|
5508
5983
|
}, {
|
|
5509
5984
|
groups: ({
|
|
5510
5985
|
group: string;
|
|
@@ -5521,12 +5996,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5521
5996
|
deploymentName?: string | undefined;
|
|
5522
5997
|
assistants?: boolean | undefined;
|
|
5523
5998
|
serverless?: boolean | undefined;
|
|
5524
|
-
addParams?: Record<string,
|
|
5999
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
5525
6000
|
dropParams?: string[] | undefined;
|
|
5526
|
-
additionalHeaders?: Record<string,
|
|
6001
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
5527
6002
|
})[];
|
|
5528
6003
|
assistants?: boolean | undefined;
|
|
5529
|
-
plugins?: boolean | undefined;
|
|
5530
6004
|
}>, z.ZodObject<{
|
|
5531
6005
|
streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5532
6006
|
titlePrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5534,9 +6008,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5534
6008
|
titleConvo: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5535
6009
|
titleMethod: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"completion">, z.ZodLiteral<"functions">, z.ZodLiteral<"structured">]>>>;
|
|
5536
6010
|
titlePromptTemplate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5537
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5538
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5539
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5540
6011
|
}, "strip", z.ZodTypeAny, {
|
|
5541
6012
|
streamRate?: number | undefined;
|
|
5542
6013
|
titlePrompt?: string | undefined;
|
|
@@ -5544,9 +6015,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5544
6015
|
titleConvo?: boolean | undefined;
|
|
5545
6016
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
5546
6017
|
titlePromptTemplate?: string | undefined;
|
|
5547
|
-
summarize?: boolean | undefined;
|
|
5548
|
-
summaryModel?: string | undefined;
|
|
5549
|
-
customOrder?: number | undefined;
|
|
5550
6018
|
}, {
|
|
5551
6019
|
streamRate?: number | undefined;
|
|
5552
6020
|
titlePrompt?: string | undefined;
|
|
@@ -5554,9 +6022,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5554
6022
|
titleConvo?: boolean | undefined;
|
|
5555
6023
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
5556
6024
|
titlePromptTemplate?: string | undefined;
|
|
5557
|
-
summarize?: boolean | undefined;
|
|
5558
|
-
summaryModel?: string | undefined;
|
|
5559
|
-
customOrder?: number | undefined;
|
|
5560
6025
|
}>>>;
|
|
5561
6026
|
azureAssistants: z.ZodOptional<z.ZodObject<{
|
|
5562
6027
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5608,14 +6073,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5608
6073
|
fetch?: boolean | undefined;
|
|
5609
6074
|
userIdQuery?: boolean | undefined;
|
|
5610
6075
|
}>>;
|
|
5611
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6076
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5612
6077
|
}, "strip", z.ZodTypeAny, {
|
|
5613
6078
|
version: string | number;
|
|
5614
6079
|
retrievalModels: string[];
|
|
5615
6080
|
capabilities: Capabilities[];
|
|
5616
6081
|
apiKey?: string | undefined;
|
|
5617
6082
|
baseURL?: string | undefined;
|
|
5618
|
-
headers?: Record<string,
|
|
6083
|
+
headers?: Record<string, string> | undefined;
|
|
5619
6084
|
streamRate?: number | undefined;
|
|
5620
6085
|
titlePrompt?: string | undefined;
|
|
5621
6086
|
titleModel?: string | undefined;
|
|
@@ -5642,7 +6107,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5642
6107
|
version?: string | number | undefined;
|
|
5643
6108
|
apiKey?: string | undefined;
|
|
5644
6109
|
baseURL?: string | undefined;
|
|
5645
|
-
headers?: Record<string,
|
|
6110
|
+
headers?: Record<string, string> | undefined;
|
|
5646
6111
|
streamRate?: number | undefined;
|
|
5647
6112
|
titlePrompt?: string | undefined;
|
|
5648
6113
|
titleModel?: string | undefined;
|
|
@@ -5718,14 +6183,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5718
6183
|
fetch?: boolean | undefined;
|
|
5719
6184
|
userIdQuery?: boolean | undefined;
|
|
5720
6185
|
}>>;
|
|
5721
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6186
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5722
6187
|
}, "strip", z.ZodTypeAny, {
|
|
5723
6188
|
version: string | number;
|
|
5724
6189
|
retrievalModels: string[];
|
|
5725
6190
|
capabilities: Capabilities[];
|
|
5726
6191
|
apiKey?: string | undefined;
|
|
5727
6192
|
baseURL?: string | undefined;
|
|
5728
|
-
headers?: Record<string,
|
|
6193
|
+
headers?: Record<string, string> | undefined;
|
|
5729
6194
|
streamRate?: number | undefined;
|
|
5730
6195
|
titlePrompt?: string | undefined;
|
|
5731
6196
|
titleModel?: string | undefined;
|
|
@@ -5752,7 +6217,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5752
6217
|
version?: string | number | undefined;
|
|
5753
6218
|
apiKey?: string | undefined;
|
|
5754
6219
|
baseURL?: string | undefined;
|
|
5755
|
-
headers?: Record<string,
|
|
6220
|
+
headers?: Record<string, string> | undefined;
|
|
5756
6221
|
streamRate?: number | undefined;
|
|
5757
6222
|
titlePrompt?: string | undefined;
|
|
5758
6223
|
titleModel?: string | undefined;
|
|
@@ -5778,7 +6243,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5778
6243
|
retrievalModels?: string[] | undefined;
|
|
5779
6244
|
capabilities?: Capabilities[] | undefined;
|
|
5780
6245
|
}>>;
|
|
5781
|
-
agents: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
6246
|
+
agents: z.ZodOptional<z.ZodDefault<z.ZodObject<Omit<{
|
|
5782
6247
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
5783
6248
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
5784
6249
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -5789,7 +6254,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5789
6254
|
titlePromptTemplate: z.ZodOptional<z.ZodString>;
|
|
5790
6255
|
/** Maximum characters allowed in a single tool result before truncation. */
|
|
5791
6256
|
maxToolResultChars: z.ZodOptional<z.ZodNumber>;
|
|
5792
|
-
} & {
|
|
6257
|
+
}, "baseURL"> & {
|
|
5793
6258
|
recursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
5794
6259
|
disableBuilder: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5795
6260
|
maxRecursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5804,7 +6269,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5804
6269
|
maxCitations: number;
|
|
5805
6270
|
maxCitationsPerFile: number;
|
|
5806
6271
|
minRelevanceScore: number;
|
|
5807
|
-
baseURL?: string | undefined;
|
|
5808
6272
|
streamRate?: number | undefined;
|
|
5809
6273
|
titlePrompt?: string | undefined;
|
|
5810
6274
|
titleModel?: string | undefined;
|
|
@@ -5817,7 +6281,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5817
6281
|
maxRecursionLimit?: number | undefined;
|
|
5818
6282
|
allowedProviders?: string[] | undefined;
|
|
5819
6283
|
}, {
|
|
5820
|
-
baseURL?: string | undefined;
|
|
5821
6284
|
streamRate?: number | undefined;
|
|
5822
6285
|
titlePrompt?: string | undefined;
|
|
5823
6286
|
titleModel?: string | undefined;
|
|
@@ -5875,31 +6338,201 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5875
6338
|
fetch?: boolean | undefined;
|
|
5876
6339
|
userIdQuery?: boolean | undefined;
|
|
5877
6340
|
}>>;
|
|
5878
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5879
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5880
6341
|
iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5881
6342
|
modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5882
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5883
|
-
addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
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]>>>>;
|
|
5884
6345
|
dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
5885
6346
|
customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
5886
6347
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
5887
|
-
paramDefinitions: z.ZodOptional<z.ZodArray<z.
|
|
6348
|
+
paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6349
|
+
key: z.ZodString;
|
|
6350
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6351
|
+
type: z.ZodOptional<z.ZodNativeEnum<typeof SettingTypes>>;
|
|
6352
|
+
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
6353
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
6354
|
+
showDefault: z.ZodOptional<z.ZodBoolean>;
|
|
6355
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6356
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
6357
|
+
min: z.ZodNumber;
|
|
6358
|
+
max: z.ZodNumber;
|
|
6359
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
6360
|
+
}, "strip", z.ZodTypeAny, {
|
|
6361
|
+
min: number;
|
|
6362
|
+
max: number;
|
|
6363
|
+
step?: number | undefined;
|
|
6364
|
+
}, {
|
|
6365
|
+
min: number;
|
|
6366
|
+
max: number;
|
|
6367
|
+
step?: number | undefined;
|
|
6368
|
+
}>>;
|
|
6369
|
+
enumMappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString]>>>;
|
|
6370
|
+
component: z.ZodOptional<z.ZodNativeEnum<typeof ComponentTypes>>;
|
|
6371
|
+
optionType: z.ZodOptional<z.ZodNativeEnum<typeof OptionTypes>>;
|
|
6372
|
+
columnSpan: z.ZodOptional<z.ZodNumber>;
|
|
6373
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
6374
|
+
label: z.ZodOptional<z.ZodString>;
|
|
6375
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
6376
|
+
labelCode: z.ZodOptional<z.ZodBoolean>;
|
|
6377
|
+
placeholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
6378
|
+
descriptionCode: z.ZodOptional<z.ZodBoolean>;
|
|
6379
|
+
minText: z.ZodOptional<z.ZodNumber>;
|
|
6380
|
+
maxText: z.ZodOptional<z.ZodNumber>;
|
|
6381
|
+
minTags: z.ZodOptional<z.ZodNumber>;
|
|
6382
|
+
maxTags: z.ZodOptional<z.ZodNumber>;
|
|
6383
|
+
includeInput: z.ZodOptional<z.ZodBoolean>;
|
|
6384
|
+
descriptionSide: z.ZodOptional<z.ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
6385
|
+
searchPlaceholder: z.ZodOptional<z.ZodString>;
|
|
6386
|
+
selectPlaceholder: z.ZodOptional<z.ZodString>;
|
|
6387
|
+
searchPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
6388
|
+
selectPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
6389
|
+
}, "strip", z.ZodTypeAny, {
|
|
6390
|
+
key: string;
|
|
6391
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6392
|
+
options?: string[] | undefined;
|
|
6393
|
+
type?: SettingTypes | undefined;
|
|
6394
|
+
description?: string | undefined;
|
|
6395
|
+
placeholder?: string | undefined;
|
|
6396
|
+
label?: string | undefined;
|
|
6397
|
+
showLabel?: boolean | undefined;
|
|
6398
|
+
showDefault?: boolean | undefined;
|
|
6399
|
+
range?: {
|
|
6400
|
+
min: number;
|
|
6401
|
+
max: number;
|
|
6402
|
+
step?: number | undefined;
|
|
6403
|
+
} | undefined;
|
|
6404
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6405
|
+
component?: ComponentTypes | undefined;
|
|
6406
|
+
optionType?: OptionTypes | undefined;
|
|
6407
|
+
columnSpan?: number | undefined;
|
|
6408
|
+
columns?: number | undefined;
|
|
6409
|
+
labelCode?: boolean | undefined;
|
|
6410
|
+
placeholderCode?: boolean | undefined;
|
|
6411
|
+
descriptionCode?: boolean | undefined;
|
|
6412
|
+
minText?: number | undefined;
|
|
6413
|
+
maxText?: number | undefined;
|
|
6414
|
+
minTags?: number | undefined;
|
|
6415
|
+
maxTags?: number | undefined;
|
|
6416
|
+
includeInput?: boolean | undefined;
|
|
6417
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6418
|
+
searchPlaceholder?: string | undefined;
|
|
6419
|
+
selectPlaceholder?: string | undefined;
|
|
6420
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6421
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6422
|
+
}, {
|
|
6423
|
+
key: string;
|
|
6424
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6425
|
+
options?: string[] | undefined;
|
|
6426
|
+
type?: SettingTypes | undefined;
|
|
6427
|
+
description?: string | undefined;
|
|
6428
|
+
placeholder?: string | undefined;
|
|
6429
|
+
label?: string | undefined;
|
|
6430
|
+
showLabel?: boolean | undefined;
|
|
6431
|
+
showDefault?: boolean | undefined;
|
|
6432
|
+
range?: {
|
|
6433
|
+
min: number;
|
|
6434
|
+
max: number;
|
|
6435
|
+
step?: number | undefined;
|
|
6436
|
+
} | undefined;
|
|
6437
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6438
|
+
component?: ComponentTypes | undefined;
|
|
6439
|
+
optionType?: OptionTypes | undefined;
|
|
6440
|
+
columnSpan?: number | undefined;
|
|
6441
|
+
columns?: number | undefined;
|
|
6442
|
+
labelCode?: boolean | undefined;
|
|
6443
|
+
placeholderCode?: boolean | undefined;
|
|
6444
|
+
descriptionCode?: boolean | undefined;
|
|
6445
|
+
minText?: number | undefined;
|
|
6446
|
+
maxText?: number | undefined;
|
|
6447
|
+
minTags?: number | undefined;
|
|
6448
|
+
maxTags?: number | undefined;
|
|
6449
|
+
includeInput?: boolean | undefined;
|
|
6450
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6451
|
+
searchPlaceholder?: string | undefined;
|
|
6452
|
+
selectPlaceholder?: string | undefined;
|
|
6453
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6454
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6455
|
+
}>, "many">>;
|
|
5888
6456
|
}, "strict", z.ZodTypeAny, {
|
|
5889
6457
|
defaultParamsEndpoint: string;
|
|
5890
|
-
paramDefinitions?:
|
|
6458
|
+
paramDefinitions?: {
|
|
6459
|
+
key: string;
|
|
6460
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6461
|
+
options?: string[] | undefined;
|
|
6462
|
+
type?: SettingTypes | undefined;
|
|
6463
|
+
description?: string | undefined;
|
|
6464
|
+
placeholder?: string | undefined;
|
|
6465
|
+
label?: string | undefined;
|
|
6466
|
+
showLabel?: boolean | undefined;
|
|
6467
|
+
showDefault?: boolean | undefined;
|
|
6468
|
+
range?: {
|
|
6469
|
+
min: number;
|
|
6470
|
+
max: number;
|
|
6471
|
+
step?: number | undefined;
|
|
6472
|
+
} | undefined;
|
|
6473
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6474
|
+
component?: ComponentTypes | undefined;
|
|
6475
|
+
optionType?: OptionTypes | undefined;
|
|
6476
|
+
columnSpan?: number | undefined;
|
|
6477
|
+
columns?: number | undefined;
|
|
6478
|
+
labelCode?: boolean | undefined;
|
|
6479
|
+
placeholderCode?: boolean | undefined;
|
|
6480
|
+
descriptionCode?: boolean | undefined;
|
|
6481
|
+
minText?: number | undefined;
|
|
6482
|
+
maxText?: number | undefined;
|
|
6483
|
+
minTags?: number | undefined;
|
|
6484
|
+
maxTags?: number | undefined;
|
|
6485
|
+
includeInput?: boolean | undefined;
|
|
6486
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6487
|
+
searchPlaceholder?: string | undefined;
|
|
6488
|
+
selectPlaceholder?: string | undefined;
|
|
6489
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6490
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6491
|
+
}[] | undefined;
|
|
5891
6492
|
}, {
|
|
5892
6493
|
defaultParamsEndpoint?: string | undefined;
|
|
5893
|
-
paramDefinitions?:
|
|
6494
|
+
paramDefinitions?: {
|
|
6495
|
+
key: string;
|
|
6496
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6497
|
+
options?: string[] | undefined;
|
|
6498
|
+
type?: SettingTypes | undefined;
|
|
6499
|
+
description?: string | undefined;
|
|
6500
|
+
placeholder?: string | undefined;
|
|
6501
|
+
label?: string | undefined;
|
|
6502
|
+
showLabel?: boolean | undefined;
|
|
6503
|
+
showDefault?: boolean | undefined;
|
|
6504
|
+
range?: {
|
|
6505
|
+
min: number;
|
|
6506
|
+
max: number;
|
|
6507
|
+
step?: number | undefined;
|
|
6508
|
+
} | undefined;
|
|
6509
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6510
|
+
component?: ComponentTypes | undefined;
|
|
6511
|
+
optionType?: OptionTypes | undefined;
|
|
6512
|
+
columnSpan?: number | undefined;
|
|
6513
|
+
columns?: number | undefined;
|
|
6514
|
+
labelCode?: boolean | undefined;
|
|
6515
|
+
placeholderCode?: boolean | undefined;
|
|
6516
|
+
descriptionCode?: boolean | undefined;
|
|
6517
|
+
minText?: number | undefined;
|
|
6518
|
+
maxText?: number | undefined;
|
|
6519
|
+
minTags?: number | undefined;
|
|
6520
|
+
maxTags?: number | undefined;
|
|
6521
|
+
includeInput?: boolean | undefined;
|
|
6522
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6523
|
+
searchPlaceholder?: string | undefined;
|
|
6524
|
+
selectPlaceholder?: string | undefined;
|
|
6525
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6526
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6527
|
+
}[] | undefined;
|
|
5894
6528
|
}>>>;
|
|
5895
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5896
6529
|
directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5897
|
-
titleMessageRole: z.ZodOptional<z.ZodOptional<z.
|
|
6530
|
+
titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodEnum<["system", "user", "assistant"]>>>;
|
|
5898
6531
|
}, "strip", z.ZodTypeAny, {
|
|
5899
6532
|
iconURL?: string | undefined;
|
|
5900
6533
|
apiKey?: string | undefined;
|
|
5901
6534
|
baseURL?: string | undefined;
|
|
5902
|
-
headers?: Record<string,
|
|
6535
|
+
headers?: Record<string, string> | undefined;
|
|
5903
6536
|
name?: string | undefined;
|
|
5904
6537
|
streamRate?: number | undefined;
|
|
5905
6538
|
titlePrompt?: string | undefined;
|
|
@@ -5917,23 +6550,53 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5917
6550
|
fetch?: boolean | undefined;
|
|
5918
6551
|
userIdQuery?: boolean | undefined;
|
|
5919
6552
|
} | undefined;
|
|
5920
|
-
addParams?: Record<string,
|
|
6553
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
5921
6554
|
dropParams?: string[] | undefined;
|
|
5922
|
-
summarize?: boolean | undefined;
|
|
5923
|
-
summaryModel?: string | undefined;
|
|
5924
6555
|
modelDisplayLabel?: string | undefined;
|
|
5925
6556
|
customParams?: {
|
|
5926
6557
|
defaultParamsEndpoint: string;
|
|
5927
|
-
paramDefinitions?:
|
|
6558
|
+
paramDefinitions?: {
|
|
6559
|
+
key: string;
|
|
6560
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6561
|
+
options?: string[] | undefined;
|
|
6562
|
+
type?: SettingTypes | undefined;
|
|
6563
|
+
description?: string | undefined;
|
|
6564
|
+
placeholder?: string | undefined;
|
|
6565
|
+
label?: string | undefined;
|
|
6566
|
+
showLabel?: boolean | undefined;
|
|
6567
|
+
showDefault?: boolean | undefined;
|
|
6568
|
+
range?: {
|
|
6569
|
+
min: number;
|
|
6570
|
+
max: number;
|
|
6571
|
+
step?: number | undefined;
|
|
6572
|
+
} | undefined;
|
|
6573
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6574
|
+
component?: ComponentTypes | undefined;
|
|
6575
|
+
optionType?: OptionTypes | undefined;
|
|
6576
|
+
columnSpan?: number | undefined;
|
|
6577
|
+
columns?: number | undefined;
|
|
6578
|
+
labelCode?: boolean | undefined;
|
|
6579
|
+
placeholderCode?: boolean | undefined;
|
|
6580
|
+
descriptionCode?: boolean | undefined;
|
|
6581
|
+
minText?: number | undefined;
|
|
6582
|
+
maxText?: number | undefined;
|
|
6583
|
+
minTags?: number | undefined;
|
|
6584
|
+
maxTags?: number | undefined;
|
|
6585
|
+
includeInput?: boolean | undefined;
|
|
6586
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6587
|
+
searchPlaceholder?: string | undefined;
|
|
6588
|
+
selectPlaceholder?: string | undefined;
|
|
6589
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6590
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6591
|
+
}[] | undefined;
|
|
5928
6592
|
} | undefined;
|
|
5929
|
-
customOrder?: number | undefined;
|
|
5930
6593
|
directEndpoint?: boolean | undefined;
|
|
5931
|
-
titleMessageRole?:
|
|
6594
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
5932
6595
|
}, {
|
|
5933
6596
|
iconURL?: string | undefined;
|
|
5934
6597
|
apiKey?: string | undefined;
|
|
5935
6598
|
baseURL?: string | undefined;
|
|
5936
|
-
headers?: Record<string,
|
|
6599
|
+
headers?: Record<string, string> | undefined;
|
|
5937
6600
|
name?: string | undefined;
|
|
5938
6601
|
streamRate?: number | undefined;
|
|
5939
6602
|
titlePrompt?: string | undefined;
|
|
@@ -5951,18 +6614,48 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5951
6614
|
fetch?: boolean | undefined;
|
|
5952
6615
|
userIdQuery?: boolean | undefined;
|
|
5953
6616
|
} | undefined;
|
|
5954
|
-
addParams?: Record<string,
|
|
6617
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
5955
6618
|
dropParams?: string[] | undefined;
|
|
5956
|
-
summarize?: boolean | undefined;
|
|
5957
|
-
summaryModel?: string | undefined;
|
|
5958
6619
|
modelDisplayLabel?: string | undefined;
|
|
5959
6620
|
customParams?: {
|
|
5960
6621
|
defaultParamsEndpoint?: string | undefined;
|
|
5961
|
-
paramDefinitions?:
|
|
6622
|
+
paramDefinitions?: {
|
|
6623
|
+
key: string;
|
|
6624
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6625
|
+
options?: string[] | undefined;
|
|
6626
|
+
type?: SettingTypes | undefined;
|
|
6627
|
+
description?: string | undefined;
|
|
6628
|
+
placeholder?: string | undefined;
|
|
6629
|
+
label?: string | undefined;
|
|
6630
|
+
showLabel?: boolean | undefined;
|
|
6631
|
+
showDefault?: boolean | undefined;
|
|
6632
|
+
range?: {
|
|
6633
|
+
min: number;
|
|
6634
|
+
max: number;
|
|
6635
|
+
step?: number | undefined;
|
|
6636
|
+
} | undefined;
|
|
6637
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6638
|
+
component?: ComponentTypes | undefined;
|
|
6639
|
+
optionType?: OptionTypes | undefined;
|
|
6640
|
+
columnSpan?: number | undefined;
|
|
6641
|
+
columns?: number | undefined;
|
|
6642
|
+
labelCode?: boolean | undefined;
|
|
6643
|
+
placeholderCode?: boolean | undefined;
|
|
6644
|
+
descriptionCode?: boolean | undefined;
|
|
6645
|
+
minText?: number | undefined;
|
|
6646
|
+
maxText?: number | undefined;
|
|
6647
|
+
minTags?: number | undefined;
|
|
6648
|
+
maxTags?: number | undefined;
|
|
6649
|
+
includeInput?: boolean | undefined;
|
|
6650
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6651
|
+
searchPlaceholder?: string | undefined;
|
|
6652
|
+
selectPlaceholder?: string | undefined;
|
|
6653
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6654
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6655
|
+
}[] | undefined;
|
|
5962
6656
|
} | undefined;
|
|
5963
|
-
customOrder?: number | undefined;
|
|
5964
6657
|
directEndpoint?: boolean | undefined;
|
|
5965
|
-
titleMessageRole?:
|
|
6658
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
5966
6659
|
}>, "many">>>;
|
|
5967
6660
|
bedrock: z.ZodOptional<z.ZodObject<{
|
|
5968
6661
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6023,12 +6716,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6023
6716
|
deploymentName?: string | undefined;
|
|
6024
6717
|
assistants?: boolean | undefined;
|
|
6025
6718
|
serverless?: boolean | undefined;
|
|
6026
|
-
addParams?: Record<string,
|
|
6719
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6027
6720
|
dropParams?: string[] | undefined;
|
|
6028
|
-
additionalHeaders?: Record<string,
|
|
6721
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
6029
6722
|
})[];
|
|
6030
6723
|
assistants?: boolean | undefined;
|
|
6031
|
-
plugins?: boolean | undefined;
|
|
6032
6724
|
} & {
|
|
6033
6725
|
streamRate?: number | undefined;
|
|
6034
6726
|
titlePrompt?: string | undefined;
|
|
@@ -6036,9 +6728,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6036
6728
|
titleConvo?: boolean | undefined;
|
|
6037
6729
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
6038
6730
|
titlePromptTemplate?: string | undefined;
|
|
6039
|
-
summarize?: boolean | undefined;
|
|
6040
|
-
summaryModel?: string | undefined;
|
|
6041
|
-
customOrder?: number | undefined;
|
|
6042
6731
|
}) | undefined;
|
|
6043
6732
|
openAI?: {
|
|
6044
6733
|
baseURL?: string | undefined;
|
|
@@ -6090,7 +6779,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6090
6779
|
capabilities: Capabilities[];
|
|
6091
6780
|
apiKey?: string | undefined;
|
|
6092
6781
|
baseURL?: string | undefined;
|
|
6093
|
-
headers?: Record<string,
|
|
6782
|
+
headers?: Record<string, string> | undefined;
|
|
6094
6783
|
streamRate?: number | undefined;
|
|
6095
6784
|
titlePrompt?: string | undefined;
|
|
6096
6785
|
titleModel?: string | undefined;
|
|
@@ -6120,7 +6809,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6120
6809
|
capabilities: Capabilities[];
|
|
6121
6810
|
apiKey?: string | undefined;
|
|
6122
6811
|
baseURL?: string | undefined;
|
|
6123
|
-
headers?: Record<string,
|
|
6812
|
+
headers?: Record<string, string> | undefined;
|
|
6124
6813
|
streamRate?: number | undefined;
|
|
6125
6814
|
titlePrompt?: string | undefined;
|
|
6126
6815
|
titleModel?: string | undefined;
|
|
@@ -6150,7 +6839,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6150
6839
|
maxCitations: number;
|
|
6151
6840
|
maxCitationsPerFile: number;
|
|
6152
6841
|
minRelevanceScore: number;
|
|
6153
|
-
baseURL?: string | undefined;
|
|
6154
6842
|
streamRate?: number | undefined;
|
|
6155
6843
|
titlePrompt?: string | undefined;
|
|
6156
6844
|
titleModel?: string | undefined;
|
|
@@ -6167,7 +6855,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6167
6855
|
iconURL?: string | undefined;
|
|
6168
6856
|
apiKey?: string | undefined;
|
|
6169
6857
|
baseURL?: string | undefined;
|
|
6170
|
-
headers?: Record<string,
|
|
6858
|
+
headers?: Record<string, string> | undefined;
|
|
6171
6859
|
name?: string | undefined;
|
|
6172
6860
|
streamRate?: number | undefined;
|
|
6173
6861
|
titlePrompt?: string | undefined;
|
|
@@ -6185,18 +6873,48 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6185
6873
|
fetch?: boolean | undefined;
|
|
6186
6874
|
userIdQuery?: boolean | undefined;
|
|
6187
6875
|
} | undefined;
|
|
6188
|
-
addParams?: Record<string,
|
|
6876
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6189
6877
|
dropParams?: string[] | undefined;
|
|
6190
|
-
summarize?: boolean | undefined;
|
|
6191
|
-
summaryModel?: string | undefined;
|
|
6192
6878
|
modelDisplayLabel?: string | undefined;
|
|
6193
6879
|
customParams?: {
|
|
6194
6880
|
defaultParamsEndpoint: string;
|
|
6195
|
-
paramDefinitions?:
|
|
6881
|
+
paramDefinitions?: {
|
|
6882
|
+
key: string;
|
|
6883
|
+
default?: string | number | boolean | string[] | undefined;
|
|
6884
|
+
options?: string[] | undefined;
|
|
6885
|
+
type?: SettingTypes | undefined;
|
|
6886
|
+
description?: string | undefined;
|
|
6887
|
+
placeholder?: string | undefined;
|
|
6888
|
+
label?: string | undefined;
|
|
6889
|
+
showLabel?: boolean | undefined;
|
|
6890
|
+
showDefault?: boolean | undefined;
|
|
6891
|
+
range?: {
|
|
6892
|
+
min: number;
|
|
6893
|
+
max: number;
|
|
6894
|
+
step?: number | undefined;
|
|
6895
|
+
} | undefined;
|
|
6896
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
6897
|
+
component?: ComponentTypes | undefined;
|
|
6898
|
+
optionType?: OptionTypes | undefined;
|
|
6899
|
+
columnSpan?: number | undefined;
|
|
6900
|
+
columns?: number | undefined;
|
|
6901
|
+
labelCode?: boolean | undefined;
|
|
6902
|
+
placeholderCode?: boolean | undefined;
|
|
6903
|
+
descriptionCode?: boolean | undefined;
|
|
6904
|
+
minText?: number | undefined;
|
|
6905
|
+
maxText?: number | undefined;
|
|
6906
|
+
minTags?: number | undefined;
|
|
6907
|
+
maxTags?: number | undefined;
|
|
6908
|
+
includeInput?: boolean | undefined;
|
|
6909
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
6910
|
+
searchPlaceholder?: string | undefined;
|
|
6911
|
+
selectPlaceholder?: string | undefined;
|
|
6912
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
6913
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
6914
|
+
}[] | undefined;
|
|
6196
6915
|
} | undefined;
|
|
6197
|
-
customOrder?: number | undefined;
|
|
6198
6916
|
directEndpoint?: boolean | undefined;
|
|
6199
|
-
titleMessageRole?:
|
|
6917
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
6200
6918
|
}[] | undefined;
|
|
6201
6919
|
bedrock?: {
|
|
6202
6920
|
baseURL?: string | undefined;
|
|
@@ -6213,7 +6931,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6213
6931
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
6214
6932
|
} | undefined;
|
|
6215
6933
|
all?: {
|
|
6216
|
-
baseURL?: string | undefined;
|
|
6217
6934
|
streamRate?: number | undefined;
|
|
6218
6935
|
titlePrompt?: string | undefined;
|
|
6219
6936
|
titleModel?: string | undefined;
|
|
@@ -6240,12 +6957,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6240
6957
|
deploymentName?: string | undefined;
|
|
6241
6958
|
assistants?: boolean | undefined;
|
|
6242
6959
|
serverless?: boolean | undefined;
|
|
6243
|
-
addParams?: Record<string,
|
|
6960
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6244
6961
|
dropParams?: string[] | undefined;
|
|
6245
|
-
additionalHeaders?: Record<string,
|
|
6962
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
6246
6963
|
})[];
|
|
6247
6964
|
assistants?: boolean | undefined;
|
|
6248
|
-
plugins?: boolean | undefined;
|
|
6249
6965
|
} & {
|
|
6250
6966
|
streamRate?: number | undefined;
|
|
6251
6967
|
titlePrompt?: string | undefined;
|
|
@@ -6253,9 +6969,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6253
6969
|
titleConvo?: boolean | undefined;
|
|
6254
6970
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
6255
6971
|
titlePromptTemplate?: string | undefined;
|
|
6256
|
-
summarize?: boolean | undefined;
|
|
6257
|
-
summaryModel?: string | undefined;
|
|
6258
|
-
customOrder?: number | undefined;
|
|
6259
6972
|
}) | undefined;
|
|
6260
6973
|
openAI?: {
|
|
6261
6974
|
baseURL?: string | undefined;
|
|
@@ -6305,7 +7018,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6305
7018
|
version?: string | number | undefined;
|
|
6306
7019
|
apiKey?: string | undefined;
|
|
6307
7020
|
baseURL?: string | undefined;
|
|
6308
|
-
headers?: Record<string,
|
|
7021
|
+
headers?: Record<string, string> | undefined;
|
|
6309
7022
|
streamRate?: number | undefined;
|
|
6310
7023
|
titlePrompt?: string | undefined;
|
|
6311
7024
|
titleModel?: string | undefined;
|
|
@@ -6335,7 +7048,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6335
7048
|
version?: string | number | undefined;
|
|
6336
7049
|
apiKey?: string | undefined;
|
|
6337
7050
|
baseURL?: string | undefined;
|
|
6338
|
-
headers?: Record<string,
|
|
7051
|
+
headers?: Record<string, string> | undefined;
|
|
6339
7052
|
streamRate?: number | undefined;
|
|
6340
7053
|
titlePrompt?: string | undefined;
|
|
6341
7054
|
titleModel?: string | undefined;
|
|
@@ -6362,7 +7075,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6362
7075
|
capabilities?: Capabilities[] | undefined;
|
|
6363
7076
|
} | undefined;
|
|
6364
7077
|
agents?: {
|
|
6365
|
-
baseURL?: string | undefined;
|
|
6366
7078
|
streamRate?: number | undefined;
|
|
6367
7079
|
titlePrompt?: string | undefined;
|
|
6368
7080
|
titleModel?: string | undefined;
|
|
@@ -6384,7 +7096,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6384
7096
|
iconURL?: string | undefined;
|
|
6385
7097
|
apiKey?: string | undefined;
|
|
6386
7098
|
baseURL?: string | undefined;
|
|
6387
|
-
headers?: Record<string,
|
|
7099
|
+
headers?: Record<string, string> | undefined;
|
|
6388
7100
|
name?: string | undefined;
|
|
6389
7101
|
streamRate?: number | undefined;
|
|
6390
7102
|
titlePrompt?: string | undefined;
|
|
@@ -6402,18 +7114,48 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6402
7114
|
fetch?: boolean | undefined;
|
|
6403
7115
|
userIdQuery?: boolean | undefined;
|
|
6404
7116
|
} | undefined;
|
|
6405
|
-
addParams?: Record<string,
|
|
7117
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6406
7118
|
dropParams?: string[] | undefined;
|
|
6407
|
-
summarize?: boolean | undefined;
|
|
6408
|
-
summaryModel?: string | undefined;
|
|
6409
7119
|
modelDisplayLabel?: string | undefined;
|
|
6410
7120
|
customParams?: {
|
|
6411
7121
|
defaultParamsEndpoint?: string | undefined;
|
|
6412
|
-
paramDefinitions?:
|
|
7122
|
+
paramDefinitions?: {
|
|
7123
|
+
key: string;
|
|
7124
|
+
default?: string | number | boolean | string[] | undefined;
|
|
7125
|
+
options?: string[] | undefined;
|
|
7126
|
+
type?: SettingTypes | undefined;
|
|
7127
|
+
description?: string | undefined;
|
|
7128
|
+
placeholder?: string | undefined;
|
|
7129
|
+
label?: string | undefined;
|
|
7130
|
+
showLabel?: boolean | undefined;
|
|
7131
|
+
showDefault?: boolean | undefined;
|
|
7132
|
+
range?: {
|
|
7133
|
+
min: number;
|
|
7134
|
+
max: number;
|
|
7135
|
+
step?: number | undefined;
|
|
7136
|
+
} | undefined;
|
|
7137
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
7138
|
+
component?: ComponentTypes | undefined;
|
|
7139
|
+
optionType?: OptionTypes | undefined;
|
|
7140
|
+
columnSpan?: number | undefined;
|
|
7141
|
+
columns?: number | undefined;
|
|
7142
|
+
labelCode?: boolean | undefined;
|
|
7143
|
+
placeholderCode?: boolean | undefined;
|
|
7144
|
+
descriptionCode?: boolean | undefined;
|
|
7145
|
+
minText?: number | undefined;
|
|
7146
|
+
maxText?: number | undefined;
|
|
7147
|
+
minTags?: number | undefined;
|
|
7148
|
+
maxTags?: number | undefined;
|
|
7149
|
+
includeInput?: boolean | undefined;
|
|
7150
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
7151
|
+
searchPlaceholder?: string | undefined;
|
|
7152
|
+
selectPlaceholder?: string | undefined;
|
|
7153
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
7154
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
7155
|
+
}[] | undefined;
|
|
6413
7156
|
} | undefined;
|
|
6414
|
-
customOrder?: number | undefined;
|
|
6415
7157
|
directEndpoint?: boolean | undefined;
|
|
6416
|
-
titleMessageRole?:
|
|
7158
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
6417
7159
|
}[] | undefined;
|
|
6418
7160
|
bedrock?: {
|
|
6419
7161
|
baseURL?: string | undefined;
|
|
@@ -6430,7 +7172,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6430
7172
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
6431
7173
|
} | undefined;
|
|
6432
7174
|
all?: {
|
|
6433
|
-
baseURL?: string | undefined;
|
|
6434
7175
|
streamRate?: number | undefined;
|
|
6435
7176
|
titlePrompt?: string | undefined;
|
|
6436
7177
|
titleModel?: string | undefined;
|
|
@@ -6457,12 +7198,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6457
7198
|
deploymentName?: string | undefined;
|
|
6458
7199
|
assistants?: boolean | undefined;
|
|
6459
7200
|
serverless?: boolean | undefined;
|
|
6460
|
-
addParams?: Record<string,
|
|
7201
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6461
7202
|
dropParams?: string[] | undefined;
|
|
6462
|
-
additionalHeaders?: Record<string,
|
|
7203
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
6463
7204
|
})[];
|
|
6464
7205
|
assistants?: boolean | undefined;
|
|
6465
|
-
plugins?: boolean | undefined;
|
|
6466
7206
|
} & {
|
|
6467
7207
|
streamRate?: number | undefined;
|
|
6468
7208
|
titlePrompt?: string | undefined;
|
|
@@ -6470,9 +7210,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6470
7210
|
titleConvo?: boolean | undefined;
|
|
6471
7211
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
6472
7212
|
titlePromptTemplate?: string | undefined;
|
|
6473
|
-
summarize?: boolean | undefined;
|
|
6474
|
-
summaryModel?: string | undefined;
|
|
6475
|
-
customOrder?: number | undefined;
|
|
6476
7213
|
}) | undefined;
|
|
6477
7214
|
openAI?: {
|
|
6478
7215
|
baseURL?: string | undefined;
|
|
@@ -6524,7 +7261,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6524
7261
|
capabilities: Capabilities[];
|
|
6525
7262
|
apiKey?: string | undefined;
|
|
6526
7263
|
baseURL?: string | undefined;
|
|
6527
|
-
headers?: Record<string,
|
|
7264
|
+
headers?: Record<string, string> | undefined;
|
|
6528
7265
|
streamRate?: number | undefined;
|
|
6529
7266
|
titlePrompt?: string | undefined;
|
|
6530
7267
|
titleModel?: string | undefined;
|
|
@@ -6554,7 +7291,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6554
7291
|
capabilities: Capabilities[];
|
|
6555
7292
|
apiKey?: string | undefined;
|
|
6556
7293
|
baseURL?: string | undefined;
|
|
6557
|
-
headers?: Record<string,
|
|
7294
|
+
headers?: Record<string, string> | undefined;
|
|
6558
7295
|
streamRate?: number | undefined;
|
|
6559
7296
|
titlePrompt?: string | undefined;
|
|
6560
7297
|
titleModel?: string | undefined;
|
|
@@ -6584,7 +7321,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6584
7321
|
maxCitations: number;
|
|
6585
7322
|
maxCitationsPerFile: number;
|
|
6586
7323
|
minRelevanceScore: number;
|
|
6587
|
-
baseURL?: string | undefined;
|
|
6588
7324
|
streamRate?: number | undefined;
|
|
6589
7325
|
titlePrompt?: string | undefined;
|
|
6590
7326
|
titleModel?: string | undefined;
|
|
@@ -6601,7 +7337,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6601
7337
|
iconURL?: string | undefined;
|
|
6602
7338
|
apiKey?: string | undefined;
|
|
6603
7339
|
baseURL?: string | undefined;
|
|
6604
|
-
headers?: Record<string,
|
|
7340
|
+
headers?: Record<string, string> | undefined;
|
|
6605
7341
|
name?: string | undefined;
|
|
6606
7342
|
streamRate?: number | undefined;
|
|
6607
7343
|
titlePrompt?: string | undefined;
|
|
@@ -6619,18 +7355,48 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6619
7355
|
fetch?: boolean | undefined;
|
|
6620
7356
|
userIdQuery?: boolean | undefined;
|
|
6621
7357
|
} | undefined;
|
|
6622
|
-
addParams?: Record<string,
|
|
7358
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6623
7359
|
dropParams?: string[] | undefined;
|
|
6624
|
-
summarize?: boolean | undefined;
|
|
6625
|
-
summaryModel?: string | undefined;
|
|
6626
7360
|
modelDisplayLabel?: string | undefined;
|
|
6627
7361
|
customParams?: {
|
|
6628
7362
|
defaultParamsEndpoint: string;
|
|
6629
|
-
paramDefinitions?:
|
|
7363
|
+
paramDefinitions?: {
|
|
7364
|
+
key: string;
|
|
7365
|
+
default?: string | number | boolean | string[] | undefined;
|
|
7366
|
+
options?: string[] | undefined;
|
|
7367
|
+
type?: SettingTypes | undefined;
|
|
7368
|
+
description?: string | undefined;
|
|
7369
|
+
placeholder?: string | undefined;
|
|
7370
|
+
label?: string | undefined;
|
|
7371
|
+
showLabel?: boolean | undefined;
|
|
7372
|
+
showDefault?: boolean | undefined;
|
|
7373
|
+
range?: {
|
|
7374
|
+
min: number;
|
|
7375
|
+
max: number;
|
|
7376
|
+
step?: number | undefined;
|
|
7377
|
+
} | undefined;
|
|
7378
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
7379
|
+
component?: ComponentTypes | undefined;
|
|
7380
|
+
optionType?: OptionTypes | undefined;
|
|
7381
|
+
columnSpan?: number | undefined;
|
|
7382
|
+
columns?: number | undefined;
|
|
7383
|
+
labelCode?: boolean | undefined;
|
|
7384
|
+
placeholderCode?: boolean | undefined;
|
|
7385
|
+
descriptionCode?: boolean | undefined;
|
|
7386
|
+
minText?: number | undefined;
|
|
7387
|
+
maxText?: number | undefined;
|
|
7388
|
+
minTags?: number | undefined;
|
|
7389
|
+
maxTags?: number | undefined;
|
|
7390
|
+
includeInput?: boolean | undefined;
|
|
7391
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
7392
|
+
searchPlaceholder?: string | undefined;
|
|
7393
|
+
selectPlaceholder?: string | undefined;
|
|
7394
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
7395
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
7396
|
+
}[] | undefined;
|
|
6630
7397
|
} | undefined;
|
|
6631
|
-
customOrder?: number | undefined;
|
|
6632
7398
|
directEndpoint?: boolean | undefined;
|
|
6633
|
-
titleMessageRole?:
|
|
7399
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
6634
7400
|
}[] | undefined;
|
|
6635
7401
|
bedrock?: {
|
|
6636
7402
|
baseURL?: string | undefined;
|
|
@@ -6647,7 +7413,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6647
7413
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
6648
7414
|
} | undefined;
|
|
6649
7415
|
all?: {
|
|
6650
|
-
baseURL?: string | undefined;
|
|
6651
7416
|
streamRate?: number | undefined;
|
|
6652
7417
|
titlePrompt?: string | undefined;
|
|
6653
7418
|
titleModel?: string | undefined;
|
|
@@ -6674,12 +7439,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6674
7439
|
deploymentName?: string | undefined;
|
|
6675
7440
|
assistants?: boolean | undefined;
|
|
6676
7441
|
serverless?: boolean | undefined;
|
|
6677
|
-
addParams?: Record<string,
|
|
7442
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6678
7443
|
dropParams?: string[] | undefined;
|
|
6679
|
-
additionalHeaders?: Record<string,
|
|
7444
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
6680
7445
|
})[];
|
|
6681
7446
|
assistants?: boolean | undefined;
|
|
6682
|
-
plugins?: boolean | undefined;
|
|
6683
7447
|
} & {
|
|
6684
7448
|
streamRate?: number | undefined;
|
|
6685
7449
|
titlePrompt?: string | undefined;
|
|
@@ -6687,9 +7451,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6687
7451
|
titleConvo?: boolean | undefined;
|
|
6688
7452
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
6689
7453
|
titlePromptTemplate?: string | undefined;
|
|
6690
|
-
summarize?: boolean | undefined;
|
|
6691
|
-
summaryModel?: string | undefined;
|
|
6692
|
-
customOrder?: number | undefined;
|
|
6693
7454
|
}) | undefined;
|
|
6694
7455
|
openAI?: {
|
|
6695
7456
|
baseURL?: string | undefined;
|
|
@@ -6739,7 +7500,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6739
7500
|
version?: string | number | undefined;
|
|
6740
7501
|
apiKey?: string | undefined;
|
|
6741
7502
|
baseURL?: string | undefined;
|
|
6742
|
-
headers?: Record<string,
|
|
7503
|
+
headers?: Record<string, string> | undefined;
|
|
6743
7504
|
streamRate?: number | undefined;
|
|
6744
7505
|
titlePrompt?: string | undefined;
|
|
6745
7506
|
titleModel?: string | undefined;
|
|
@@ -6769,7 +7530,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6769
7530
|
version?: string | number | undefined;
|
|
6770
7531
|
apiKey?: string | undefined;
|
|
6771
7532
|
baseURL?: string | undefined;
|
|
6772
|
-
headers?: Record<string,
|
|
7533
|
+
headers?: Record<string, string> | undefined;
|
|
6773
7534
|
streamRate?: number | undefined;
|
|
6774
7535
|
titlePrompt?: string | undefined;
|
|
6775
7536
|
titleModel?: string | undefined;
|
|
@@ -6796,7 +7557,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6796
7557
|
capabilities?: Capabilities[] | undefined;
|
|
6797
7558
|
} | undefined;
|
|
6798
7559
|
agents?: {
|
|
6799
|
-
baseURL?: string | undefined;
|
|
6800
7560
|
streamRate?: number | undefined;
|
|
6801
7561
|
titlePrompt?: string | undefined;
|
|
6802
7562
|
titleModel?: string | undefined;
|
|
@@ -6818,7 +7578,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6818
7578
|
iconURL?: string | undefined;
|
|
6819
7579
|
apiKey?: string | undefined;
|
|
6820
7580
|
baseURL?: string | undefined;
|
|
6821
|
-
headers?: Record<string,
|
|
7581
|
+
headers?: Record<string, string> | undefined;
|
|
6822
7582
|
name?: string | undefined;
|
|
6823
7583
|
streamRate?: number | undefined;
|
|
6824
7584
|
titlePrompt?: string | undefined;
|
|
@@ -6836,18 +7596,48 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6836
7596
|
fetch?: boolean | undefined;
|
|
6837
7597
|
userIdQuery?: boolean | undefined;
|
|
6838
7598
|
} | undefined;
|
|
6839
|
-
addParams?: Record<string,
|
|
7599
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
6840
7600
|
dropParams?: string[] | undefined;
|
|
6841
|
-
summarize?: boolean | undefined;
|
|
6842
|
-
summaryModel?: string | undefined;
|
|
6843
7601
|
modelDisplayLabel?: string | undefined;
|
|
6844
7602
|
customParams?: {
|
|
6845
7603
|
defaultParamsEndpoint?: string | undefined;
|
|
6846
|
-
paramDefinitions?:
|
|
7604
|
+
paramDefinitions?: {
|
|
7605
|
+
key: string;
|
|
7606
|
+
default?: string | number | boolean | string[] | undefined;
|
|
7607
|
+
options?: string[] | undefined;
|
|
7608
|
+
type?: SettingTypes | undefined;
|
|
7609
|
+
description?: string | undefined;
|
|
7610
|
+
placeholder?: string | undefined;
|
|
7611
|
+
label?: string | undefined;
|
|
7612
|
+
showLabel?: boolean | undefined;
|
|
7613
|
+
showDefault?: boolean | undefined;
|
|
7614
|
+
range?: {
|
|
7615
|
+
min: number;
|
|
7616
|
+
max: number;
|
|
7617
|
+
step?: number | undefined;
|
|
7618
|
+
} | undefined;
|
|
7619
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
7620
|
+
component?: ComponentTypes | undefined;
|
|
7621
|
+
optionType?: OptionTypes | undefined;
|
|
7622
|
+
columnSpan?: number | undefined;
|
|
7623
|
+
columns?: number | undefined;
|
|
7624
|
+
labelCode?: boolean | undefined;
|
|
7625
|
+
placeholderCode?: boolean | undefined;
|
|
7626
|
+
descriptionCode?: boolean | undefined;
|
|
7627
|
+
minText?: number | undefined;
|
|
7628
|
+
maxText?: number | undefined;
|
|
7629
|
+
minTags?: number | undefined;
|
|
7630
|
+
maxTags?: number | undefined;
|
|
7631
|
+
includeInput?: boolean | undefined;
|
|
7632
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
7633
|
+
searchPlaceholder?: string | undefined;
|
|
7634
|
+
selectPlaceholder?: string | undefined;
|
|
7635
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
7636
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
7637
|
+
}[] | undefined;
|
|
6847
7638
|
} | undefined;
|
|
6848
|
-
customOrder?: number | undefined;
|
|
6849
7639
|
directEndpoint?: boolean | undefined;
|
|
6850
|
-
titleMessageRole?:
|
|
7640
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
6851
7641
|
}[] | undefined;
|
|
6852
7642
|
bedrock?: {
|
|
6853
7643
|
baseURL?: string | undefined;
|
|
@@ -6864,7 +7654,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6864
7654
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
6865
7655
|
} | undefined;
|
|
6866
7656
|
all?: {
|
|
6867
|
-
baseURL?: string | undefined;
|
|
6868
7657
|
streamRate?: number | undefined;
|
|
6869
7658
|
titlePrompt?: string | undefined;
|
|
6870
7659
|
titleModel?: string | undefined;
|
|
@@ -7011,7 +7800,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7011
7800
|
model: string;
|
|
7012
7801
|
provider: string;
|
|
7013
7802
|
instructions?: string | undefined;
|
|
7014
|
-
model_parameters?: Record<string,
|
|
7803
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
7015
7804
|
} | undefined;
|
|
7016
7805
|
} | undefined;
|
|
7017
7806
|
summarization?: {
|
|
@@ -7039,10 +7828,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7039
7828
|
includedTools?: string[] | undefined;
|
|
7040
7829
|
filteredTools?: string[] | undefined;
|
|
7041
7830
|
mcpServers?: Record<string, {
|
|
7831
|
+
type: "stdio";
|
|
7042
7832
|
command: string;
|
|
7043
7833
|
args: string[];
|
|
7044
7834
|
title?: string | undefined;
|
|
7045
|
-
type?: "stdio" | undefined;
|
|
7046
7835
|
description?: string | undefined;
|
|
7047
7836
|
apiKey?: {
|
|
7048
7837
|
source: "user" | "admin";
|
|
@@ -7080,11 +7869,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7080
7869
|
description: string;
|
|
7081
7870
|
}> | undefined;
|
|
7082
7871
|
env?: Record<string, string> | undefined;
|
|
7083
|
-
stderr?:
|
|
7872
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
7084
7873
|
} | {
|
|
7874
|
+
type: "websocket";
|
|
7085
7875
|
url: string;
|
|
7086
7876
|
title?: string | undefined;
|
|
7087
|
-
type?: "websocket" | undefined;
|
|
7088
7877
|
description?: string | undefined;
|
|
7089
7878
|
apiKey?: {
|
|
7090
7879
|
source: "user" | "admin";
|
|
@@ -7122,9 +7911,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7122
7911
|
description: string;
|
|
7123
7912
|
}> | undefined;
|
|
7124
7913
|
} | {
|
|
7914
|
+
type: "sse";
|
|
7125
7915
|
url: string;
|
|
7126
7916
|
title?: string | undefined;
|
|
7127
|
-
type?: "sse" | undefined;
|
|
7128
7917
|
description?: string | undefined;
|
|
7129
7918
|
apiKey?: {
|
|
7130
7919
|
source: "user" | "admin";
|
|
@@ -7288,14 +8077,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7288
8077
|
conversationMode?: boolean | undefined;
|
|
7289
8078
|
advancedMode?: boolean | undefined;
|
|
7290
8079
|
speechToText?: boolean | {
|
|
7291
|
-
engineSTT?:
|
|
8080
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
7292
8081
|
languageSTT?: string | undefined;
|
|
7293
8082
|
autoTranscribeAudio?: boolean | undefined;
|
|
7294
8083
|
decibelValue?: number | undefined;
|
|
7295
8084
|
autoSendText?: number | undefined;
|
|
7296
8085
|
} | undefined;
|
|
7297
8086
|
textToSpeech?: boolean | {
|
|
7298
|
-
engineTTS?:
|
|
8087
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
7299
8088
|
voice?: string | undefined;
|
|
7300
8089
|
languageTTS?: string | undefined;
|
|
7301
8090
|
automaticPlayback?: boolean | undefined;
|
|
@@ -7347,12 +8136,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7347
8136
|
deploymentName?: string | undefined;
|
|
7348
8137
|
assistants?: boolean | undefined;
|
|
7349
8138
|
serverless?: boolean | undefined;
|
|
7350
|
-
addParams?: Record<string,
|
|
8139
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
7351
8140
|
dropParams?: string[] | undefined;
|
|
7352
|
-
additionalHeaders?: Record<string,
|
|
8141
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
7353
8142
|
})[];
|
|
7354
8143
|
assistants?: boolean | undefined;
|
|
7355
|
-
plugins?: boolean | undefined;
|
|
7356
8144
|
} & {
|
|
7357
8145
|
streamRate?: number | undefined;
|
|
7358
8146
|
titlePrompt?: string | undefined;
|
|
@@ -7360,9 +8148,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7360
8148
|
titleConvo?: boolean | undefined;
|
|
7361
8149
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
7362
8150
|
titlePromptTemplate?: string | undefined;
|
|
7363
|
-
summarize?: boolean | undefined;
|
|
7364
|
-
summaryModel?: string | undefined;
|
|
7365
|
-
customOrder?: number | undefined;
|
|
7366
8151
|
}) | undefined;
|
|
7367
8152
|
openAI?: {
|
|
7368
8153
|
baseURL?: string | undefined;
|
|
@@ -7414,7 +8199,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7414
8199
|
capabilities: Capabilities[];
|
|
7415
8200
|
apiKey?: string | undefined;
|
|
7416
8201
|
baseURL?: string | undefined;
|
|
7417
|
-
headers?: Record<string,
|
|
8202
|
+
headers?: Record<string, string> | undefined;
|
|
7418
8203
|
streamRate?: number | undefined;
|
|
7419
8204
|
titlePrompt?: string | undefined;
|
|
7420
8205
|
titleModel?: string | undefined;
|
|
@@ -7444,7 +8229,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7444
8229
|
capabilities: Capabilities[];
|
|
7445
8230
|
apiKey?: string | undefined;
|
|
7446
8231
|
baseURL?: string | undefined;
|
|
7447
|
-
headers?: Record<string,
|
|
8232
|
+
headers?: Record<string, string> | undefined;
|
|
7448
8233
|
streamRate?: number | undefined;
|
|
7449
8234
|
titlePrompt?: string | undefined;
|
|
7450
8235
|
titleModel?: string | undefined;
|
|
@@ -7474,7 +8259,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7474
8259
|
maxCitations: number;
|
|
7475
8260
|
maxCitationsPerFile: number;
|
|
7476
8261
|
minRelevanceScore: number;
|
|
7477
|
-
baseURL?: string | undefined;
|
|
7478
8262
|
streamRate?: number | undefined;
|
|
7479
8263
|
titlePrompt?: string | undefined;
|
|
7480
8264
|
titleModel?: string | undefined;
|
|
@@ -7491,7 +8275,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7491
8275
|
iconURL?: string | undefined;
|
|
7492
8276
|
apiKey?: string | undefined;
|
|
7493
8277
|
baseURL?: string | undefined;
|
|
7494
|
-
headers?: Record<string,
|
|
8278
|
+
headers?: Record<string, string> | undefined;
|
|
7495
8279
|
name?: string | undefined;
|
|
7496
8280
|
streamRate?: number | undefined;
|
|
7497
8281
|
titlePrompt?: string | undefined;
|
|
@@ -7509,18 +8293,48 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7509
8293
|
fetch?: boolean | undefined;
|
|
7510
8294
|
userIdQuery?: boolean | undefined;
|
|
7511
8295
|
} | undefined;
|
|
7512
|
-
addParams?: Record<string,
|
|
8296
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
7513
8297
|
dropParams?: string[] | undefined;
|
|
7514
|
-
summarize?: boolean | undefined;
|
|
7515
|
-
summaryModel?: string | undefined;
|
|
7516
8298
|
modelDisplayLabel?: string | undefined;
|
|
7517
8299
|
customParams?: {
|
|
7518
8300
|
defaultParamsEndpoint: string;
|
|
7519
|
-
paramDefinitions?:
|
|
8301
|
+
paramDefinitions?: {
|
|
8302
|
+
key: string;
|
|
8303
|
+
default?: string | number | boolean | string[] | undefined;
|
|
8304
|
+
options?: string[] | undefined;
|
|
8305
|
+
type?: SettingTypes | undefined;
|
|
8306
|
+
description?: string | undefined;
|
|
8307
|
+
placeholder?: string | undefined;
|
|
8308
|
+
label?: string | undefined;
|
|
8309
|
+
showLabel?: boolean | undefined;
|
|
8310
|
+
showDefault?: boolean | undefined;
|
|
8311
|
+
range?: {
|
|
8312
|
+
min: number;
|
|
8313
|
+
max: number;
|
|
8314
|
+
step?: number | undefined;
|
|
8315
|
+
} | undefined;
|
|
8316
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
8317
|
+
component?: ComponentTypes | undefined;
|
|
8318
|
+
optionType?: OptionTypes | undefined;
|
|
8319
|
+
columnSpan?: number | undefined;
|
|
8320
|
+
columns?: number | undefined;
|
|
8321
|
+
labelCode?: boolean | undefined;
|
|
8322
|
+
placeholderCode?: boolean | undefined;
|
|
8323
|
+
descriptionCode?: boolean | undefined;
|
|
8324
|
+
minText?: number | undefined;
|
|
8325
|
+
maxText?: number | undefined;
|
|
8326
|
+
minTags?: number | undefined;
|
|
8327
|
+
maxTags?: number | undefined;
|
|
8328
|
+
includeInput?: boolean | undefined;
|
|
8329
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
8330
|
+
searchPlaceholder?: string | undefined;
|
|
8331
|
+
selectPlaceholder?: string | undefined;
|
|
8332
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
8333
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
8334
|
+
}[] | undefined;
|
|
7520
8335
|
} | undefined;
|
|
7521
|
-
customOrder?: number | undefined;
|
|
7522
8336
|
directEndpoint?: boolean | undefined;
|
|
7523
|
-
titleMessageRole?:
|
|
8337
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
7524
8338
|
}[] | undefined;
|
|
7525
8339
|
bedrock?: {
|
|
7526
8340
|
baseURL?: string | undefined;
|
|
@@ -7537,7 +8351,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7537
8351
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
7538
8352
|
} | undefined;
|
|
7539
8353
|
all?: {
|
|
7540
|
-
baseURL?: string | undefined;
|
|
7541
8354
|
streamRate?: number | undefined;
|
|
7542
8355
|
titlePrompt?: string | undefined;
|
|
7543
8356
|
titleModel?: string | undefined;
|
|
@@ -7550,17 +8363,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7550
8363
|
} | undefined;
|
|
7551
8364
|
fileConfig?: {
|
|
7552
8365
|
text?: {
|
|
7553
|
-
supportedMimeTypes?:
|
|
8366
|
+
supportedMimeTypes?: string[] | undefined;
|
|
7554
8367
|
} | undefined;
|
|
7555
8368
|
ocr?: {
|
|
7556
|
-
supportedMimeTypes?:
|
|
8369
|
+
supportedMimeTypes?: string[] | undefined;
|
|
7557
8370
|
} | undefined;
|
|
7558
8371
|
endpoints?: Record<string, {
|
|
7559
8372
|
disabled?: boolean | undefined;
|
|
7560
8373
|
fileLimit?: number | undefined;
|
|
7561
8374
|
fileSizeLimit?: number | undefined;
|
|
7562
8375
|
totalSizeLimit?: number | undefined;
|
|
7563
|
-
supportedMimeTypes?:
|
|
8376
|
+
supportedMimeTypes?: string[] | undefined;
|
|
7564
8377
|
}> | undefined;
|
|
7565
8378
|
serverFileSizeLimit?: number | undefined;
|
|
7566
8379
|
avatarSizeLimit?: number | undefined;
|
|
@@ -7586,14 +8399,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7586
8399
|
endpoint: string | null;
|
|
7587
8400
|
conversationId?: string | null | undefined;
|
|
7588
8401
|
title?: string | null | undefined;
|
|
7589
|
-
iconURL?: string | null | undefined;
|
|
7590
|
-
greeting?: string | undefined;
|
|
7591
8402
|
endpointType?: EModelEndpoint | null | undefined;
|
|
7592
|
-
expiredAt?: string | null | undefined;
|
|
7593
|
-
messages?: string[] | undefined;
|
|
7594
|
-
isArchived?: boolean | undefined;
|
|
7595
|
-
tags?: string[] | undefined;
|
|
7596
|
-
user?: string | undefined;
|
|
7597
8403
|
tools?: string[] | {
|
|
7598
8404
|
name: string;
|
|
7599
8405
|
pluginKey: string;
|
|
@@ -7611,7 +8417,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7611
8417
|
toolkit?: boolean | undefined;
|
|
7612
8418
|
}[] | undefined;
|
|
7613
8419
|
model?: string | null | undefined;
|
|
7614
|
-
spec?: string | null | undefined;
|
|
7615
8420
|
instructions?: string | undefined;
|
|
7616
8421
|
fileTokenLimit?: number | undefined;
|
|
7617
8422
|
modelLabel?: string | null | undefined;
|
|
@@ -7623,7 +8428,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7623
8428
|
top_p?: number | undefined;
|
|
7624
8429
|
frequency_penalty?: number | undefined;
|
|
7625
8430
|
presence_penalty?: number | undefined;
|
|
7626
|
-
parentMessageId?: string | undefined;
|
|
7627
8431
|
maxOutputTokens?: number | null | undefined;
|
|
7628
8432
|
maxContextTokens?: number | undefined;
|
|
7629
8433
|
max_tokens?: number | undefined;
|
|
@@ -7644,7 +8448,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7644
8448
|
};
|
|
7645
8449
|
}[] | undefined;
|
|
7646
8450
|
resendFiles?: boolean | undefined;
|
|
7647
|
-
file_ids?: string[] | undefined;
|
|
7648
8451
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
7649
8452
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
7650
8453
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -7684,10 +8487,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7684
8487
|
} | null) | undefined;
|
|
7685
8488
|
additional_instructions?: string | undefined;
|
|
7686
8489
|
append_current_datetime?: boolean | undefined;
|
|
7687
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
7688
8490
|
stop?: string[] | undefined;
|
|
7689
|
-
resendImages?: boolean | undefined;
|
|
7690
|
-
chatGptLabel?: string | null | undefined;
|
|
7691
8491
|
presetId?: string | null | undefined;
|
|
7692
8492
|
defaultPreset?: boolean | undefined;
|
|
7693
8493
|
order?: number | undefined;
|
|
@@ -7774,7 +8574,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7774
8574
|
model: string;
|
|
7775
8575
|
provider: string;
|
|
7776
8576
|
instructions?: string | undefined;
|
|
7777
|
-
model_parameters?: Record<string,
|
|
8577
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
7778
8578
|
} | undefined;
|
|
7779
8579
|
} | undefined;
|
|
7780
8580
|
summarization?: {
|
|
@@ -7844,7 +8644,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7844
8644
|
description: string;
|
|
7845
8645
|
}> | undefined;
|
|
7846
8646
|
env?: Record<string, string> | undefined;
|
|
7847
|
-
stderr?:
|
|
8647
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
7848
8648
|
} | {
|
|
7849
8649
|
url: string;
|
|
7850
8650
|
title?: string | undefined;
|
|
@@ -8122,14 +8922,14 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8122
8922
|
conversationMode?: boolean | undefined;
|
|
8123
8923
|
advancedMode?: boolean | undefined;
|
|
8124
8924
|
speechToText?: boolean | {
|
|
8125
|
-
engineSTT?:
|
|
8925
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
8126
8926
|
languageSTT?: string | undefined;
|
|
8127
8927
|
autoTranscribeAudio?: boolean | undefined;
|
|
8128
8928
|
decibelValue?: number | undefined;
|
|
8129
8929
|
autoSendText?: number | undefined;
|
|
8130
8930
|
} | undefined;
|
|
8131
8931
|
textToSpeech?: boolean | {
|
|
8132
|
-
engineTTS?:
|
|
8932
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
8133
8933
|
voice?: string | undefined;
|
|
8134
8934
|
languageTTS?: string | undefined;
|
|
8135
8935
|
automaticPlayback?: boolean | undefined;
|
|
@@ -8181,12 +8981,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8181
8981
|
deploymentName?: string | undefined;
|
|
8182
8982
|
assistants?: boolean | undefined;
|
|
8183
8983
|
serverless?: boolean | undefined;
|
|
8184
|
-
addParams?: Record<string,
|
|
8984
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
8185
8985
|
dropParams?: string[] | undefined;
|
|
8186
|
-
additionalHeaders?: Record<string,
|
|
8986
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
8187
8987
|
})[];
|
|
8188
8988
|
assistants?: boolean | undefined;
|
|
8189
|
-
plugins?: boolean | undefined;
|
|
8190
8989
|
} & {
|
|
8191
8990
|
streamRate?: number | undefined;
|
|
8192
8991
|
titlePrompt?: string | undefined;
|
|
@@ -8194,9 +8993,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8194
8993
|
titleConvo?: boolean | undefined;
|
|
8195
8994
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
8196
8995
|
titlePromptTemplate?: string | undefined;
|
|
8197
|
-
summarize?: boolean | undefined;
|
|
8198
|
-
summaryModel?: string | undefined;
|
|
8199
|
-
customOrder?: number | undefined;
|
|
8200
8996
|
}) | undefined;
|
|
8201
8997
|
openAI?: {
|
|
8202
8998
|
baseURL?: string | undefined;
|
|
@@ -8246,7 +9042,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8246
9042
|
version?: string | number | undefined;
|
|
8247
9043
|
apiKey?: string | undefined;
|
|
8248
9044
|
baseURL?: string | undefined;
|
|
8249
|
-
headers?: Record<string,
|
|
9045
|
+
headers?: Record<string, string> | undefined;
|
|
8250
9046
|
streamRate?: number | undefined;
|
|
8251
9047
|
titlePrompt?: string | undefined;
|
|
8252
9048
|
titleModel?: string | undefined;
|
|
@@ -8276,7 +9072,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8276
9072
|
version?: string | number | undefined;
|
|
8277
9073
|
apiKey?: string | undefined;
|
|
8278
9074
|
baseURL?: string | undefined;
|
|
8279
|
-
headers?: Record<string,
|
|
9075
|
+
headers?: Record<string, string> | undefined;
|
|
8280
9076
|
streamRate?: number | undefined;
|
|
8281
9077
|
titlePrompt?: string | undefined;
|
|
8282
9078
|
titleModel?: string | undefined;
|
|
@@ -8303,7 +9099,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8303
9099
|
capabilities?: Capabilities[] | undefined;
|
|
8304
9100
|
} | undefined;
|
|
8305
9101
|
agents?: {
|
|
8306
|
-
baseURL?: string | undefined;
|
|
8307
9102
|
streamRate?: number | undefined;
|
|
8308
9103
|
titlePrompt?: string | undefined;
|
|
8309
9104
|
titleModel?: string | undefined;
|
|
@@ -8325,7 +9120,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8325
9120
|
iconURL?: string | undefined;
|
|
8326
9121
|
apiKey?: string | undefined;
|
|
8327
9122
|
baseURL?: string | undefined;
|
|
8328
|
-
headers?: Record<string,
|
|
9123
|
+
headers?: Record<string, string> | undefined;
|
|
8329
9124
|
name?: string | undefined;
|
|
8330
9125
|
streamRate?: number | undefined;
|
|
8331
9126
|
titlePrompt?: string | undefined;
|
|
@@ -8343,18 +9138,48 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8343
9138
|
fetch?: boolean | undefined;
|
|
8344
9139
|
userIdQuery?: boolean | undefined;
|
|
8345
9140
|
} | undefined;
|
|
8346
|
-
addParams?: Record<string,
|
|
9141
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
8347
9142
|
dropParams?: string[] | undefined;
|
|
8348
|
-
summarize?: boolean | undefined;
|
|
8349
|
-
summaryModel?: string | undefined;
|
|
8350
9143
|
modelDisplayLabel?: string | undefined;
|
|
8351
9144
|
customParams?: {
|
|
8352
9145
|
defaultParamsEndpoint?: string | undefined;
|
|
8353
|
-
paramDefinitions?:
|
|
9146
|
+
paramDefinitions?: {
|
|
9147
|
+
key: string;
|
|
9148
|
+
default?: string | number | boolean | string[] | undefined;
|
|
9149
|
+
options?: string[] | undefined;
|
|
9150
|
+
type?: SettingTypes | undefined;
|
|
9151
|
+
description?: string | undefined;
|
|
9152
|
+
placeholder?: string | undefined;
|
|
9153
|
+
label?: string | undefined;
|
|
9154
|
+
showLabel?: boolean | undefined;
|
|
9155
|
+
showDefault?: boolean | undefined;
|
|
9156
|
+
range?: {
|
|
9157
|
+
min: number;
|
|
9158
|
+
max: number;
|
|
9159
|
+
step?: number | undefined;
|
|
9160
|
+
} | undefined;
|
|
9161
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
9162
|
+
component?: ComponentTypes | undefined;
|
|
9163
|
+
optionType?: OptionTypes | undefined;
|
|
9164
|
+
columnSpan?: number | undefined;
|
|
9165
|
+
columns?: number | undefined;
|
|
9166
|
+
labelCode?: boolean | undefined;
|
|
9167
|
+
placeholderCode?: boolean | undefined;
|
|
9168
|
+
descriptionCode?: boolean | undefined;
|
|
9169
|
+
minText?: number | undefined;
|
|
9170
|
+
maxText?: number | undefined;
|
|
9171
|
+
minTags?: number | undefined;
|
|
9172
|
+
maxTags?: number | undefined;
|
|
9173
|
+
includeInput?: boolean | undefined;
|
|
9174
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
9175
|
+
searchPlaceholder?: string | undefined;
|
|
9176
|
+
selectPlaceholder?: string | undefined;
|
|
9177
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
9178
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
9179
|
+
}[] | undefined;
|
|
8354
9180
|
} | undefined;
|
|
8355
|
-
customOrder?: number | undefined;
|
|
8356
9181
|
directEndpoint?: boolean | undefined;
|
|
8357
|
-
titleMessageRole?:
|
|
9182
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
8358
9183
|
}[] | undefined;
|
|
8359
9184
|
bedrock?: {
|
|
8360
9185
|
baseURL?: string | undefined;
|
|
@@ -8371,7 +9196,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8371
9196
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
8372
9197
|
} | undefined;
|
|
8373
9198
|
all?: {
|
|
8374
|
-
baseURL?: string | undefined;
|
|
8375
9199
|
streamRate?: number | undefined;
|
|
8376
9200
|
titlePrompt?: string | undefined;
|
|
8377
9201
|
titleModel?: string | undefined;
|
|
@@ -8384,17 +9208,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8384
9208
|
} | undefined;
|
|
8385
9209
|
fileConfig?: {
|
|
8386
9210
|
text?: {
|
|
8387
|
-
supportedMimeTypes?:
|
|
9211
|
+
supportedMimeTypes?: string[] | undefined;
|
|
8388
9212
|
} | undefined;
|
|
8389
9213
|
ocr?: {
|
|
8390
|
-
supportedMimeTypes?:
|
|
9214
|
+
supportedMimeTypes?: string[] | undefined;
|
|
8391
9215
|
} | undefined;
|
|
8392
9216
|
endpoints?: Record<string, {
|
|
8393
9217
|
disabled?: boolean | undefined;
|
|
8394
9218
|
fileLimit?: number | undefined;
|
|
8395
9219
|
fileSizeLimit?: number | undefined;
|
|
8396
9220
|
totalSizeLimit?: number | undefined;
|
|
8397
|
-
supportedMimeTypes?:
|
|
9221
|
+
supportedMimeTypes?: string[] | undefined;
|
|
8398
9222
|
}> | undefined;
|
|
8399
9223
|
serverFileSizeLimit?: number | undefined;
|
|
8400
9224
|
avatarSizeLimit?: number | undefined;
|
|
@@ -8418,14 +9242,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8418
9242
|
endpoint: string | null;
|
|
8419
9243
|
conversationId?: string | null | undefined;
|
|
8420
9244
|
title?: string | null | undefined;
|
|
8421
|
-
iconURL?: string | null | undefined;
|
|
8422
|
-
greeting?: string | undefined;
|
|
8423
9245
|
endpointType?: EModelEndpoint | null | undefined;
|
|
8424
|
-
expiredAt?: string | null | undefined;
|
|
8425
|
-
messages?: string[] | undefined;
|
|
8426
|
-
isArchived?: boolean | undefined;
|
|
8427
|
-
tags?: string[] | undefined;
|
|
8428
|
-
user?: string | undefined;
|
|
8429
9246
|
tools?: string[] | {
|
|
8430
9247
|
name: string;
|
|
8431
9248
|
pluginKey: string;
|
|
@@ -8443,7 +9260,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8443
9260
|
toolkit?: boolean | undefined;
|
|
8444
9261
|
}[] | undefined;
|
|
8445
9262
|
model?: string | null | undefined;
|
|
8446
|
-
spec?: string | null | undefined;
|
|
8447
9263
|
instructions?: string | undefined;
|
|
8448
9264
|
fileTokenLimit?: string | number | undefined;
|
|
8449
9265
|
modelLabel?: string | null | undefined;
|
|
@@ -8455,7 +9271,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8455
9271
|
top_p?: number | undefined;
|
|
8456
9272
|
frequency_penalty?: number | undefined;
|
|
8457
9273
|
presence_penalty?: number | undefined;
|
|
8458
|
-
parentMessageId?: string | undefined;
|
|
8459
9274
|
maxOutputTokens?: string | number | null | undefined;
|
|
8460
9275
|
maxContextTokens?: string | number | undefined;
|
|
8461
9276
|
max_tokens?: string | number | undefined;
|
|
@@ -8476,7 +9291,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8476
9291
|
};
|
|
8477
9292
|
}[] | undefined;
|
|
8478
9293
|
resendFiles?: boolean | undefined;
|
|
8479
|
-
file_ids?: string[] | undefined;
|
|
8480
9294
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
8481
9295
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
8482
9296
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -8516,10 +9330,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8516
9330
|
} | null) | undefined;
|
|
8517
9331
|
additional_instructions?: string | undefined;
|
|
8518
9332
|
append_current_datetime?: boolean | undefined;
|
|
8519
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
8520
9333
|
stop?: string[] | undefined;
|
|
8521
|
-
resendImages?: boolean | undefined;
|
|
8522
|
-
chatGptLabel?: string | null | undefined;
|
|
8523
9334
|
presetId?: string | null | undefined;
|
|
8524
9335
|
defaultPreset?: boolean | undefined;
|
|
8525
9336
|
order?: number | undefined;
|
|
@@ -8782,17 +9593,17 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
8782
9593
|
provider: z.ZodString;
|
|
8783
9594
|
model: z.ZodString;
|
|
8784
9595
|
instructions: z.ZodOptional<z.ZodString>;
|
|
8785
|
-
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9596
|
+
model_parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
8786
9597
|
}, "strip", z.ZodTypeAny, {
|
|
8787
9598
|
model: string;
|
|
8788
9599
|
provider: string;
|
|
8789
9600
|
instructions?: string | undefined;
|
|
8790
|
-
model_parameters?: Record<string,
|
|
9601
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
8791
9602
|
}, {
|
|
8792
9603
|
model: string;
|
|
8793
9604
|
provider: string;
|
|
8794
9605
|
instructions?: string | undefined;
|
|
8795
|
-
model_parameters?: Record<string,
|
|
9606
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
8796
9607
|
}>]>>;
|
|
8797
9608
|
}, "strip", z.ZodTypeAny, {
|
|
8798
9609
|
charLimit: number;
|
|
@@ -8807,7 +9618,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
8807
9618
|
model: string;
|
|
8808
9619
|
provider: string;
|
|
8809
9620
|
instructions?: string | undefined;
|
|
8810
|
-
model_parameters?: Record<string,
|
|
9621
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
8811
9622
|
} | undefined;
|
|
8812
9623
|
}, {
|
|
8813
9624
|
disabled?: boolean | undefined;
|
|
@@ -8822,7 +9633,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
8822
9633
|
model: string;
|
|
8823
9634
|
provider: string;
|
|
8824
9635
|
instructions?: string | undefined;
|
|
8825
|
-
model_parameters?: Record<string,
|
|
9636
|
+
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
8826
9637
|
} | undefined;
|
|
8827
9638
|
}>>;
|
|
8828
9639
|
summarization: z.ZodOptional<z.ZodObject<{
|
|
@@ -8993,16 +9804,16 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
8993
9804
|
description: string;
|
|
8994
9805
|
}>>>;
|
|
8995
9806
|
} & {
|
|
8996
|
-
type: z.
|
|
9807
|
+
type: z.ZodDefault<z.ZodLiteral<"stdio">>;
|
|
8997
9808
|
command: z.ZodString;
|
|
8998
9809
|
args: z.ZodArray<z.ZodString, "many">;
|
|
8999
|
-
env: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>, Record<string, string> | undefined, Record<string, string> | undefined>;
|
|
9000
|
-
stderr: z.ZodOptional<z.
|
|
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. */
|
|
9811
|
+
stderr: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["pipe", "ignore", "inherit"]>, z.ZodNumber]>>;
|
|
9001
9812
|
}, "strip", z.ZodTypeAny, {
|
|
9813
|
+
type: "stdio";
|
|
9002
9814
|
command: string;
|
|
9003
9815
|
args: string[];
|
|
9004
9816
|
title?: string | undefined;
|
|
9005
|
-
type?: "stdio" | undefined;
|
|
9006
9817
|
description?: string | undefined;
|
|
9007
9818
|
apiKey?: {
|
|
9008
9819
|
source: "user" | "admin";
|
|
@@ -9040,7 +9851,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9040
9851
|
description: string;
|
|
9041
9852
|
}> | undefined;
|
|
9042
9853
|
env?: Record<string, string> | undefined;
|
|
9043
|
-
stderr?:
|
|
9854
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
9044
9855
|
}, {
|
|
9045
9856
|
command: string;
|
|
9046
9857
|
args: string[];
|
|
@@ -9083,7 +9894,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9083
9894
|
description: string;
|
|
9084
9895
|
}> | undefined;
|
|
9085
9896
|
env?: Record<string, string> | undefined;
|
|
9086
|
-
stderr?:
|
|
9897
|
+
stderr?: number | "pipe" | "ignore" | "inherit" | undefined;
|
|
9087
9898
|
}>, z.ZodObject<{
|
|
9088
9899
|
title: z.ZodOptional<z.ZodString>;
|
|
9089
9900
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9169,12 +9980,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9169
9980
|
description: string;
|
|
9170
9981
|
}>>>;
|
|
9171
9982
|
} & {
|
|
9172
|
-
type: z.
|
|
9983
|
+
type: z.ZodDefault<z.ZodLiteral<"websocket">>;
|
|
9173
9984
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
9174
9985
|
}, "strip", z.ZodTypeAny, {
|
|
9986
|
+
type: "websocket";
|
|
9175
9987
|
url: string;
|
|
9176
9988
|
title?: string | undefined;
|
|
9177
|
-
type?: "websocket" | undefined;
|
|
9178
9989
|
description?: string | undefined;
|
|
9179
9990
|
apiKey?: {
|
|
9180
9991
|
source: "user" | "admin";
|
|
@@ -9336,13 +10147,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9336
10147
|
description: string;
|
|
9337
10148
|
}>>>;
|
|
9338
10149
|
} & {
|
|
9339
|
-
type: z.
|
|
10150
|
+
type: z.ZodDefault<z.ZodLiteral<"sse">>;
|
|
9340
10151
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
9341
10152
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
9342
10153
|
}, "strip", z.ZodTypeAny, {
|
|
10154
|
+
type: "sse";
|
|
9343
10155
|
url: string;
|
|
9344
10156
|
title?: string | undefined;
|
|
9345
|
-
type?: "sse" | undefined;
|
|
9346
10157
|
description?: string | undefined;
|
|
9347
10158
|
apiKey?: {
|
|
9348
10159
|
source: "user" | "admin";
|
|
@@ -10202,40 +11013,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10202
11013
|
conversationMode: z.ZodOptional<z.ZodBoolean>;
|
|
10203
11014
|
advancedMode: z.ZodOptional<z.ZodBoolean>;
|
|
10204
11015
|
speechToText: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
|
|
10205
|
-
|
|
11016
|
+
/** Keep in sync with STTProviders enum (defined below — cannot reference due to eval order) */
|
|
11017
|
+
engineSTT: z.ZodOptional<z.ZodEnum<["openai", "azureOpenAI"]>>;
|
|
10206
11018
|
languageSTT: z.ZodOptional<z.ZodString>;
|
|
10207
11019
|
autoTranscribeAudio: z.ZodOptional<z.ZodBoolean>;
|
|
10208
11020
|
decibelValue: z.ZodOptional<z.ZodNumber>;
|
|
10209
11021
|
autoSendText: z.ZodOptional<z.ZodNumber>;
|
|
10210
11022
|
}, "strip", z.ZodTypeAny, {
|
|
10211
|
-
engineSTT?:
|
|
11023
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
10212
11024
|
languageSTT?: string | undefined;
|
|
10213
11025
|
autoTranscribeAudio?: boolean | undefined;
|
|
10214
11026
|
decibelValue?: number | undefined;
|
|
10215
11027
|
autoSendText?: number | undefined;
|
|
10216
11028
|
}, {
|
|
10217
|
-
engineSTT?:
|
|
11029
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
10218
11030
|
languageSTT?: string | undefined;
|
|
10219
11031
|
autoTranscribeAudio?: boolean | undefined;
|
|
10220
11032
|
decibelValue?: number | undefined;
|
|
10221
11033
|
autoSendText?: number | undefined;
|
|
10222
11034
|
}>]>>;
|
|
10223
11035
|
textToSpeech: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodObject<{
|
|
10224
|
-
|
|
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"]>>;
|
|
10225
11038
|
voice: z.ZodOptional<z.ZodString>;
|
|
10226
11039
|
languageTTS: z.ZodOptional<z.ZodString>;
|
|
10227
11040
|
automaticPlayback: z.ZodOptional<z.ZodBoolean>;
|
|
10228
11041
|
playbackRate: z.ZodOptional<z.ZodNumber>;
|
|
10229
11042
|
cacheTTS: z.ZodOptional<z.ZodBoolean>;
|
|
10230
11043
|
}, "strip", z.ZodTypeAny, {
|
|
10231
|
-
engineTTS?:
|
|
11044
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
10232
11045
|
voice?: string | undefined;
|
|
10233
11046
|
languageTTS?: string | undefined;
|
|
10234
11047
|
automaticPlayback?: boolean | undefined;
|
|
10235
11048
|
playbackRate?: number | undefined;
|
|
10236
11049
|
cacheTTS?: boolean | undefined;
|
|
10237
11050
|
}, {
|
|
10238
|
-
engineTTS?:
|
|
11051
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
10239
11052
|
voice?: string | undefined;
|
|
10240
11053
|
languageTTS?: string | undefined;
|
|
10241
11054
|
automaticPlayback?: boolean | undefined;
|
|
@@ -10246,14 +11059,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10246
11059
|
conversationMode?: boolean | undefined;
|
|
10247
11060
|
advancedMode?: boolean | undefined;
|
|
10248
11061
|
speechToText?: boolean | {
|
|
10249
|
-
engineSTT?:
|
|
11062
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
10250
11063
|
languageSTT?: string | undefined;
|
|
10251
11064
|
autoTranscribeAudio?: boolean | undefined;
|
|
10252
11065
|
decibelValue?: number | undefined;
|
|
10253
11066
|
autoSendText?: number | undefined;
|
|
10254
11067
|
} | undefined;
|
|
10255
11068
|
textToSpeech?: boolean | {
|
|
10256
|
-
engineTTS?:
|
|
11069
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
10257
11070
|
voice?: string | undefined;
|
|
10258
11071
|
languageTTS?: string | undefined;
|
|
10259
11072
|
automaticPlayback?: boolean | undefined;
|
|
@@ -10264,14 +11077,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10264
11077
|
conversationMode?: boolean | undefined;
|
|
10265
11078
|
advancedMode?: boolean | undefined;
|
|
10266
11079
|
speechToText?: boolean | {
|
|
10267
|
-
engineSTT?:
|
|
11080
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
10268
11081
|
languageSTT?: string | undefined;
|
|
10269
11082
|
autoTranscribeAudio?: boolean | undefined;
|
|
10270
11083
|
decibelValue?: number | undefined;
|
|
10271
11084
|
autoSendText?: number | undefined;
|
|
10272
11085
|
} | undefined;
|
|
10273
11086
|
textToSpeech?: boolean | {
|
|
10274
|
-
engineTTS?:
|
|
11087
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
10275
11088
|
voice?: string | undefined;
|
|
10276
11089
|
languageTTS?: string | undefined;
|
|
10277
11090
|
automaticPlayback?: boolean | undefined;
|
|
@@ -10333,14 +11146,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10333
11146
|
conversationMode?: boolean | undefined;
|
|
10334
11147
|
advancedMode?: boolean | undefined;
|
|
10335
11148
|
speechToText?: boolean | {
|
|
10336
|
-
engineSTT?:
|
|
11149
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
10337
11150
|
languageSTT?: string | undefined;
|
|
10338
11151
|
autoTranscribeAudio?: boolean | undefined;
|
|
10339
11152
|
decibelValue?: number | undefined;
|
|
10340
11153
|
autoSendText?: number | undefined;
|
|
10341
11154
|
} | undefined;
|
|
10342
11155
|
textToSpeech?: boolean | {
|
|
10343
|
-
engineTTS?:
|
|
11156
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
10344
11157
|
voice?: string | undefined;
|
|
10345
11158
|
languageTTS?: string | undefined;
|
|
10346
11159
|
automaticPlayback?: boolean | undefined;
|
|
@@ -10402,14 +11215,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10402
11215
|
conversationMode?: boolean | undefined;
|
|
10403
11216
|
advancedMode?: boolean | undefined;
|
|
10404
11217
|
speechToText?: boolean | {
|
|
10405
|
-
engineSTT?:
|
|
11218
|
+
engineSTT?: "openai" | "azureOpenAI" | undefined;
|
|
10406
11219
|
languageSTT?: string | undefined;
|
|
10407
11220
|
autoTranscribeAudio?: boolean | undefined;
|
|
10408
11221
|
decibelValue?: number | undefined;
|
|
10409
11222
|
autoSendText?: number | undefined;
|
|
10410
11223
|
} | undefined;
|
|
10411
11224
|
textToSpeech?: boolean | {
|
|
10412
|
-
engineTTS?:
|
|
11225
|
+
engineTTS?: "openai" | "azureOpenAI" | "elevenlabs" | "localai" | undefined;
|
|
10413
11226
|
voice?: string | undefined;
|
|
10414
11227
|
languageTTS?: string | undefined;
|
|
10415
11228
|
automaticPlayback?: boolean | undefined;
|
|
@@ -10540,19 +11353,19 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10540
11353
|
fileLimit: z.ZodOptional<z.ZodNumber>;
|
|
10541
11354
|
fileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
10542
11355
|
totalSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
10543
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
11356
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
10544
11357
|
}, "strip", z.ZodTypeAny, {
|
|
10545
11358
|
disabled?: boolean | undefined;
|
|
10546
11359
|
fileLimit?: number | undefined;
|
|
10547
11360
|
fileSizeLimit?: number | undefined;
|
|
10548
11361
|
totalSizeLimit?: number | undefined;
|
|
10549
|
-
supportedMimeTypes?:
|
|
11362
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10550
11363
|
}, {
|
|
10551
11364
|
disabled?: boolean | undefined;
|
|
10552
11365
|
fileLimit?: number | undefined;
|
|
10553
11366
|
fileSizeLimit?: number | undefined;
|
|
10554
11367
|
totalSizeLimit?: number | undefined;
|
|
10555
|
-
supportedMimeTypes?:
|
|
11368
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10556
11369
|
}>>>;
|
|
10557
11370
|
serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
10558
11371
|
avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10584,32 +11397,32 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10584
11397
|
quality?: number | undefined;
|
|
10585
11398
|
}>>;
|
|
10586
11399
|
ocr: z.ZodOptional<z.ZodObject<{
|
|
10587
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
11400
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
10588
11401
|
}, "strip", z.ZodTypeAny, {
|
|
10589
|
-
supportedMimeTypes?:
|
|
11402
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10590
11403
|
}, {
|
|
10591
|
-
supportedMimeTypes?:
|
|
11404
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10592
11405
|
}>>;
|
|
10593
11406
|
text: z.ZodOptional<z.ZodObject<{
|
|
10594
|
-
supportedMimeTypes: z.ZodOptional<z.
|
|
11407
|
+
supportedMimeTypes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
10595
11408
|
}, "strip", z.ZodTypeAny, {
|
|
10596
|
-
supportedMimeTypes?:
|
|
11409
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10597
11410
|
}, {
|
|
10598
|
-
supportedMimeTypes?:
|
|
11411
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10599
11412
|
}>>;
|
|
10600
11413
|
}, "strip", z.ZodTypeAny, {
|
|
10601
11414
|
text?: {
|
|
10602
|
-
supportedMimeTypes?:
|
|
11415
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10603
11416
|
} | undefined;
|
|
10604
11417
|
ocr?: {
|
|
10605
|
-
supportedMimeTypes?:
|
|
11418
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10606
11419
|
} | undefined;
|
|
10607
11420
|
endpoints?: Record<string, {
|
|
10608
11421
|
disabled?: boolean | undefined;
|
|
10609
11422
|
fileLimit?: number | undefined;
|
|
10610
11423
|
fileSizeLimit?: number | undefined;
|
|
10611
11424
|
totalSizeLimit?: number | undefined;
|
|
10612
|
-
supportedMimeTypes?:
|
|
11425
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10613
11426
|
}> | undefined;
|
|
10614
11427
|
serverFileSizeLimit?: number | undefined;
|
|
10615
11428
|
avatarSizeLimit?: number | undefined;
|
|
@@ -10626,17 +11439,17 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10626
11439
|
} | undefined;
|
|
10627
11440
|
}, {
|
|
10628
11441
|
text?: {
|
|
10629
|
-
supportedMimeTypes?:
|
|
11442
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10630
11443
|
} | undefined;
|
|
10631
11444
|
ocr?: {
|
|
10632
|
-
supportedMimeTypes?:
|
|
11445
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10633
11446
|
} | undefined;
|
|
10634
11447
|
endpoints?: Record<string, {
|
|
10635
11448
|
disabled?: boolean | undefined;
|
|
10636
11449
|
fileLimit?: number | undefined;
|
|
10637
11450
|
fileSizeLimit?: number | undefined;
|
|
10638
11451
|
totalSizeLimit?: number | undefined;
|
|
10639
|
-
supportedMimeTypes?:
|
|
11452
|
+
supportedMimeTypes?: string[] | undefined;
|
|
10640
11453
|
}> | undefined;
|
|
10641
11454
|
serverFileSizeLimit?: number | undefined;
|
|
10642
11455
|
avatarSizeLimit?: number | undefined;
|
|
@@ -10658,7 +11471,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10658
11471
|
list: z.ZodArray<z.ZodObject<{
|
|
10659
11472
|
name: z.ZodString;
|
|
10660
11473
|
label: z.ZodString;
|
|
10661
|
-
preset: z.ZodObject<{
|
|
11474
|
+
preset: z.ZodObject<Omit<{
|
|
10662
11475
|
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10663
11476
|
greeting: z.ZodOptional<z.ZodString>;
|
|
10664
11477
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
@@ -10854,18 +11667,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10854
11667
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
10855
11668
|
order: z.ZodOptional<z.ZodNumber>;
|
|
10856
11669
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
10857
|
-
}, "strip", z.ZodTypeAny, {
|
|
11670
|
+
}, "iconURL" | "greeting" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel">, "strip", z.ZodTypeAny, {
|
|
10858
11671
|
endpoint: string | null;
|
|
10859
11672
|
conversationId?: string | null | undefined;
|
|
10860
11673
|
title?: string | null | undefined;
|
|
10861
|
-
iconURL?: string | null | undefined;
|
|
10862
|
-
greeting?: string | undefined;
|
|
10863
11674
|
endpointType?: EModelEndpoint | null | undefined;
|
|
10864
|
-
expiredAt?: string | null | undefined;
|
|
10865
|
-
messages?: string[] | undefined;
|
|
10866
|
-
isArchived?: boolean | undefined;
|
|
10867
|
-
tags?: string[] | undefined;
|
|
10868
|
-
user?: string | undefined;
|
|
10869
11675
|
tools?: string[] | {
|
|
10870
11676
|
name: string;
|
|
10871
11677
|
pluginKey: string;
|
|
@@ -10883,7 +11689,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10883
11689
|
toolkit?: boolean | undefined;
|
|
10884
11690
|
}[] | undefined;
|
|
10885
11691
|
model?: string | null | undefined;
|
|
10886
|
-
spec?: string | null | undefined;
|
|
10887
11692
|
instructions?: string | undefined;
|
|
10888
11693
|
fileTokenLimit?: number | undefined;
|
|
10889
11694
|
modelLabel?: string | null | undefined;
|
|
@@ -10895,7 +11700,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10895
11700
|
top_p?: number | undefined;
|
|
10896
11701
|
frequency_penalty?: number | undefined;
|
|
10897
11702
|
presence_penalty?: number | undefined;
|
|
10898
|
-
parentMessageId?: string | undefined;
|
|
10899
11703
|
maxOutputTokens?: number | null | undefined;
|
|
10900
11704
|
maxContextTokens?: number | undefined;
|
|
10901
11705
|
max_tokens?: number | undefined;
|
|
@@ -10916,7 +11720,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10916
11720
|
};
|
|
10917
11721
|
}[] | undefined;
|
|
10918
11722
|
resendFiles?: boolean | undefined;
|
|
10919
|
-
file_ids?: string[] | undefined;
|
|
10920
11723
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
10921
11724
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
10922
11725
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -10956,10 +11759,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10956
11759
|
} | null) | undefined;
|
|
10957
11760
|
additional_instructions?: string | undefined;
|
|
10958
11761
|
append_current_datetime?: boolean | undefined;
|
|
10959
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
10960
11762
|
stop?: string[] | undefined;
|
|
10961
|
-
resendImages?: boolean | undefined;
|
|
10962
|
-
chatGptLabel?: string | null | undefined;
|
|
10963
11763
|
presetId?: string | null | undefined;
|
|
10964
11764
|
defaultPreset?: boolean | undefined;
|
|
10965
11765
|
order?: number | undefined;
|
|
@@ -10967,14 +11767,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10967
11767
|
endpoint: string | null;
|
|
10968
11768
|
conversationId?: string | null | undefined;
|
|
10969
11769
|
title?: string | null | undefined;
|
|
10970
|
-
iconURL?: string | null | undefined;
|
|
10971
|
-
greeting?: string | undefined;
|
|
10972
11770
|
endpointType?: EModelEndpoint | null | undefined;
|
|
10973
|
-
expiredAt?: string | null | undefined;
|
|
10974
|
-
messages?: string[] | undefined;
|
|
10975
|
-
isArchived?: boolean | undefined;
|
|
10976
|
-
tags?: string[] | undefined;
|
|
10977
|
-
user?: string | undefined;
|
|
10978
11771
|
tools?: string[] | {
|
|
10979
11772
|
name: string;
|
|
10980
11773
|
pluginKey: string;
|
|
@@ -10992,7 +11785,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10992
11785
|
toolkit?: boolean | undefined;
|
|
10993
11786
|
}[] | undefined;
|
|
10994
11787
|
model?: string | null | undefined;
|
|
10995
|
-
spec?: string | null | undefined;
|
|
10996
11788
|
instructions?: string | undefined;
|
|
10997
11789
|
fileTokenLimit?: string | number | undefined;
|
|
10998
11790
|
modelLabel?: string | null | undefined;
|
|
@@ -11004,7 +11796,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11004
11796
|
top_p?: number | undefined;
|
|
11005
11797
|
frequency_penalty?: number | undefined;
|
|
11006
11798
|
presence_penalty?: number | undefined;
|
|
11007
|
-
parentMessageId?: string | undefined;
|
|
11008
11799
|
maxOutputTokens?: string | number | null | undefined;
|
|
11009
11800
|
maxContextTokens?: string | number | undefined;
|
|
11010
11801
|
max_tokens?: string | number | undefined;
|
|
@@ -11025,7 +11816,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11025
11816
|
};
|
|
11026
11817
|
}[] | undefined;
|
|
11027
11818
|
resendFiles?: boolean | undefined;
|
|
11028
|
-
file_ids?: string[] | undefined;
|
|
11029
11819
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
11030
11820
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
11031
11821
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -11065,10 +11855,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11065
11855
|
} | null) | undefined;
|
|
11066
11856
|
additional_instructions?: string | undefined;
|
|
11067
11857
|
append_current_datetime?: boolean | undefined;
|
|
11068
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
11069
11858
|
stop?: string[] | undefined;
|
|
11070
|
-
resendImages?: boolean | undefined;
|
|
11071
|
-
chatGptLabel?: string | null | undefined;
|
|
11072
11859
|
presetId?: string | null | undefined;
|
|
11073
11860
|
defaultPreset?: boolean | undefined;
|
|
11074
11861
|
order?: number | undefined;
|
|
@@ -11094,14 +11881,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11094
11881
|
endpoint: string | null;
|
|
11095
11882
|
conversationId?: string | null | undefined;
|
|
11096
11883
|
title?: string | null | undefined;
|
|
11097
|
-
iconURL?: string | null | undefined;
|
|
11098
|
-
greeting?: string | undefined;
|
|
11099
11884
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11100
|
-
expiredAt?: string | null | undefined;
|
|
11101
|
-
messages?: string[] | undefined;
|
|
11102
|
-
isArchived?: boolean | undefined;
|
|
11103
|
-
tags?: string[] | undefined;
|
|
11104
|
-
user?: string | undefined;
|
|
11105
11885
|
tools?: string[] | {
|
|
11106
11886
|
name: string;
|
|
11107
11887
|
pluginKey: string;
|
|
@@ -11119,7 +11899,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11119
11899
|
toolkit?: boolean | undefined;
|
|
11120
11900
|
}[] | undefined;
|
|
11121
11901
|
model?: string | null | undefined;
|
|
11122
|
-
spec?: string | null | undefined;
|
|
11123
11902
|
instructions?: string | undefined;
|
|
11124
11903
|
fileTokenLimit?: number | undefined;
|
|
11125
11904
|
modelLabel?: string | null | undefined;
|
|
@@ -11131,7 +11910,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11131
11910
|
top_p?: number | undefined;
|
|
11132
11911
|
frequency_penalty?: number | undefined;
|
|
11133
11912
|
presence_penalty?: number | undefined;
|
|
11134
|
-
parentMessageId?: string | undefined;
|
|
11135
11913
|
maxOutputTokens?: number | null | undefined;
|
|
11136
11914
|
maxContextTokens?: number | undefined;
|
|
11137
11915
|
max_tokens?: number | undefined;
|
|
@@ -11152,7 +11930,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11152
11930
|
};
|
|
11153
11931
|
}[] | undefined;
|
|
11154
11932
|
resendFiles?: boolean | undefined;
|
|
11155
|
-
file_ids?: string[] | undefined;
|
|
11156
11933
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
11157
11934
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
11158
11935
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -11192,10 +11969,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11192
11969
|
} | null) | undefined;
|
|
11193
11970
|
additional_instructions?: string | undefined;
|
|
11194
11971
|
append_current_datetime?: boolean | undefined;
|
|
11195
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
11196
11972
|
stop?: string[] | undefined;
|
|
11197
|
-
resendImages?: boolean | undefined;
|
|
11198
|
-
chatGptLabel?: string | null | undefined;
|
|
11199
11973
|
presetId?: string | null | undefined;
|
|
11200
11974
|
defaultPreset?: boolean | undefined;
|
|
11201
11975
|
order?: number | undefined;
|
|
@@ -11221,14 +11995,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11221
11995
|
endpoint: string | null;
|
|
11222
11996
|
conversationId?: string | null | undefined;
|
|
11223
11997
|
title?: string | null | undefined;
|
|
11224
|
-
iconURL?: string | null | undefined;
|
|
11225
|
-
greeting?: string | undefined;
|
|
11226
11998
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11227
|
-
expiredAt?: string | null | undefined;
|
|
11228
|
-
messages?: string[] | undefined;
|
|
11229
|
-
isArchived?: boolean | undefined;
|
|
11230
|
-
tags?: string[] | undefined;
|
|
11231
|
-
user?: string | undefined;
|
|
11232
11999
|
tools?: string[] | {
|
|
11233
12000
|
name: string;
|
|
11234
12001
|
pluginKey: string;
|
|
@@ -11246,7 +12013,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11246
12013
|
toolkit?: boolean | undefined;
|
|
11247
12014
|
}[] | undefined;
|
|
11248
12015
|
model?: string | null | undefined;
|
|
11249
|
-
spec?: string | null | undefined;
|
|
11250
12016
|
instructions?: string | undefined;
|
|
11251
12017
|
fileTokenLimit?: string | number | undefined;
|
|
11252
12018
|
modelLabel?: string | null | undefined;
|
|
@@ -11258,7 +12024,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11258
12024
|
top_p?: number | undefined;
|
|
11259
12025
|
frequency_penalty?: number | undefined;
|
|
11260
12026
|
presence_penalty?: number | undefined;
|
|
11261
|
-
parentMessageId?: string | undefined;
|
|
11262
12027
|
maxOutputTokens?: string | number | null | undefined;
|
|
11263
12028
|
maxContextTokens?: string | number | undefined;
|
|
11264
12029
|
max_tokens?: string | number | undefined;
|
|
@@ -11279,7 +12044,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11279
12044
|
};
|
|
11280
12045
|
}[] | undefined;
|
|
11281
12046
|
resendFiles?: boolean | undefined;
|
|
11282
|
-
file_ids?: string[] | undefined;
|
|
11283
12047
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
11284
12048
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
11285
12049
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -11319,10 +12083,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11319
12083
|
} | null) | undefined;
|
|
11320
12084
|
additional_instructions?: string | undefined;
|
|
11321
12085
|
append_current_datetime?: boolean | undefined;
|
|
11322
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
11323
12086
|
stop?: string[] | undefined;
|
|
11324
|
-
resendImages?: boolean | undefined;
|
|
11325
|
-
chatGptLabel?: string | null | undefined;
|
|
11326
12087
|
presetId?: string | null | undefined;
|
|
11327
12088
|
defaultPreset?: boolean | undefined;
|
|
11328
12089
|
order?: number | undefined;
|
|
@@ -11353,14 +12114,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11353
12114
|
endpoint: string | null;
|
|
11354
12115
|
conversationId?: string | null | undefined;
|
|
11355
12116
|
title?: string | null | undefined;
|
|
11356
|
-
iconURL?: string | null | undefined;
|
|
11357
|
-
greeting?: string | undefined;
|
|
11358
12117
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11359
|
-
expiredAt?: string | null | undefined;
|
|
11360
|
-
messages?: string[] | undefined;
|
|
11361
|
-
isArchived?: boolean | undefined;
|
|
11362
|
-
tags?: string[] | undefined;
|
|
11363
|
-
user?: string | undefined;
|
|
11364
12118
|
tools?: string[] | {
|
|
11365
12119
|
name: string;
|
|
11366
12120
|
pluginKey: string;
|
|
@@ -11378,7 +12132,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11378
12132
|
toolkit?: boolean | undefined;
|
|
11379
12133
|
}[] | undefined;
|
|
11380
12134
|
model?: string | null | undefined;
|
|
11381
|
-
spec?: string | null | undefined;
|
|
11382
12135
|
instructions?: string | undefined;
|
|
11383
12136
|
fileTokenLimit?: number | undefined;
|
|
11384
12137
|
modelLabel?: string | null | undefined;
|
|
@@ -11390,7 +12143,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11390
12143
|
top_p?: number | undefined;
|
|
11391
12144
|
frequency_penalty?: number | undefined;
|
|
11392
12145
|
presence_penalty?: number | undefined;
|
|
11393
|
-
parentMessageId?: string | undefined;
|
|
11394
12146
|
maxOutputTokens?: number | null | undefined;
|
|
11395
12147
|
maxContextTokens?: number | undefined;
|
|
11396
12148
|
max_tokens?: number | undefined;
|
|
@@ -11411,7 +12163,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11411
12163
|
};
|
|
11412
12164
|
}[] | undefined;
|
|
11413
12165
|
resendFiles?: boolean | undefined;
|
|
11414
|
-
file_ids?: string[] | undefined;
|
|
11415
12166
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
11416
12167
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
11417
12168
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -11451,10 +12202,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11451
12202
|
} | null) | undefined;
|
|
11452
12203
|
additional_instructions?: string | undefined;
|
|
11453
12204
|
append_current_datetime?: boolean | undefined;
|
|
11454
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
11455
12205
|
stop?: string[] | undefined;
|
|
11456
|
-
resendImages?: boolean | undefined;
|
|
11457
|
-
chatGptLabel?: string | null | undefined;
|
|
11458
12206
|
presetId?: string | null | undefined;
|
|
11459
12207
|
defaultPreset?: boolean | undefined;
|
|
11460
12208
|
order?: number | undefined;
|
|
@@ -11483,14 +12231,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11483
12231
|
endpoint: string | null;
|
|
11484
12232
|
conversationId?: string | null | undefined;
|
|
11485
12233
|
title?: string | null | undefined;
|
|
11486
|
-
iconURL?: string | null | undefined;
|
|
11487
|
-
greeting?: string | undefined;
|
|
11488
12234
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11489
|
-
expiredAt?: string | null | undefined;
|
|
11490
|
-
messages?: string[] | undefined;
|
|
11491
|
-
isArchived?: boolean | undefined;
|
|
11492
|
-
tags?: string[] | undefined;
|
|
11493
|
-
user?: string | undefined;
|
|
11494
12235
|
tools?: string[] | {
|
|
11495
12236
|
name: string;
|
|
11496
12237
|
pluginKey: string;
|
|
@@ -11508,7 +12249,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11508
12249
|
toolkit?: boolean | undefined;
|
|
11509
12250
|
}[] | undefined;
|
|
11510
12251
|
model?: string | null | undefined;
|
|
11511
|
-
spec?: string | null | undefined;
|
|
11512
12252
|
instructions?: string | undefined;
|
|
11513
12253
|
fileTokenLimit?: string | number | undefined;
|
|
11514
12254
|
modelLabel?: string | null | undefined;
|
|
@@ -11520,7 +12260,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11520
12260
|
top_p?: number | undefined;
|
|
11521
12261
|
frequency_penalty?: number | undefined;
|
|
11522
12262
|
presence_penalty?: number | undefined;
|
|
11523
|
-
parentMessageId?: string | undefined;
|
|
11524
12263
|
maxOutputTokens?: string | number | null | undefined;
|
|
11525
12264
|
maxContextTokens?: string | number | undefined;
|
|
11526
12265
|
max_tokens?: string | number | undefined;
|
|
@@ -11541,7 +12280,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11541
12280
|
};
|
|
11542
12281
|
}[] | undefined;
|
|
11543
12282
|
resendFiles?: boolean | undefined;
|
|
11544
|
-
file_ids?: string[] | undefined;
|
|
11545
12283
|
imageDetail?: import("./schemas").ImageDetail | undefined;
|
|
11546
12284
|
reasoning_effort?: import("./schemas").ReasoningEffort | null | undefined;
|
|
11547
12285
|
reasoning_summary?: import("./schemas").ReasoningSummary | null | undefined;
|
|
@@ -11581,10 +12319,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11581
12319
|
} | null) | undefined;
|
|
11582
12320
|
additional_instructions?: string | undefined;
|
|
11583
12321
|
append_current_datetime?: boolean | undefined;
|
|
11584
|
-
presetOverride?: Record<string, unknown> | undefined;
|
|
11585
12322
|
stop?: string[] | undefined;
|
|
11586
|
-
resendImages?: boolean | undefined;
|
|
11587
|
-
chatGptLabel?: string | null | undefined;
|
|
11588
12323
|
presetId?: string | null | undefined;
|
|
11589
12324
|
defaultPreset?: boolean | undefined;
|
|
11590
12325
|
order?: number | undefined;
|
|
@@ -11609,7 +12344,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11609
12344
|
addedEndpoints?: string[] | undefined;
|
|
11610
12345
|
}>>;
|
|
11611
12346
|
endpoints: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
11612
|
-
all: z.ZodOptional<z.ZodObject<{
|
|
12347
|
+
all: z.ZodOptional<z.ZodObject<Omit<{
|
|
11613
12348
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
11614
12349
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
11615
12350
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -11620,8 +12355,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11620
12355
|
titlePromptTemplate: z.ZodOptional<z.ZodString>;
|
|
11621
12356
|
/** Maximum characters allowed in a single tool result before truncation. */
|
|
11622
12357
|
maxToolResultChars: z.ZodOptional<z.ZodNumber>;
|
|
11623
|
-
}, "strip", z.ZodTypeAny, {
|
|
11624
|
-
baseURL?: string | undefined;
|
|
12358
|
+
}, "baseURL">, "strip", z.ZodTypeAny, {
|
|
11625
12359
|
streamRate?: number | undefined;
|
|
11626
12360
|
titlePrompt?: string | undefined;
|
|
11627
12361
|
titleModel?: string | undefined;
|
|
@@ -11631,7 +12365,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11631
12365
|
titlePromptTemplate?: string | undefined;
|
|
11632
12366
|
maxToolResultChars?: number | undefined;
|
|
11633
12367
|
}, {
|
|
11634
|
-
baseURL?: string | undefined;
|
|
11635
12368
|
streamRate?: number | undefined;
|
|
11636
12369
|
titlePrompt?: string | undefined;
|
|
11637
12370
|
titleModel?: string | undefined;
|
|
@@ -11838,11 +12571,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11838
12571
|
instanceName: z.ZodOptional<z.ZodString>;
|
|
11839
12572
|
deploymentName: z.ZodOptional<z.ZodString>;
|
|
11840
12573
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
11841
|
-
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12574
|
+
addParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
11842
12575
|
dropParams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11843
12576
|
version: z.ZodOptional<z.ZodString>;
|
|
11844
12577
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
11845
|
-
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12578
|
+
additionalHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11846
12579
|
}, "strip", z.ZodTypeAny, {
|
|
11847
12580
|
apiKey: string;
|
|
11848
12581
|
version?: string | undefined;
|
|
@@ -11851,9 +12584,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11851
12584
|
deploymentName?: string | undefined;
|
|
11852
12585
|
assistants?: boolean | undefined;
|
|
11853
12586
|
serverless?: boolean | undefined;
|
|
11854
|
-
addParams?: Record<string,
|
|
12587
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
11855
12588
|
dropParams?: string[] | undefined;
|
|
11856
|
-
additionalHeaders?: Record<string,
|
|
12589
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
11857
12590
|
}, {
|
|
11858
12591
|
apiKey: string;
|
|
11859
12592
|
version?: string | undefined;
|
|
@@ -11862,11 +12595,10 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11862
12595
|
deploymentName?: string | undefined;
|
|
11863
12596
|
assistants?: boolean | undefined;
|
|
11864
12597
|
serverless?: boolean | undefined;
|
|
11865
|
-
addParams?: Record<string,
|
|
12598
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
11866
12599
|
dropParams?: string[] | undefined;
|
|
11867
|
-
additionalHeaders?: Record<string,
|
|
12600
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
11868
12601
|
}>>, "many">;
|
|
11869
|
-
plugins: z.ZodOptional<z.ZodBoolean>;
|
|
11870
12602
|
assistants: z.ZodOptional<z.ZodBoolean>;
|
|
11871
12603
|
}, "strip", z.ZodTypeAny, {
|
|
11872
12604
|
groups: ({
|
|
@@ -11884,12 +12616,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11884
12616
|
deploymentName?: string | undefined;
|
|
11885
12617
|
assistants?: boolean | undefined;
|
|
11886
12618
|
serverless?: boolean | undefined;
|
|
11887
|
-
addParams?: Record<string,
|
|
12619
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
11888
12620
|
dropParams?: string[] | undefined;
|
|
11889
|
-
additionalHeaders?: Record<string,
|
|
12621
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
11890
12622
|
})[];
|
|
11891
12623
|
assistants?: boolean | undefined;
|
|
11892
|
-
plugins?: boolean | undefined;
|
|
11893
12624
|
}, {
|
|
11894
12625
|
groups: ({
|
|
11895
12626
|
group: string;
|
|
@@ -11906,12 +12637,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11906
12637
|
deploymentName?: string | undefined;
|
|
11907
12638
|
assistants?: boolean | undefined;
|
|
11908
12639
|
serverless?: boolean | undefined;
|
|
11909
|
-
addParams?: Record<string,
|
|
12640
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
11910
12641
|
dropParams?: string[] | undefined;
|
|
11911
|
-
additionalHeaders?: Record<string,
|
|
12642
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
11912
12643
|
})[];
|
|
11913
12644
|
assistants?: boolean | undefined;
|
|
11914
|
-
plugins?: boolean | undefined;
|
|
11915
12645
|
}>, z.ZodObject<{
|
|
11916
12646
|
streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
11917
12647
|
titlePrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11919,9 +12649,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11919
12649
|
titleConvo: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11920
12650
|
titleMethod: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"completion">, z.ZodLiteral<"functions">, z.ZodLiteral<"structured">]>>>;
|
|
11921
12651
|
titlePromptTemplate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11922
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11923
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11924
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
11925
12652
|
}, "strip", z.ZodTypeAny, {
|
|
11926
12653
|
streamRate?: number | undefined;
|
|
11927
12654
|
titlePrompt?: string | undefined;
|
|
@@ -11929,9 +12656,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11929
12656
|
titleConvo?: boolean | undefined;
|
|
11930
12657
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
11931
12658
|
titlePromptTemplate?: string | undefined;
|
|
11932
|
-
summarize?: boolean | undefined;
|
|
11933
|
-
summaryModel?: string | undefined;
|
|
11934
|
-
customOrder?: number | undefined;
|
|
11935
12659
|
}, {
|
|
11936
12660
|
streamRate?: number | undefined;
|
|
11937
12661
|
titlePrompt?: string | undefined;
|
|
@@ -11939,9 +12663,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11939
12663
|
titleConvo?: boolean | undefined;
|
|
11940
12664
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
11941
12665
|
titlePromptTemplate?: string | undefined;
|
|
11942
|
-
summarize?: boolean | undefined;
|
|
11943
|
-
summaryModel?: string | undefined;
|
|
11944
|
-
customOrder?: number | undefined;
|
|
11945
12666
|
}>>>;
|
|
11946
12667
|
azureAssistants: z.ZodOptional<z.ZodObject<{
|
|
11947
12668
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11993,14 +12714,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11993
12714
|
fetch?: boolean | undefined;
|
|
11994
12715
|
userIdQuery?: boolean | undefined;
|
|
11995
12716
|
}>>;
|
|
11996
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12717
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11997
12718
|
}, "strip", z.ZodTypeAny, {
|
|
11998
12719
|
version: string | number;
|
|
11999
12720
|
retrievalModels: string[];
|
|
12000
12721
|
capabilities: Capabilities[];
|
|
12001
12722
|
apiKey?: string | undefined;
|
|
12002
12723
|
baseURL?: string | undefined;
|
|
12003
|
-
headers?: Record<string,
|
|
12724
|
+
headers?: Record<string, string> | undefined;
|
|
12004
12725
|
streamRate?: number | undefined;
|
|
12005
12726
|
titlePrompt?: string | undefined;
|
|
12006
12727
|
titleModel?: string | undefined;
|
|
@@ -12027,7 +12748,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12027
12748
|
version?: string | number | undefined;
|
|
12028
12749
|
apiKey?: string | undefined;
|
|
12029
12750
|
baseURL?: string | undefined;
|
|
12030
|
-
headers?: Record<string,
|
|
12751
|
+
headers?: Record<string, string> | undefined;
|
|
12031
12752
|
streamRate?: number | undefined;
|
|
12032
12753
|
titlePrompt?: string | undefined;
|
|
12033
12754
|
titleModel?: string | undefined;
|
|
@@ -12103,14 +12824,14 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12103
12824
|
fetch?: boolean | undefined;
|
|
12104
12825
|
userIdQuery?: boolean | undefined;
|
|
12105
12826
|
}>>;
|
|
12106
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12827
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12107
12828
|
}, "strip", z.ZodTypeAny, {
|
|
12108
12829
|
version: string | number;
|
|
12109
12830
|
retrievalModels: string[];
|
|
12110
12831
|
capabilities: Capabilities[];
|
|
12111
12832
|
apiKey?: string | undefined;
|
|
12112
12833
|
baseURL?: string | undefined;
|
|
12113
|
-
headers?: Record<string,
|
|
12834
|
+
headers?: Record<string, string> | undefined;
|
|
12114
12835
|
streamRate?: number | undefined;
|
|
12115
12836
|
titlePrompt?: string | undefined;
|
|
12116
12837
|
titleModel?: string | undefined;
|
|
@@ -12137,7 +12858,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12137
12858
|
version?: string | number | undefined;
|
|
12138
12859
|
apiKey?: string | undefined;
|
|
12139
12860
|
baseURL?: string | undefined;
|
|
12140
|
-
headers?: Record<string,
|
|
12861
|
+
headers?: Record<string, string> | undefined;
|
|
12141
12862
|
streamRate?: number | undefined;
|
|
12142
12863
|
titlePrompt?: string | undefined;
|
|
12143
12864
|
titleModel?: string | undefined;
|
|
@@ -12163,7 +12884,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12163
12884
|
retrievalModels?: string[] | undefined;
|
|
12164
12885
|
capabilities?: Capabilities[] | undefined;
|
|
12165
12886
|
}>>;
|
|
12166
|
-
agents: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
12887
|
+
agents: z.ZodOptional<z.ZodDefault<z.ZodObject<Omit<{
|
|
12167
12888
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
12168
12889
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
12169
12890
|
titlePrompt: z.ZodOptional<z.ZodString>;
|
|
@@ -12174,7 +12895,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12174
12895
|
titlePromptTemplate: z.ZodOptional<z.ZodString>;
|
|
12175
12896
|
/** Maximum characters allowed in a single tool result before truncation. */
|
|
12176
12897
|
maxToolResultChars: z.ZodOptional<z.ZodNumber>;
|
|
12177
|
-
} & {
|
|
12898
|
+
}, "baseURL"> & {
|
|
12178
12899
|
recursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
12179
12900
|
disableBuilder: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12180
12901
|
maxRecursionLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12189,7 +12910,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12189
12910
|
maxCitations: number;
|
|
12190
12911
|
maxCitationsPerFile: number;
|
|
12191
12912
|
minRelevanceScore: number;
|
|
12192
|
-
baseURL?: string | undefined;
|
|
12193
12913
|
streamRate?: number | undefined;
|
|
12194
12914
|
titlePrompt?: string | undefined;
|
|
12195
12915
|
titleModel?: string | undefined;
|
|
@@ -12202,7 +12922,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12202
12922
|
maxRecursionLimit?: number | undefined;
|
|
12203
12923
|
allowedProviders?: string[] | undefined;
|
|
12204
12924
|
}, {
|
|
12205
|
-
baseURL?: string | undefined;
|
|
12206
12925
|
streamRate?: number | undefined;
|
|
12207
12926
|
titlePrompt?: string | undefined;
|
|
12208
12927
|
titleModel?: string | undefined;
|
|
@@ -12260,31 +12979,201 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12260
12979
|
fetch?: boolean | undefined;
|
|
12261
12980
|
userIdQuery?: boolean | undefined;
|
|
12262
12981
|
}>>;
|
|
12263
|
-
summarize: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12264
|
-
summaryModel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12265
12982
|
iconURL: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12266
12983
|
modelDisplayLabel: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12267
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12268
|
-
addParams: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
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]>>>>;
|
|
12269
12986
|
dropParams: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
12270
12987
|
customParams: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
12271
12988
|
defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
|
|
12272
|
-
paramDefinitions: z.ZodOptional<z.ZodArray<z.
|
|
12989
|
+
paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12990
|
+
key: z.ZodString;
|
|
12991
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12992
|
+
type: z.ZodOptional<z.ZodNativeEnum<typeof SettingTypes>>;
|
|
12993
|
+
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
12994
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
12995
|
+
showDefault: z.ZodOptional<z.ZodBoolean>;
|
|
12996
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12997
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
12998
|
+
min: z.ZodNumber;
|
|
12999
|
+
max: z.ZodNumber;
|
|
13000
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
13001
|
+
}, "strip", z.ZodTypeAny, {
|
|
13002
|
+
min: number;
|
|
13003
|
+
max: number;
|
|
13004
|
+
step?: number | undefined;
|
|
13005
|
+
}, {
|
|
13006
|
+
min: number;
|
|
13007
|
+
max: number;
|
|
13008
|
+
step?: number | undefined;
|
|
13009
|
+
}>>;
|
|
13010
|
+
enumMappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodBoolean, z.ZodString]>>>;
|
|
13011
|
+
component: z.ZodOptional<z.ZodNativeEnum<typeof ComponentTypes>>;
|
|
13012
|
+
optionType: z.ZodOptional<z.ZodNativeEnum<typeof OptionTypes>>;
|
|
13013
|
+
columnSpan: z.ZodOptional<z.ZodNumber>;
|
|
13014
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
13015
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13016
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
13017
|
+
labelCode: z.ZodOptional<z.ZodBoolean>;
|
|
13018
|
+
placeholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
13019
|
+
descriptionCode: z.ZodOptional<z.ZodBoolean>;
|
|
13020
|
+
minText: z.ZodOptional<z.ZodNumber>;
|
|
13021
|
+
maxText: z.ZodOptional<z.ZodNumber>;
|
|
13022
|
+
minTags: z.ZodOptional<z.ZodNumber>;
|
|
13023
|
+
maxTags: z.ZodOptional<z.ZodNumber>;
|
|
13024
|
+
includeInput: z.ZodOptional<z.ZodBoolean>;
|
|
13025
|
+
descriptionSide: z.ZodOptional<z.ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
13026
|
+
searchPlaceholder: z.ZodOptional<z.ZodString>;
|
|
13027
|
+
selectPlaceholder: z.ZodOptional<z.ZodString>;
|
|
13028
|
+
searchPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
13029
|
+
selectPlaceholderCode: z.ZodOptional<z.ZodBoolean>;
|
|
13030
|
+
}, "strip", z.ZodTypeAny, {
|
|
13031
|
+
key: string;
|
|
13032
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13033
|
+
options?: string[] | undefined;
|
|
13034
|
+
type?: SettingTypes | undefined;
|
|
13035
|
+
description?: string | undefined;
|
|
13036
|
+
placeholder?: string | undefined;
|
|
13037
|
+
label?: string | undefined;
|
|
13038
|
+
showLabel?: boolean | undefined;
|
|
13039
|
+
showDefault?: boolean | undefined;
|
|
13040
|
+
range?: {
|
|
13041
|
+
min: number;
|
|
13042
|
+
max: number;
|
|
13043
|
+
step?: number | undefined;
|
|
13044
|
+
} | undefined;
|
|
13045
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13046
|
+
component?: ComponentTypes | undefined;
|
|
13047
|
+
optionType?: OptionTypes | undefined;
|
|
13048
|
+
columnSpan?: number | undefined;
|
|
13049
|
+
columns?: number | undefined;
|
|
13050
|
+
labelCode?: boolean | undefined;
|
|
13051
|
+
placeholderCode?: boolean | undefined;
|
|
13052
|
+
descriptionCode?: boolean | undefined;
|
|
13053
|
+
minText?: number | undefined;
|
|
13054
|
+
maxText?: number | undefined;
|
|
13055
|
+
minTags?: number | undefined;
|
|
13056
|
+
maxTags?: number | undefined;
|
|
13057
|
+
includeInput?: boolean | undefined;
|
|
13058
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13059
|
+
searchPlaceholder?: string | undefined;
|
|
13060
|
+
selectPlaceholder?: string | undefined;
|
|
13061
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13062
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13063
|
+
}, {
|
|
13064
|
+
key: string;
|
|
13065
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13066
|
+
options?: string[] | undefined;
|
|
13067
|
+
type?: SettingTypes | undefined;
|
|
13068
|
+
description?: string | undefined;
|
|
13069
|
+
placeholder?: string | undefined;
|
|
13070
|
+
label?: string | undefined;
|
|
13071
|
+
showLabel?: boolean | undefined;
|
|
13072
|
+
showDefault?: boolean | undefined;
|
|
13073
|
+
range?: {
|
|
13074
|
+
min: number;
|
|
13075
|
+
max: number;
|
|
13076
|
+
step?: number | undefined;
|
|
13077
|
+
} | undefined;
|
|
13078
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13079
|
+
component?: ComponentTypes | undefined;
|
|
13080
|
+
optionType?: OptionTypes | undefined;
|
|
13081
|
+
columnSpan?: number | undefined;
|
|
13082
|
+
columns?: number | undefined;
|
|
13083
|
+
labelCode?: boolean | undefined;
|
|
13084
|
+
placeholderCode?: boolean | undefined;
|
|
13085
|
+
descriptionCode?: boolean | undefined;
|
|
13086
|
+
minText?: number | undefined;
|
|
13087
|
+
maxText?: number | undefined;
|
|
13088
|
+
minTags?: number | undefined;
|
|
13089
|
+
maxTags?: number | undefined;
|
|
13090
|
+
includeInput?: boolean | undefined;
|
|
13091
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13092
|
+
searchPlaceholder?: string | undefined;
|
|
13093
|
+
selectPlaceholder?: string | undefined;
|
|
13094
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13095
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13096
|
+
}>, "many">>;
|
|
12273
13097
|
}, "strict", z.ZodTypeAny, {
|
|
12274
13098
|
defaultParamsEndpoint: string;
|
|
12275
|
-
paramDefinitions?:
|
|
13099
|
+
paramDefinitions?: {
|
|
13100
|
+
key: string;
|
|
13101
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13102
|
+
options?: string[] | undefined;
|
|
13103
|
+
type?: SettingTypes | undefined;
|
|
13104
|
+
description?: string | undefined;
|
|
13105
|
+
placeholder?: string | undefined;
|
|
13106
|
+
label?: string | undefined;
|
|
13107
|
+
showLabel?: boolean | undefined;
|
|
13108
|
+
showDefault?: boolean | undefined;
|
|
13109
|
+
range?: {
|
|
13110
|
+
min: number;
|
|
13111
|
+
max: number;
|
|
13112
|
+
step?: number | undefined;
|
|
13113
|
+
} | undefined;
|
|
13114
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13115
|
+
component?: ComponentTypes | undefined;
|
|
13116
|
+
optionType?: OptionTypes | undefined;
|
|
13117
|
+
columnSpan?: number | undefined;
|
|
13118
|
+
columns?: number | undefined;
|
|
13119
|
+
labelCode?: boolean | undefined;
|
|
13120
|
+
placeholderCode?: boolean | undefined;
|
|
13121
|
+
descriptionCode?: boolean | undefined;
|
|
13122
|
+
minText?: number | undefined;
|
|
13123
|
+
maxText?: number | undefined;
|
|
13124
|
+
minTags?: number | undefined;
|
|
13125
|
+
maxTags?: number | undefined;
|
|
13126
|
+
includeInput?: boolean | undefined;
|
|
13127
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13128
|
+
searchPlaceholder?: string | undefined;
|
|
13129
|
+
selectPlaceholder?: string | undefined;
|
|
13130
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13131
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13132
|
+
}[] | undefined;
|
|
12276
13133
|
}, {
|
|
12277
13134
|
defaultParamsEndpoint?: string | undefined;
|
|
12278
|
-
paramDefinitions?:
|
|
13135
|
+
paramDefinitions?: {
|
|
13136
|
+
key: string;
|
|
13137
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13138
|
+
options?: string[] | undefined;
|
|
13139
|
+
type?: SettingTypes | undefined;
|
|
13140
|
+
description?: string | undefined;
|
|
13141
|
+
placeholder?: string | undefined;
|
|
13142
|
+
label?: string | undefined;
|
|
13143
|
+
showLabel?: boolean | undefined;
|
|
13144
|
+
showDefault?: boolean | undefined;
|
|
13145
|
+
range?: {
|
|
13146
|
+
min: number;
|
|
13147
|
+
max: number;
|
|
13148
|
+
step?: number | undefined;
|
|
13149
|
+
} | undefined;
|
|
13150
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13151
|
+
component?: ComponentTypes | undefined;
|
|
13152
|
+
optionType?: OptionTypes | undefined;
|
|
13153
|
+
columnSpan?: number | undefined;
|
|
13154
|
+
columns?: number | undefined;
|
|
13155
|
+
labelCode?: boolean | undefined;
|
|
13156
|
+
placeholderCode?: boolean | undefined;
|
|
13157
|
+
descriptionCode?: boolean | undefined;
|
|
13158
|
+
minText?: number | undefined;
|
|
13159
|
+
maxText?: number | undefined;
|
|
13160
|
+
minTags?: number | undefined;
|
|
13161
|
+
maxTags?: number | undefined;
|
|
13162
|
+
includeInput?: boolean | undefined;
|
|
13163
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13164
|
+
searchPlaceholder?: string | undefined;
|
|
13165
|
+
selectPlaceholder?: string | undefined;
|
|
13166
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13167
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13168
|
+
}[] | undefined;
|
|
12279
13169
|
}>>>;
|
|
12280
|
-
customOrder: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
12281
13170
|
directEndpoint: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12282
|
-
titleMessageRole: z.ZodOptional<z.ZodOptional<z.
|
|
13171
|
+
titleMessageRole: z.ZodOptional<z.ZodOptional<z.ZodEnum<["system", "user", "assistant"]>>>;
|
|
12283
13172
|
}, "strip", z.ZodTypeAny, {
|
|
12284
13173
|
iconURL?: string | undefined;
|
|
12285
13174
|
apiKey?: string | undefined;
|
|
12286
13175
|
baseURL?: string | undefined;
|
|
12287
|
-
headers?: Record<string,
|
|
13176
|
+
headers?: Record<string, string> | undefined;
|
|
12288
13177
|
name?: string | undefined;
|
|
12289
13178
|
streamRate?: number | undefined;
|
|
12290
13179
|
titlePrompt?: string | undefined;
|
|
@@ -12302,23 +13191,53 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12302
13191
|
fetch?: boolean | undefined;
|
|
12303
13192
|
userIdQuery?: boolean | undefined;
|
|
12304
13193
|
} | undefined;
|
|
12305
|
-
addParams?: Record<string,
|
|
13194
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12306
13195
|
dropParams?: string[] | undefined;
|
|
12307
|
-
summarize?: boolean | undefined;
|
|
12308
|
-
summaryModel?: string | undefined;
|
|
12309
13196
|
modelDisplayLabel?: string | undefined;
|
|
12310
13197
|
customParams?: {
|
|
12311
13198
|
defaultParamsEndpoint: string;
|
|
12312
|
-
paramDefinitions?:
|
|
13199
|
+
paramDefinitions?: {
|
|
13200
|
+
key: string;
|
|
13201
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13202
|
+
options?: string[] | undefined;
|
|
13203
|
+
type?: SettingTypes | undefined;
|
|
13204
|
+
description?: string | undefined;
|
|
13205
|
+
placeholder?: string | undefined;
|
|
13206
|
+
label?: string | undefined;
|
|
13207
|
+
showLabel?: boolean | undefined;
|
|
13208
|
+
showDefault?: boolean | undefined;
|
|
13209
|
+
range?: {
|
|
13210
|
+
min: number;
|
|
13211
|
+
max: number;
|
|
13212
|
+
step?: number | undefined;
|
|
13213
|
+
} | undefined;
|
|
13214
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13215
|
+
component?: ComponentTypes | undefined;
|
|
13216
|
+
optionType?: OptionTypes | undefined;
|
|
13217
|
+
columnSpan?: number | undefined;
|
|
13218
|
+
columns?: number | undefined;
|
|
13219
|
+
labelCode?: boolean | undefined;
|
|
13220
|
+
placeholderCode?: boolean | undefined;
|
|
13221
|
+
descriptionCode?: boolean | undefined;
|
|
13222
|
+
minText?: number | undefined;
|
|
13223
|
+
maxText?: number | undefined;
|
|
13224
|
+
minTags?: number | undefined;
|
|
13225
|
+
maxTags?: number | undefined;
|
|
13226
|
+
includeInput?: boolean | undefined;
|
|
13227
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13228
|
+
searchPlaceholder?: string | undefined;
|
|
13229
|
+
selectPlaceholder?: string | undefined;
|
|
13230
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13231
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13232
|
+
}[] | undefined;
|
|
12313
13233
|
} | undefined;
|
|
12314
|
-
customOrder?: number | undefined;
|
|
12315
13234
|
directEndpoint?: boolean | undefined;
|
|
12316
|
-
titleMessageRole?:
|
|
13235
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
12317
13236
|
}, {
|
|
12318
13237
|
iconURL?: string | undefined;
|
|
12319
13238
|
apiKey?: string | undefined;
|
|
12320
13239
|
baseURL?: string | undefined;
|
|
12321
|
-
headers?: Record<string,
|
|
13240
|
+
headers?: Record<string, string> | undefined;
|
|
12322
13241
|
name?: string | undefined;
|
|
12323
13242
|
streamRate?: number | undefined;
|
|
12324
13243
|
titlePrompt?: string | undefined;
|
|
@@ -12336,18 +13255,48 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12336
13255
|
fetch?: boolean | undefined;
|
|
12337
13256
|
userIdQuery?: boolean | undefined;
|
|
12338
13257
|
} | undefined;
|
|
12339
|
-
addParams?: Record<string,
|
|
13258
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12340
13259
|
dropParams?: string[] | undefined;
|
|
12341
|
-
summarize?: boolean | undefined;
|
|
12342
|
-
summaryModel?: string | undefined;
|
|
12343
13260
|
modelDisplayLabel?: string | undefined;
|
|
12344
13261
|
customParams?: {
|
|
12345
13262
|
defaultParamsEndpoint?: string | undefined;
|
|
12346
|
-
paramDefinitions?:
|
|
13263
|
+
paramDefinitions?: {
|
|
13264
|
+
key: string;
|
|
13265
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13266
|
+
options?: string[] | undefined;
|
|
13267
|
+
type?: SettingTypes | undefined;
|
|
13268
|
+
description?: string | undefined;
|
|
13269
|
+
placeholder?: string | undefined;
|
|
13270
|
+
label?: string | undefined;
|
|
13271
|
+
showLabel?: boolean | undefined;
|
|
13272
|
+
showDefault?: boolean | undefined;
|
|
13273
|
+
range?: {
|
|
13274
|
+
min: number;
|
|
13275
|
+
max: number;
|
|
13276
|
+
step?: number | undefined;
|
|
13277
|
+
} | undefined;
|
|
13278
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13279
|
+
component?: ComponentTypes | undefined;
|
|
13280
|
+
optionType?: OptionTypes | undefined;
|
|
13281
|
+
columnSpan?: number | undefined;
|
|
13282
|
+
columns?: number | undefined;
|
|
13283
|
+
labelCode?: boolean | undefined;
|
|
13284
|
+
placeholderCode?: boolean | undefined;
|
|
13285
|
+
descriptionCode?: boolean | undefined;
|
|
13286
|
+
minText?: number | undefined;
|
|
13287
|
+
maxText?: number | undefined;
|
|
13288
|
+
minTags?: number | undefined;
|
|
13289
|
+
maxTags?: number | undefined;
|
|
13290
|
+
includeInput?: boolean | undefined;
|
|
13291
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13292
|
+
searchPlaceholder?: string | undefined;
|
|
13293
|
+
selectPlaceholder?: string | undefined;
|
|
13294
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13295
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13296
|
+
}[] | undefined;
|
|
12347
13297
|
} | undefined;
|
|
12348
|
-
customOrder?: number | undefined;
|
|
12349
13298
|
directEndpoint?: boolean | undefined;
|
|
12350
|
-
titleMessageRole?:
|
|
13299
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
12351
13300
|
}>, "many">>>;
|
|
12352
13301
|
bedrock: z.ZodOptional<z.ZodObject<{
|
|
12353
13302
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12408,12 +13357,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12408
13357
|
deploymentName?: string | undefined;
|
|
12409
13358
|
assistants?: boolean | undefined;
|
|
12410
13359
|
serverless?: boolean | undefined;
|
|
12411
|
-
addParams?: Record<string,
|
|
13360
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12412
13361
|
dropParams?: string[] | undefined;
|
|
12413
|
-
additionalHeaders?: Record<string,
|
|
13362
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
12414
13363
|
})[];
|
|
12415
13364
|
assistants?: boolean | undefined;
|
|
12416
|
-
plugins?: boolean | undefined;
|
|
12417
13365
|
} & {
|
|
12418
13366
|
streamRate?: number | undefined;
|
|
12419
13367
|
titlePrompt?: string | undefined;
|
|
@@ -12421,9 +13369,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12421
13369
|
titleConvo?: boolean | undefined;
|
|
12422
13370
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
12423
13371
|
titlePromptTemplate?: string | undefined;
|
|
12424
|
-
summarize?: boolean | undefined;
|
|
12425
|
-
summaryModel?: string | undefined;
|
|
12426
|
-
customOrder?: number | undefined;
|
|
12427
13372
|
}) | undefined;
|
|
12428
13373
|
openAI?: {
|
|
12429
13374
|
baseURL?: string | undefined;
|
|
@@ -12475,7 +13420,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12475
13420
|
capabilities: Capabilities[];
|
|
12476
13421
|
apiKey?: string | undefined;
|
|
12477
13422
|
baseURL?: string | undefined;
|
|
12478
|
-
headers?: Record<string,
|
|
13423
|
+
headers?: Record<string, string> | undefined;
|
|
12479
13424
|
streamRate?: number | undefined;
|
|
12480
13425
|
titlePrompt?: string | undefined;
|
|
12481
13426
|
titleModel?: string | undefined;
|
|
@@ -12505,7 +13450,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12505
13450
|
capabilities: Capabilities[];
|
|
12506
13451
|
apiKey?: string | undefined;
|
|
12507
13452
|
baseURL?: string | undefined;
|
|
12508
|
-
headers?: Record<string,
|
|
13453
|
+
headers?: Record<string, string> | undefined;
|
|
12509
13454
|
streamRate?: number | undefined;
|
|
12510
13455
|
titlePrompt?: string | undefined;
|
|
12511
13456
|
titleModel?: string | undefined;
|
|
@@ -12535,7 +13480,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12535
13480
|
maxCitations: number;
|
|
12536
13481
|
maxCitationsPerFile: number;
|
|
12537
13482
|
minRelevanceScore: number;
|
|
12538
|
-
baseURL?: string | undefined;
|
|
12539
13483
|
streamRate?: number | undefined;
|
|
12540
13484
|
titlePrompt?: string | undefined;
|
|
12541
13485
|
titleModel?: string | undefined;
|
|
@@ -12552,7 +13496,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12552
13496
|
iconURL?: string | undefined;
|
|
12553
13497
|
apiKey?: string | undefined;
|
|
12554
13498
|
baseURL?: string | undefined;
|
|
12555
|
-
headers?: Record<string,
|
|
13499
|
+
headers?: Record<string, string> | undefined;
|
|
12556
13500
|
name?: string | undefined;
|
|
12557
13501
|
streamRate?: number | undefined;
|
|
12558
13502
|
titlePrompt?: string | undefined;
|
|
@@ -12570,18 +13514,48 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12570
13514
|
fetch?: boolean | undefined;
|
|
12571
13515
|
userIdQuery?: boolean | undefined;
|
|
12572
13516
|
} | undefined;
|
|
12573
|
-
addParams?: Record<string,
|
|
13517
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12574
13518
|
dropParams?: string[] | undefined;
|
|
12575
|
-
summarize?: boolean | undefined;
|
|
12576
|
-
summaryModel?: string | undefined;
|
|
12577
13519
|
modelDisplayLabel?: string | undefined;
|
|
12578
13520
|
customParams?: {
|
|
12579
13521
|
defaultParamsEndpoint: string;
|
|
12580
|
-
paramDefinitions?:
|
|
13522
|
+
paramDefinitions?: {
|
|
13523
|
+
key: string;
|
|
13524
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13525
|
+
options?: string[] | undefined;
|
|
13526
|
+
type?: SettingTypes | undefined;
|
|
13527
|
+
description?: string | undefined;
|
|
13528
|
+
placeholder?: string | undefined;
|
|
13529
|
+
label?: string | undefined;
|
|
13530
|
+
showLabel?: boolean | undefined;
|
|
13531
|
+
showDefault?: boolean | undefined;
|
|
13532
|
+
range?: {
|
|
13533
|
+
min: number;
|
|
13534
|
+
max: number;
|
|
13535
|
+
step?: number | undefined;
|
|
13536
|
+
} | undefined;
|
|
13537
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13538
|
+
component?: ComponentTypes | undefined;
|
|
13539
|
+
optionType?: OptionTypes | undefined;
|
|
13540
|
+
columnSpan?: number | undefined;
|
|
13541
|
+
columns?: number | undefined;
|
|
13542
|
+
labelCode?: boolean | undefined;
|
|
13543
|
+
placeholderCode?: boolean | undefined;
|
|
13544
|
+
descriptionCode?: boolean | undefined;
|
|
13545
|
+
minText?: number | undefined;
|
|
13546
|
+
maxText?: number | undefined;
|
|
13547
|
+
minTags?: number | undefined;
|
|
13548
|
+
maxTags?: number | undefined;
|
|
13549
|
+
includeInput?: boolean | undefined;
|
|
13550
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13551
|
+
searchPlaceholder?: string | undefined;
|
|
13552
|
+
selectPlaceholder?: string | undefined;
|
|
13553
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13554
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13555
|
+
}[] | undefined;
|
|
12581
13556
|
} | undefined;
|
|
12582
|
-
customOrder?: number | undefined;
|
|
12583
13557
|
directEndpoint?: boolean | undefined;
|
|
12584
|
-
titleMessageRole?:
|
|
13558
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
12585
13559
|
}[] | undefined;
|
|
12586
13560
|
bedrock?: {
|
|
12587
13561
|
baseURL?: string | undefined;
|
|
@@ -12598,7 +13572,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12598
13572
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
12599
13573
|
} | undefined;
|
|
12600
13574
|
all?: {
|
|
12601
|
-
baseURL?: string | undefined;
|
|
12602
13575
|
streamRate?: number | undefined;
|
|
12603
13576
|
titlePrompt?: string | undefined;
|
|
12604
13577
|
titleModel?: string | undefined;
|
|
@@ -12625,12 +13598,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12625
13598
|
deploymentName?: string | undefined;
|
|
12626
13599
|
assistants?: boolean | undefined;
|
|
12627
13600
|
serverless?: boolean | undefined;
|
|
12628
|
-
addParams?: Record<string,
|
|
13601
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12629
13602
|
dropParams?: string[] | undefined;
|
|
12630
|
-
additionalHeaders?: Record<string,
|
|
13603
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
12631
13604
|
})[];
|
|
12632
13605
|
assistants?: boolean | undefined;
|
|
12633
|
-
plugins?: boolean | undefined;
|
|
12634
13606
|
} & {
|
|
12635
13607
|
streamRate?: number | undefined;
|
|
12636
13608
|
titlePrompt?: string | undefined;
|
|
@@ -12638,9 +13610,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12638
13610
|
titleConvo?: boolean | undefined;
|
|
12639
13611
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
12640
13612
|
titlePromptTemplate?: string | undefined;
|
|
12641
|
-
summarize?: boolean | undefined;
|
|
12642
|
-
summaryModel?: string | undefined;
|
|
12643
|
-
customOrder?: number | undefined;
|
|
12644
13613
|
}) | undefined;
|
|
12645
13614
|
openAI?: {
|
|
12646
13615
|
baseURL?: string | undefined;
|
|
@@ -12690,7 +13659,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12690
13659
|
version?: string | number | undefined;
|
|
12691
13660
|
apiKey?: string | undefined;
|
|
12692
13661
|
baseURL?: string | undefined;
|
|
12693
|
-
headers?: Record<string,
|
|
13662
|
+
headers?: Record<string, string> | undefined;
|
|
12694
13663
|
streamRate?: number | undefined;
|
|
12695
13664
|
titlePrompt?: string | undefined;
|
|
12696
13665
|
titleModel?: string | undefined;
|
|
@@ -12720,7 +13689,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12720
13689
|
version?: string | number | undefined;
|
|
12721
13690
|
apiKey?: string | undefined;
|
|
12722
13691
|
baseURL?: string | undefined;
|
|
12723
|
-
headers?: Record<string,
|
|
13692
|
+
headers?: Record<string, string> | undefined;
|
|
12724
13693
|
streamRate?: number | undefined;
|
|
12725
13694
|
titlePrompt?: string | undefined;
|
|
12726
13695
|
titleModel?: string | undefined;
|
|
@@ -12747,7 +13716,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12747
13716
|
capabilities?: Capabilities[] | undefined;
|
|
12748
13717
|
} | undefined;
|
|
12749
13718
|
agents?: {
|
|
12750
|
-
baseURL?: string | undefined;
|
|
12751
13719
|
streamRate?: number | undefined;
|
|
12752
13720
|
titlePrompt?: string | undefined;
|
|
12753
13721
|
titleModel?: string | undefined;
|
|
@@ -12769,7 +13737,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12769
13737
|
iconURL?: string | undefined;
|
|
12770
13738
|
apiKey?: string | undefined;
|
|
12771
13739
|
baseURL?: string | undefined;
|
|
12772
|
-
headers?: Record<string,
|
|
13740
|
+
headers?: Record<string, string> | undefined;
|
|
12773
13741
|
name?: string | undefined;
|
|
12774
13742
|
streamRate?: number | undefined;
|
|
12775
13743
|
titlePrompt?: string | undefined;
|
|
@@ -12787,18 +13755,48 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12787
13755
|
fetch?: boolean | undefined;
|
|
12788
13756
|
userIdQuery?: boolean | undefined;
|
|
12789
13757
|
} | undefined;
|
|
12790
|
-
addParams?: Record<string,
|
|
13758
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12791
13759
|
dropParams?: string[] | undefined;
|
|
12792
|
-
summarize?: boolean | undefined;
|
|
12793
|
-
summaryModel?: string | undefined;
|
|
12794
13760
|
modelDisplayLabel?: string | undefined;
|
|
12795
13761
|
customParams?: {
|
|
12796
13762
|
defaultParamsEndpoint?: string | undefined;
|
|
12797
|
-
paramDefinitions?:
|
|
13763
|
+
paramDefinitions?: {
|
|
13764
|
+
key: string;
|
|
13765
|
+
default?: string | number | boolean | string[] | undefined;
|
|
13766
|
+
options?: string[] | undefined;
|
|
13767
|
+
type?: SettingTypes | undefined;
|
|
13768
|
+
description?: string | undefined;
|
|
13769
|
+
placeholder?: string | undefined;
|
|
13770
|
+
label?: string | undefined;
|
|
13771
|
+
showLabel?: boolean | undefined;
|
|
13772
|
+
showDefault?: boolean | undefined;
|
|
13773
|
+
range?: {
|
|
13774
|
+
min: number;
|
|
13775
|
+
max: number;
|
|
13776
|
+
step?: number | undefined;
|
|
13777
|
+
} | undefined;
|
|
13778
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
13779
|
+
component?: ComponentTypes | undefined;
|
|
13780
|
+
optionType?: OptionTypes | undefined;
|
|
13781
|
+
columnSpan?: number | undefined;
|
|
13782
|
+
columns?: number | undefined;
|
|
13783
|
+
labelCode?: boolean | undefined;
|
|
13784
|
+
placeholderCode?: boolean | undefined;
|
|
13785
|
+
descriptionCode?: boolean | undefined;
|
|
13786
|
+
minText?: number | undefined;
|
|
13787
|
+
maxText?: number | undefined;
|
|
13788
|
+
minTags?: number | undefined;
|
|
13789
|
+
maxTags?: number | undefined;
|
|
13790
|
+
includeInput?: boolean | undefined;
|
|
13791
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
13792
|
+
searchPlaceholder?: string | undefined;
|
|
13793
|
+
selectPlaceholder?: string | undefined;
|
|
13794
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
13795
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
13796
|
+
}[] | undefined;
|
|
12798
13797
|
} | undefined;
|
|
12799
|
-
customOrder?: number | undefined;
|
|
12800
13798
|
directEndpoint?: boolean | undefined;
|
|
12801
|
-
titleMessageRole?:
|
|
13799
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
12802
13800
|
}[] | undefined;
|
|
12803
13801
|
bedrock?: {
|
|
12804
13802
|
baseURL?: string | undefined;
|
|
@@ -12815,7 +13813,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12815
13813
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
12816
13814
|
} | undefined;
|
|
12817
13815
|
all?: {
|
|
12818
|
-
baseURL?: string | undefined;
|
|
12819
13816
|
streamRate?: number | undefined;
|
|
12820
13817
|
titlePrompt?: string | undefined;
|
|
12821
13818
|
titleModel?: string | undefined;
|
|
@@ -12842,12 +13839,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12842
13839
|
deploymentName?: string | undefined;
|
|
12843
13840
|
assistants?: boolean | undefined;
|
|
12844
13841
|
serverless?: boolean | undefined;
|
|
12845
|
-
addParams?: Record<string,
|
|
13842
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
12846
13843
|
dropParams?: string[] | undefined;
|
|
12847
|
-
additionalHeaders?: Record<string,
|
|
13844
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
12848
13845
|
})[];
|
|
12849
13846
|
assistants?: boolean | undefined;
|
|
12850
|
-
plugins?: boolean | undefined;
|
|
12851
13847
|
} & {
|
|
12852
13848
|
streamRate?: number | undefined;
|
|
12853
13849
|
titlePrompt?: string | undefined;
|
|
@@ -12855,9 +13851,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12855
13851
|
titleConvo?: boolean | undefined;
|
|
12856
13852
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
12857
13853
|
titlePromptTemplate?: string | undefined;
|
|
12858
|
-
summarize?: boolean | undefined;
|
|
12859
|
-
summaryModel?: string | undefined;
|
|
12860
|
-
customOrder?: number | undefined;
|
|
12861
13854
|
}) | undefined;
|
|
12862
13855
|
openAI?: {
|
|
12863
13856
|
baseURL?: string | undefined;
|
|
@@ -12909,7 +13902,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12909
13902
|
capabilities: Capabilities[];
|
|
12910
13903
|
apiKey?: string | undefined;
|
|
12911
13904
|
baseURL?: string | undefined;
|
|
12912
|
-
headers?: Record<string,
|
|
13905
|
+
headers?: Record<string, string> | undefined;
|
|
12913
13906
|
streamRate?: number | undefined;
|
|
12914
13907
|
titlePrompt?: string | undefined;
|
|
12915
13908
|
titleModel?: string | undefined;
|
|
@@ -12939,7 +13932,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12939
13932
|
capabilities: Capabilities[];
|
|
12940
13933
|
apiKey?: string | undefined;
|
|
12941
13934
|
baseURL?: string | undefined;
|
|
12942
|
-
headers?: Record<string,
|
|
13935
|
+
headers?: Record<string, string> | undefined;
|
|
12943
13936
|
streamRate?: number | undefined;
|
|
12944
13937
|
titlePrompt?: string | undefined;
|
|
12945
13938
|
titleModel?: string | undefined;
|
|
@@ -12969,7 +13962,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12969
13962
|
maxCitations: number;
|
|
12970
13963
|
maxCitationsPerFile: number;
|
|
12971
13964
|
minRelevanceScore: number;
|
|
12972
|
-
baseURL?: string | undefined;
|
|
12973
13965
|
streamRate?: number | undefined;
|
|
12974
13966
|
titlePrompt?: string | undefined;
|
|
12975
13967
|
titleModel?: string | undefined;
|
|
@@ -12986,7 +13978,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12986
13978
|
iconURL?: string | undefined;
|
|
12987
13979
|
apiKey?: string | undefined;
|
|
12988
13980
|
baseURL?: string | undefined;
|
|
12989
|
-
headers?: Record<string,
|
|
13981
|
+
headers?: Record<string, string> | undefined;
|
|
12990
13982
|
name?: string | undefined;
|
|
12991
13983
|
streamRate?: number | undefined;
|
|
12992
13984
|
titlePrompt?: string | undefined;
|
|
@@ -13004,18 +13996,48 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13004
13996
|
fetch?: boolean | undefined;
|
|
13005
13997
|
userIdQuery?: boolean | undefined;
|
|
13006
13998
|
} | undefined;
|
|
13007
|
-
addParams?: Record<string,
|
|
13999
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13008
14000
|
dropParams?: string[] | undefined;
|
|
13009
|
-
summarize?: boolean | undefined;
|
|
13010
|
-
summaryModel?: string | undefined;
|
|
13011
14001
|
modelDisplayLabel?: string | undefined;
|
|
13012
14002
|
customParams?: {
|
|
13013
14003
|
defaultParamsEndpoint: string;
|
|
13014
|
-
paramDefinitions?:
|
|
14004
|
+
paramDefinitions?: {
|
|
14005
|
+
key: string;
|
|
14006
|
+
default?: string | number | boolean | string[] | undefined;
|
|
14007
|
+
options?: string[] | undefined;
|
|
14008
|
+
type?: SettingTypes | undefined;
|
|
14009
|
+
description?: string | undefined;
|
|
14010
|
+
placeholder?: string | undefined;
|
|
14011
|
+
label?: string | undefined;
|
|
14012
|
+
showLabel?: boolean | undefined;
|
|
14013
|
+
showDefault?: boolean | undefined;
|
|
14014
|
+
range?: {
|
|
14015
|
+
min: number;
|
|
14016
|
+
max: number;
|
|
14017
|
+
step?: number | undefined;
|
|
14018
|
+
} | undefined;
|
|
14019
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
14020
|
+
component?: ComponentTypes | undefined;
|
|
14021
|
+
optionType?: OptionTypes | undefined;
|
|
14022
|
+
columnSpan?: number | undefined;
|
|
14023
|
+
columns?: number | undefined;
|
|
14024
|
+
labelCode?: boolean | undefined;
|
|
14025
|
+
placeholderCode?: boolean | undefined;
|
|
14026
|
+
descriptionCode?: boolean | undefined;
|
|
14027
|
+
minText?: number | undefined;
|
|
14028
|
+
maxText?: number | undefined;
|
|
14029
|
+
minTags?: number | undefined;
|
|
14030
|
+
maxTags?: number | undefined;
|
|
14031
|
+
includeInput?: boolean | undefined;
|
|
14032
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
14033
|
+
searchPlaceholder?: string | undefined;
|
|
14034
|
+
selectPlaceholder?: string | undefined;
|
|
14035
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
14036
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
14037
|
+
}[] | undefined;
|
|
13015
14038
|
} | undefined;
|
|
13016
|
-
customOrder?: number | undefined;
|
|
13017
14039
|
directEndpoint?: boolean | undefined;
|
|
13018
|
-
titleMessageRole?:
|
|
14040
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
13019
14041
|
}[] | undefined;
|
|
13020
14042
|
bedrock?: {
|
|
13021
14043
|
baseURL?: string | undefined;
|
|
@@ -13032,7 +14054,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13032
14054
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
13033
14055
|
} | undefined;
|
|
13034
14056
|
all?: {
|
|
13035
|
-
baseURL?: string | undefined;
|
|
13036
14057
|
streamRate?: number | undefined;
|
|
13037
14058
|
titlePrompt?: string | undefined;
|
|
13038
14059
|
titleModel?: string | undefined;
|
|
@@ -13059,12 +14080,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13059
14080
|
deploymentName?: string | undefined;
|
|
13060
14081
|
assistants?: boolean | undefined;
|
|
13061
14082
|
serverless?: boolean | undefined;
|
|
13062
|
-
addParams?: Record<string,
|
|
14083
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13063
14084
|
dropParams?: string[] | undefined;
|
|
13064
|
-
additionalHeaders?: Record<string,
|
|
14085
|
+
additionalHeaders?: Record<string, string> | undefined;
|
|
13065
14086
|
})[];
|
|
13066
14087
|
assistants?: boolean | undefined;
|
|
13067
|
-
plugins?: boolean | undefined;
|
|
13068
14088
|
} & {
|
|
13069
14089
|
streamRate?: number | undefined;
|
|
13070
14090
|
titlePrompt?: string | undefined;
|
|
@@ -13072,9 +14092,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13072
14092
|
titleConvo?: boolean | undefined;
|
|
13073
14093
|
titleMethod?: "completion" | "functions" | "structured" | undefined;
|
|
13074
14094
|
titlePromptTemplate?: string | undefined;
|
|
13075
|
-
summarize?: boolean | undefined;
|
|
13076
|
-
summaryModel?: string | undefined;
|
|
13077
|
-
customOrder?: number | undefined;
|
|
13078
14095
|
}) | undefined;
|
|
13079
14096
|
openAI?: {
|
|
13080
14097
|
baseURL?: string | undefined;
|
|
@@ -13124,7 +14141,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13124
14141
|
version?: string | number | undefined;
|
|
13125
14142
|
apiKey?: string | undefined;
|
|
13126
14143
|
baseURL?: string | undefined;
|
|
13127
|
-
headers?: Record<string,
|
|
14144
|
+
headers?: Record<string, string> | undefined;
|
|
13128
14145
|
streamRate?: number | undefined;
|
|
13129
14146
|
titlePrompt?: string | undefined;
|
|
13130
14147
|
titleModel?: string | undefined;
|
|
@@ -13154,7 +14171,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13154
14171
|
version?: string | number | undefined;
|
|
13155
14172
|
apiKey?: string | undefined;
|
|
13156
14173
|
baseURL?: string | undefined;
|
|
13157
|
-
headers?: Record<string,
|
|
14174
|
+
headers?: Record<string, string> | undefined;
|
|
13158
14175
|
streamRate?: number | undefined;
|
|
13159
14176
|
titlePrompt?: string | undefined;
|
|
13160
14177
|
titleModel?: string | undefined;
|
|
@@ -13181,7 +14198,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13181
14198
|
capabilities?: Capabilities[] | undefined;
|
|
13182
14199
|
} | undefined;
|
|
13183
14200
|
agents?: {
|
|
13184
|
-
baseURL?: string | undefined;
|
|
13185
14201
|
streamRate?: number | undefined;
|
|
13186
14202
|
titlePrompt?: string | undefined;
|
|
13187
14203
|
titleModel?: string | undefined;
|
|
@@ -13203,7 +14219,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13203
14219
|
iconURL?: string | undefined;
|
|
13204
14220
|
apiKey?: string | undefined;
|
|
13205
14221
|
baseURL?: string | undefined;
|
|
13206
|
-
headers?: Record<string,
|
|
14222
|
+
headers?: Record<string, string> | undefined;
|
|
13207
14223
|
name?: string | undefined;
|
|
13208
14224
|
streamRate?: number | undefined;
|
|
13209
14225
|
titlePrompt?: string | undefined;
|
|
@@ -13221,18 +14237,48 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13221
14237
|
fetch?: boolean | undefined;
|
|
13222
14238
|
userIdQuery?: boolean | undefined;
|
|
13223
14239
|
} | undefined;
|
|
13224
|
-
addParams?: Record<string,
|
|
14240
|
+
addParams?: Record<string, string | number | boolean | null> | undefined;
|
|
13225
14241
|
dropParams?: string[] | undefined;
|
|
13226
|
-
summarize?: boolean | undefined;
|
|
13227
|
-
summaryModel?: string | undefined;
|
|
13228
14242
|
modelDisplayLabel?: string | undefined;
|
|
13229
14243
|
customParams?: {
|
|
13230
14244
|
defaultParamsEndpoint?: string | undefined;
|
|
13231
|
-
paramDefinitions?:
|
|
14245
|
+
paramDefinitions?: {
|
|
14246
|
+
key: string;
|
|
14247
|
+
default?: string | number | boolean | string[] | undefined;
|
|
14248
|
+
options?: string[] | undefined;
|
|
14249
|
+
type?: SettingTypes | undefined;
|
|
14250
|
+
description?: string | undefined;
|
|
14251
|
+
placeholder?: string | undefined;
|
|
14252
|
+
label?: string | undefined;
|
|
14253
|
+
showLabel?: boolean | undefined;
|
|
14254
|
+
showDefault?: boolean | undefined;
|
|
14255
|
+
range?: {
|
|
14256
|
+
min: number;
|
|
14257
|
+
max: number;
|
|
14258
|
+
step?: number | undefined;
|
|
14259
|
+
} | undefined;
|
|
14260
|
+
enumMappings?: Record<string, string | number | boolean> | undefined;
|
|
14261
|
+
component?: ComponentTypes | undefined;
|
|
14262
|
+
optionType?: OptionTypes | undefined;
|
|
14263
|
+
columnSpan?: number | undefined;
|
|
14264
|
+
columns?: number | undefined;
|
|
14265
|
+
labelCode?: boolean | undefined;
|
|
14266
|
+
placeholderCode?: boolean | undefined;
|
|
14267
|
+
descriptionCode?: boolean | undefined;
|
|
14268
|
+
minText?: number | undefined;
|
|
14269
|
+
maxText?: number | undefined;
|
|
14270
|
+
minTags?: number | undefined;
|
|
14271
|
+
maxTags?: number | undefined;
|
|
14272
|
+
includeInput?: boolean | undefined;
|
|
14273
|
+
descriptionSide?: "top" | "right" | "bottom" | "left" | undefined;
|
|
14274
|
+
searchPlaceholder?: string | undefined;
|
|
14275
|
+
selectPlaceholder?: string | undefined;
|
|
14276
|
+
searchPlaceholderCode?: boolean | undefined;
|
|
14277
|
+
selectPlaceholderCode?: boolean | undefined;
|
|
14278
|
+
}[] | undefined;
|
|
13232
14279
|
} | undefined;
|
|
13233
|
-
customOrder?: number | undefined;
|
|
13234
14280
|
directEndpoint?: boolean | undefined;
|
|
13235
|
-
titleMessageRole?:
|
|
14281
|
+
titleMessageRole?: "user" | "system" | "assistant" | undefined;
|
|
13236
14282
|
}[] | undefined;
|
|
13237
14283
|
bedrock?: {
|
|
13238
14284
|
baseURL?: string | undefined;
|
|
@@ -13249,7 +14295,6 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13249
14295
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
13250
14296
|
} | undefined;
|
|
13251
14297
|
all?: {
|
|
13252
|
-
baseURL?: string | undefined;
|
|
13253
14298
|
streamRate?: number | undefined;
|
|
13254
14299
|
titlePrompt?: string | undefined;
|
|
13255
14300
|
titleModel?: string | undefined;
|
|
@@ -13820,8 +14865,8 @@ export declare enum LocalStorageKeys {
|
|
|
13820
14865
|
LAST_PROMPT_CATEGORY = "lastPromptCategory",
|
|
13821
14866
|
/** Key for rendering User Messages as Markdown */
|
|
13822
14867
|
ENABLE_USER_MSG_MARKDOWN = "enableUserMsgMarkdown",
|
|
13823
|
-
/** Key for
|
|
13824
|
-
|
|
14868
|
+
/** Key for auto-expanding tool call details */
|
|
14869
|
+
AUTO_EXPAND_TOOLS = "autoExpandTools",
|
|
13825
14870
|
/** Last selected MCP values per conversation ID */
|
|
13826
14871
|
LAST_MCP_ = "LAST_MCP_",
|
|
13827
14872
|
/** Last checked toggle for Code Interpreter API per conversation ID */
|