librechat-data-provider 0.8.500 → 0.8.502
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/accessPermissions.d.ts +6 -2
- package/dist/types/api-endpoints.d.ts +18 -0
- package/dist/types/balance.d.ts +3 -0
- package/dist/types/balance.spec.d.ts +1 -0
- package/dist/types/bedrock.d.ts +35 -11
- package/dist/types/cloudfront-config.spec.d.ts +1 -0
- package/dist/types/codeEnvRef.d.ts +62 -0
- package/dist/types/codeEnvRef.spec.d.ts +1 -0
- package/dist/types/config.d.ts +1800 -149
- package/dist/types/data-service.d.ts +64 -0
- package/dist/types/file-config.d.ts +16 -0
- package/dist/types/generate.d.ts +2 -0
- package/dist/types/headers-helpers.d.ts +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/keys.d.ts +16 -2
- package/dist/types/models.d.ts +40 -8
- package/dist/types/parsers.d.ts +2 -1
- package/dist/types/permissions.d.ts +50 -1
- package/dist/types/roles.d.ts +52 -0
- package/dist/types/schemas.d.ts +491 -5
- package/dist/types/types/assistants.d.ts +25 -3
- package/dist/types/types/files.d.ts +71 -0
- package/dist/types/types/mutations.d.ts +45 -0
- package/dist/types/types/queries.d.ts +2 -0
- package/dist/types/types/runs.d.ts +20 -1
- package/dist/types/types/skills.d.ts +275 -0
- package/dist/types/types/web.d.ts +14 -1
- package/dist/types/types.d.ts +57 -3
- package/package.json +2 -2
package/dist/types/config.d.ts
CHANGED
|
@@ -14,24 +14,129 @@ export declare enum SettingsViews {
|
|
|
14
14
|
}
|
|
15
15
|
/** Validates any FileSources value — use for file metadata, DB records, and upload routing. */
|
|
16
16
|
export declare const fileSourceSchema: z.ZodNativeEnum<typeof FileSources>;
|
|
17
|
-
export declare const
|
|
17
|
+
export declare const allowedAddressesSchema: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, "many">>;
|
|
18
|
+
export declare const fileStorageSchema: z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>;
|
|
18
19
|
export type FileStorage = z.infer<typeof fileStorageSchema>;
|
|
19
20
|
export declare const fileStrategiesSchema: z.ZodOptional<z.ZodObject<{
|
|
20
|
-
default: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
21
|
-
avatar: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
22
|
-
image: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
23
|
-
document: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
21
|
+
default: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
22
|
+
avatar: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
23
|
+
image: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
24
|
+
document: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
25
|
+
skills: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
24
26
|
}, "strip", z.ZodTypeAny, {
|
|
25
|
-
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
26
|
-
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
27
|
-
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
28
|
-
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
27
|
+
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
28
|
+
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
29
|
+
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
30
|
+
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
31
|
+
skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
29
32
|
}, {
|
|
30
|
-
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
31
|
-
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
32
|
-
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
33
|
-
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
33
|
+
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
34
|
+
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
35
|
+
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
36
|
+
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
37
|
+
skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
34
38
|
}>>;
|
|
39
|
+
export declare const cloudfrontConfigSchema: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
40
|
+
domain: z.ZodString;
|
|
41
|
+
distributionId: z.ZodOptional<z.ZodString>;
|
|
42
|
+
invalidateOnDelete: z.ZodDefault<z.ZodBoolean>;
|
|
43
|
+
imageSigning: z.ZodDefault<z.ZodEnum<["none", "cookies", "url"]>>;
|
|
44
|
+
urlExpiry: z.ZodDefault<z.ZodNumber>;
|
|
45
|
+
cookieExpiry: z.ZodDefault<z.ZodNumber>;
|
|
46
|
+
cookieDomain: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
47
|
+
storageRegion: z.ZodOptional<z.ZodString>;
|
|
48
|
+
includeRegionInPath: z.ZodDefault<z.ZodBoolean>;
|
|
49
|
+
requireSignedAccess: z.ZodDefault<z.ZodBoolean>;
|
|
50
|
+
}, "strip", z.ZodTypeAny, {
|
|
51
|
+
domain: string;
|
|
52
|
+
invalidateOnDelete: boolean;
|
|
53
|
+
imageSigning: "none" | "cookies" | "url";
|
|
54
|
+
urlExpiry: number;
|
|
55
|
+
cookieExpiry: number;
|
|
56
|
+
includeRegionInPath: boolean;
|
|
57
|
+
requireSignedAccess: boolean;
|
|
58
|
+
distributionId?: string | undefined;
|
|
59
|
+
cookieDomain?: string | undefined;
|
|
60
|
+
storageRegion?: string | undefined;
|
|
61
|
+
}, {
|
|
62
|
+
domain: string;
|
|
63
|
+
distributionId?: string | undefined;
|
|
64
|
+
invalidateOnDelete?: boolean | undefined;
|
|
65
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
66
|
+
urlExpiry?: number | undefined;
|
|
67
|
+
cookieExpiry?: number | undefined;
|
|
68
|
+
cookieDomain?: string | undefined;
|
|
69
|
+
storageRegion?: string | undefined;
|
|
70
|
+
includeRegionInPath?: boolean | undefined;
|
|
71
|
+
requireSignedAccess?: boolean | undefined;
|
|
72
|
+
}>, {
|
|
73
|
+
domain: string;
|
|
74
|
+
invalidateOnDelete: boolean;
|
|
75
|
+
imageSigning: "none" | "cookies" | "url";
|
|
76
|
+
urlExpiry: number;
|
|
77
|
+
cookieExpiry: number;
|
|
78
|
+
includeRegionInPath: boolean;
|
|
79
|
+
requireSignedAccess: boolean;
|
|
80
|
+
distributionId?: string | undefined;
|
|
81
|
+
cookieDomain?: string | undefined;
|
|
82
|
+
storageRegion?: string | undefined;
|
|
83
|
+
}, {
|
|
84
|
+
domain: string;
|
|
85
|
+
distributionId?: string | undefined;
|
|
86
|
+
invalidateOnDelete?: boolean | undefined;
|
|
87
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
88
|
+
urlExpiry?: number | undefined;
|
|
89
|
+
cookieExpiry?: number | undefined;
|
|
90
|
+
cookieDomain?: string | undefined;
|
|
91
|
+
storageRegion?: string | undefined;
|
|
92
|
+
includeRegionInPath?: boolean | undefined;
|
|
93
|
+
requireSignedAccess?: boolean | undefined;
|
|
94
|
+
}>, {
|
|
95
|
+
domain: string;
|
|
96
|
+
invalidateOnDelete: boolean;
|
|
97
|
+
imageSigning: "none" | "cookies" | "url";
|
|
98
|
+
urlExpiry: number;
|
|
99
|
+
cookieExpiry: number;
|
|
100
|
+
includeRegionInPath: boolean;
|
|
101
|
+
requireSignedAccess: boolean;
|
|
102
|
+
distributionId?: string | undefined;
|
|
103
|
+
cookieDomain?: string | undefined;
|
|
104
|
+
storageRegion?: string | undefined;
|
|
105
|
+
}, {
|
|
106
|
+
domain: string;
|
|
107
|
+
distributionId?: string | undefined;
|
|
108
|
+
invalidateOnDelete?: boolean | undefined;
|
|
109
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
110
|
+
urlExpiry?: number | undefined;
|
|
111
|
+
cookieExpiry?: number | undefined;
|
|
112
|
+
cookieDomain?: string | undefined;
|
|
113
|
+
storageRegion?: string | undefined;
|
|
114
|
+
includeRegionInPath?: boolean | undefined;
|
|
115
|
+
requireSignedAccess?: boolean | undefined;
|
|
116
|
+
}>, {
|
|
117
|
+
domain: string;
|
|
118
|
+
invalidateOnDelete: boolean;
|
|
119
|
+
imageSigning: "none" | "cookies" | "url";
|
|
120
|
+
urlExpiry: number;
|
|
121
|
+
cookieExpiry: number;
|
|
122
|
+
includeRegionInPath: boolean;
|
|
123
|
+
requireSignedAccess: boolean;
|
|
124
|
+
distributionId?: string | undefined;
|
|
125
|
+
cookieDomain?: string | undefined;
|
|
126
|
+
storageRegion?: string | undefined;
|
|
127
|
+
}, {
|
|
128
|
+
domain: string;
|
|
129
|
+
distributionId?: string | undefined;
|
|
130
|
+
invalidateOnDelete?: boolean | undefined;
|
|
131
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
132
|
+
urlExpiry?: number | undefined;
|
|
133
|
+
cookieExpiry?: number | undefined;
|
|
134
|
+
cookieDomain?: string | undefined;
|
|
135
|
+
storageRegion?: string | undefined;
|
|
136
|
+
includeRegionInPath?: boolean | undefined;
|
|
137
|
+
requireSignedAccess?: boolean | undefined;
|
|
138
|
+
}>>;
|
|
139
|
+
export type CloudFrontConfig = z.infer<typeof cloudfrontConfigSchema>;
|
|
35
140
|
type SchemaShape<T> = T extends z.ZodObject<infer U> ? U : never;
|
|
36
141
|
type DefaultValue<T> = T extends z.ZodDefault<z.ZodTypeAny> ? ReturnType<T['_def']['defaultValue']> : undefined;
|
|
37
142
|
type ExtractDefaults<T> = {
|
|
@@ -251,8 +356,10 @@ export declare enum AgentCapabilities {
|
|
|
251
356
|
file_search = "file_search",
|
|
252
357
|
web_search = "web_search",
|
|
253
358
|
artifacts = "artifacts",
|
|
359
|
+
subagents = "subagents",
|
|
254
360
|
actions = "actions",
|
|
255
361
|
context = "context",
|
|
362
|
+
skills = "skills",
|
|
256
363
|
tools = "tools",
|
|
257
364
|
chain = "chain",
|
|
258
365
|
ocr = "ocr"
|
|
@@ -448,6 +555,7 @@ export declare const assistantEndpointSchema: z.ZodObject<{
|
|
|
448
555
|
}>;
|
|
449
556
|
export type TAssistantEndpoint = z.infer<typeof assistantEndpointSchema>;
|
|
450
557
|
export declare const defaultAgentCapabilities: AgentCapabilities[];
|
|
558
|
+
export declare function isRemoteOidcUrlAllowed(value: string): boolean;
|
|
451
559
|
export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
452
560
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
453
561
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -468,6 +576,96 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
468
576
|
minRelevanceScore: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
469
577
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
470
578
|
capabilities: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof AgentCapabilities>, "many">>>;
|
|
579
|
+
remoteApi: z.ZodOptional<z.ZodObject<{
|
|
580
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
581
|
+
apiKey: z.ZodOptional<z.ZodObject<{
|
|
582
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
583
|
+
}, "strip", z.ZodTypeAny, {
|
|
584
|
+
enabled: boolean;
|
|
585
|
+
}, {
|
|
586
|
+
enabled?: boolean | undefined;
|
|
587
|
+
}>>;
|
|
588
|
+
oidc: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
589
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
590
|
+
issuer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
591
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
592
|
+
jwksUri: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
593
|
+
scope: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
594
|
+
}, "strip", z.ZodTypeAny, {
|
|
595
|
+
enabled: boolean;
|
|
596
|
+
scope?: string | undefined;
|
|
597
|
+
issuer?: string | undefined;
|
|
598
|
+
audience?: string | undefined;
|
|
599
|
+
jwksUri?: string | undefined;
|
|
600
|
+
}, {
|
|
601
|
+
enabled?: boolean | undefined;
|
|
602
|
+
scope?: string | undefined;
|
|
603
|
+
issuer?: string | undefined;
|
|
604
|
+
audience?: string | undefined;
|
|
605
|
+
jwksUri?: string | undefined;
|
|
606
|
+
}>, {
|
|
607
|
+
enabled: boolean;
|
|
608
|
+
scope?: string | undefined;
|
|
609
|
+
issuer?: string | undefined;
|
|
610
|
+
audience?: string | undefined;
|
|
611
|
+
jwksUri?: string | undefined;
|
|
612
|
+
}, {
|
|
613
|
+
enabled?: boolean | undefined;
|
|
614
|
+
scope?: string | undefined;
|
|
615
|
+
issuer?: string | undefined;
|
|
616
|
+
audience?: string | undefined;
|
|
617
|
+
jwksUri?: string | undefined;
|
|
618
|
+
}>>;
|
|
619
|
+
}, "strip", z.ZodTypeAny, {
|
|
620
|
+
apiKey?: {
|
|
621
|
+
enabled: boolean;
|
|
622
|
+
} | undefined;
|
|
623
|
+
oidc?: {
|
|
624
|
+
enabled: boolean;
|
|
625
|
+
scope?: string | undefined;
|
|
626
|
+
issuer?: string | undefined;
|
|
627
|
+
audience?: string | undefined;
|
|
628
|
+
jwksUri?: string | undefined;
|
|
629
|
+
} | undefined;
|
|
630
|
+
}, {
|
|
631
|
+
apiKey?: {
|
|
632
|
+
enabled?: boolean | undefined;
|
|
633
|
+
} | undefined;
|
|
634
|
+
oidc?: {
|
|
635
|
+
enabled?: boolean | undefined;
|
|
636
|
+
scope?: string | undefined;
|
|
637
|
+
issuer?: string | undefined;
|
|
638
|
+
audience?: string | undefined;
|
|
639
|
+
jwksUri?: string | undefined;
|
|
640
|
+
} | undefined;
|
|
641
|
+
}>>;
|
|
642
|
+
}, "strip", z.ZodTypeAny, {
|
|
643
|
+
auth?: {
|
|
644
|
+
apiKey?: {
|
|
645
|
+
enabled: boolean;
|
|
646
|
+
} | undefined;
|
|
647
|
+
oidc?: {
|
|
648
|
+
enabled: boolean;
|
|
649
|
+
scope?: string | undefined;
|
|
650
|
+
issuer?: string | undefined;
|
|
651
|
+
audience?: string | undefined;
|
|
652
|
+
jwksUri?: string | undefined;
|
|
653
|
+
} | undefined;
|
|
654
|
+
} | undefined;
|
|
655
|
+
}, {
|
|
656
|
+
auth?: {
|
|
657
|
+
apiKey?: {
|
|
658
|
+
enabled?: boolean | undefined;
|
|
659
|
+
} | undefined;
|
|
660
|
+
oidc?: {
|
|
661
|
+
enabled?: boolean | undefined;
|
|
662
|
+
scope?: string | undefined;
|
|
663
|
+
issuer?: string | undefined;
|
|
664
|
+
audience?: string | undefined;
|
|
665
|
+
jwksUri?: string | undefined;
|
|
666
|
+
} | undefined;
|
|
667
|
+
} | undefined;
|
|
668
|
+
}>>;
|
|
471
669
|
}, "strip", z.ZodTypeAny, {
|
|
472
670
|
disableBuilder: boolean;
|
|
473
671
|
capabilities: AgentCapabilities[];
|
|
@@ -485,6 +683,20 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
485
683
|
recursionLimit?: number | undefined;
|
|
486
684
|
maxRecursionLimit?: number | undefined;
|
|
487
685
|
allowedProviders?: string[] | undefined;
|
|
686
|
+
remoteApi?: {
|
|
687
|
+
auth?: {
|
|
688
|
+
apiKey?: {
|
|
689
|
+
enabled: boolean;
|
|
690
|
+
} | undefined;
|
|
691
|
+
oidc?: {
|
|
692
|
+
enabled: boolean;
|
|
693
|
+
scope?: string | undefined;
|
|
694
|
+
issuer?: string | undefined;
|
|
695
|
+
audience?: string | undefined;
|
|
696
|
+
jwksUri?: string | undefined;
|
|
697
|
+
} | undefined;
|
|
698
|
+
} | undefined;
|
|
699
|
+
} | undefined;
|
|
488
700
|
}, {
|
|
489
701
|
streamRate?: number | undefined;
|
|
490
702
|
titlePrompt?: string | undefined;
|
|
@@ -502,6 +714,20 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
502
714
|
maxCitationsPerFile?: number | undefined;
|
|
503
715
|
minRelevanceScore?: number | undefined;
|
|
504
716
|
allowedProviders?: string[] | undefined;
|
|
717
|
+
remoteApi?: {
|
|
718
|
+
auth?: {
|
|
719
|
+
apiKey?: {
|
|
720
|
+
enabled?: boolean | undefined;
|
|
721
|
+
} | undefined;
|
|
722
|
+
oidc?: {
|
|
723
|
+
enabled?: boolean | undefined;
|
|
724
|
+
scope?: string | undefined;
|
|
725
|
+
issuer?: string | undefined;
|
|
726
|
+
audience?: string | undefined;
|
|
727
|
+
jwksUri?: string | undefined;
|
|
728
|
+
} | undefined;
|
|
729
|
+
} | undefined;
|
|
730
|
+
} | undefined;
|
|
505
731
|
}>>;
|
|
506
732
|
export type TAgentsEndpoint = z.infer<typeof agentsEndpointSchema>;
|
|
507
733
|
export declare const paramDefinitionSchema: z.ZodObject<{
|
|
@@ -1649,6 +1875,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1649
1875
|
}>]>>;
|
|
1650
1876
|
temporaryChat: z.ZodOptional<z.ZodBoolean>;
|
|
1651
1877
|
temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
|
|
1878
|
+
autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
|
|
1652
1879
|
runCode: z.ZodOptional<z.ZodBoolean>;
|
|
1653
1880
|
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
1654
1881
|
peoplePicker: z.ZodOptional<z.ZodObject<{
|
|
@@ -1689,7 +1916,33 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1689
1916
|
share?: boolean | undefined;
|
|
1690
1917
|
public?: boolean | undefined;
|
|
1691
1918
|
}>>;
|
|
1919
|
+
skills: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
1920
|
+
use: z.ZodOptional<z.ZodBoolean>;
|
|
1921
|
+
create: z.ZodOptional<z.ZodBoolean>;
|
|
1922
|
+
share: z.ZodOptional<z.ZodBoolean>;
|
|
1923
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
1924
|
+
defaultActiveOnShare: z.ZodOptional<z.ZodBoolean>;
|
|
1925
|
+
}, "strip", z.ZodTypeAny, {
|
|
1926
|
+
use?: boolean | undefined;
|
|
1927
|
+
create?: boolean | undefined;
|
|
1928
|
+
share?: boolean | undefined;
|
|
1929
|
+
public?: boolean | undefined;
|
|
1930
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
1931
|
+
}, {
|
|
1932
|
+
use?: boolean | undefined;
|
|
1933
|
+
create?: boolean | undefined;
|
|
1934
|
+
share?: boolean | undefined;
|
|
1935
|
+
public?: boolean | undefined;
|
|
1936
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
1937
|
+
}>]>>;
|
|
1692
1938
|
}, "strip", z.ZodTypeAny, {
|
|
1939
|
+
skills?: boolean | {
|
|
1940
|
+
use?: boolean | undefined;
|
|
1941
|
+
create?: boolean | undefined;
|
|
1942
|
+
share?: boolean | undefined;
|
|
1943
|
+
public?: boolean | undefined;
|
|
1944
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
1945
|
+
} | undefined;
|
|
1693
1946
|
webSearch?: boolean | undefined;
|
|
1694
1947
|
parameters?: boolean | undefined;
|
|
1695
1948
|
mcpServers?: {
|
|
@@ -1734,6 +1987,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1734
1987
|
} | undefined;
|
|
1735
1988
|
temporaryChat?: boolean | undefined;
|
|
1736
1989
|
temporaryChatRetention?: number | undefined;
|
|
1990
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
1737
1991
|
runCode?: boolean | undefined;
|
|
1738
1992
|
peoplePicker?: {
|
|
1739
1993
|
users?: boolean | undefined;
|
|
@@ -1752,6 +2006,13 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1752
2006
|
public?: boolean | undefined;
|
|
1753
2007
|
} | undefined;
|
|
1754
2008
|
}, {
|
|
2009
|
+
skills?: boolean | {
|
|
2010
|
+
use?: boolean | undefined;
|
|
2011
|
+
create?: boolean | undefined;
|
|
2012
|
+
share?: boolean | undefined;
|
|
2013
|
+
public?: boolean | undefined;
|
|
2014
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
2015
|
+
} | undefined;
|
|
1755
2016
|
webSearch?: boolean | undefined;
|
|
1756
2017
|
parameters?: boolean | undefined;
|
|
1757
2018
|
mcpServers?: {
|
|
@@ -1796,6 +2057,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1796
2057
|
} | undefined;
|
|
1797
2058
|
temporaryChat?: boolean | undefined;
|
|
1798
2059
|
temporaryChatRetention?: number | undefined;
|
|
2060
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
1799
2061
|
runCode?: boolean | undefined;
|
|
1800
2062
|
peoplePicker?: {
|
|
1801
2063
|
users?: boolean | undefined;
|
|
@@ -1907,6 +2169,12 @@ export type TStartupConfig = {
|
|
|
1907
2169
|
scraperProvider?: ScraperProviders;
|
|
1908
2170
|
rerankerType?: RerankerTypes;
|
|
1909
2171
|
};
|
|
2172
|
+
cloudFront?: {
|
|
2173
|
+
cookieRefresh?: {
|
|
2174
|
+
endpoint: string;
|
|
2175
|
+
domain: string;
|
|
2176
|
+
};
|
|
2177
|
+
};
|
|
1910
2178
|
mcpServers?: Record<string, {
|
|
1911
2179
|
customUserVars: Record<string, {
|
|
1912
2180
|
title: string;
|
|
@@ -1934,15 +2202,18 @@ export declare enum SearchCategories {
|
|
|
1934
2202
|
}
|
|
1935
2203
|
export declare enum SearchProviders {
|
|
1936
2204
|
SERPER = "serper",
|
|
1937
|
-
SEARXNG = "searxng"
|
|
2205
|
+
SEARXNG = "searxng",
|
|
2206
|
+
TAVILY = "tavily"
|
|
1938
2207
|
}
|
|
1939
2208
|
export declare enum ScraperProviders {
|
|
1940
2209
|
FIRECRAWL = "firecrawl",
|
|
1941
|
-
SERPER = "serper"
|
|
2210
|
+
SERPER = "serper",
|
|
2211
|
+
TAVILY = "tavily"
|
|
1942
2212
|
}
|
|
1943
2213
|
export declare enum RerankerTypes {
|
|
1944
2214
|
JINA = "jina",
|
|
1945
|
-
COHERE = "cohere"
|
|
2215
|
+
COHERE = "cohere",
|
|
2216
|
+
NONE = "none"
|
|
1946
2217
|
}
|
|
1947
2218
|
export declare enum SafeSearchTypes {
|
|
1948
2219
|
OFF = 0,
|
|
@@ -1956,6 +2227,9 @@ export declare const webSearchSchema: z.ZodObject<{
|
|
|
1956
2227
|
firecrawlApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1957
2228
|
firecrawlApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1958
2229
|
firecrawlVersion: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2230
|
+
tavilyApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2231
|
+
tavilySearchUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2232
|
+
tavilyExtractUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1959
2233
|
jinaApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1960
2234
|
jinaApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1961
2235
|
cohereApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -2059,6 +2333,71 @@ export declare const webSearchSchema: z.ZodObject<{
|
|
|
2059
2333
|
tag?: string | null | undefined;
|
|
2060
2334
|
} | undefined;
|
|
2061
2335
|
}>>;
|
|
2336
|
+
tavilySearchOptions: z.ZodOptional<z.ZodObject<{
|
|
2337
|
+
searchDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced", "fast", "ultra-fast"]>>;
|
|
2338
|
+
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
2339
|
+
includeImages: z.ZodOptional<z.ZodBoolean>;
|
|
2340
|
+
includeAnswer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["basic", "advanced"]>]>>;
|
|
2341
|
+
includeRawContent: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["markdown", "text"]>]>>;
|
|
2342
|
+
includeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2343
|
+
excludeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2344
|
+
topic: z.ZodOptional<z.ZodEnum<["general", "news", "finance"]>>;
|
|
2345
|
+
timeRange: z.ZodOptional<z.ZodEnum<["day", "week", "month", "year", "d", "w", "m", "y"]>>;
|
|
2346
|
+
includeImageDescriptions: z.ZodOptional<z.ZodBoolean>;
|
|
2347
|
+
includeFavicon: z.ZodOptional<z.ZodBoolean>;
|
|
2348
|
+
chunksPerSource: z.ZodOptional<z.ZodNumber>;
|
|
2349
|
+
safeSearch: z.ZodOptional<z.ZodBoolean>;
|
|
2350
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
2351
|
+
}, "strip", z.ZodTypeAny, {
|
|
2352
|
+
safeSearch?: boolean | undefined;
|
|
2353
|
+
timeout?: number | undefined;
|
|
2354
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
2355
|
+
maxResults?: number | undefined;
|
|
2356
|
+
includeImages?: boolean | undefined;
|
|
2357
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
2358
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
2359
|
+
includeDomains?: string[] | undefined;
|
|
2360
|
+
excludeDomains?: string[] | undefined;
|
|
2361
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
2362
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
2363
|
+
includeImageDescriptions?: boolean | undefined;
|
|
2364
|
+
includeFavicon?: boolean | undefined;
|
|
2365
|
+
chunksPerSource?: number | undefined;
|
|
2366
|
+
}, {
|
|
2367
|
+
safeSearch?: boolean | undefined;
|
|
2368
|
+
timeout?: number | undefined;
|
|
2369
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
2370
|
+
maxResults?: number | undefined;
|
|
2371
|
+
includeImages?: boolean | undefined;
|
|
2372
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
2373
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
2374
|
+
includeDomains?: string[] | undefined;
|
|
2375
|
+
excludeDomains?: string[] | undefined;
|
|
2376
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
2377
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
2378
|
+
includeImageDescriptions?: boolean | undefined;
|
|
2379
|
+
includeFavicon?: boolean | undefined;
|
|
2380
|
+
chunksPerSource?: number | undefined;
|
|
2381
|
+
}>>;
|
|
2382
|
+
tavilyScraperOptions: z.ZodOptional<z.ZodObject<{
|
|
2383
|
+
extractDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced"]>>;
|
|
2384
|
+
includeImages: z.ZodOptional<z.ZodBoolean>;
|
|
2385
|
+
includeFavicon: z.ZodOptional<z.ZodBoolean>;
|
|
2386
|
+
format: z.ZodOptional<z.ZodEnum<["markdown", "text"]>>;
|
|
2387
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
2388
|
+
}, "strip", z.ZodTypeAny, {
|
|
2389
|
+
timeout?: number | undefined;
|
|
2390
|
+
includeImages?: boolean | undefined;
|
|
2391
|
+
includeFavicon?: boolean | undefined;
|
|
2392
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
2393
|
+
format?: "text" | "markdown" | undefined;
|
|
2394
|
+
}, {
|
|
2395
|
+
timeout?: number | undefined;
|
|
2396
|
+
includeImages?: boolean | undefined;
|
|
2397
|
+
includeFavicon?: boolean | undefined;
|
|
2398
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
2399
|
+
format?: "text" | "markdown" | undefined;
|
|
2400
|
+
}>>;
|
|
2062
2401
|
}, "strip", z.ZodTypeAny, {
|
|
2063
2402
|
serperApiKey: string;
|
|
2064
2403
|
searxngInstanceUrl: string;
|
|
@@ -2066,6 +2405,9 @@ export declare const webSearchSchema: z.ZodObject<{
|
|
|
2066
2405
|
firecrawlApiKey: string;
|
|
2067
2406
|
firecrawlApiUrl: string;
|
|
2068
2407
|
firecrawlVersion: string;
|
|
2408
|
+
tavilyApiKey: string;
|
|
2409
|
+
tavilySearchUrl: string;
|
|
2410
|
+
tavilyExtractUrl: string;
|
|
2069
2411
|
jinaApiKey: string;
|
|
2070
2412
|
jinaApiUrl: string;
|
|
2071
2413
|
cohereApiKey: string;
|
|
@@ -2101,6 +2443,29 @@ export declare const webSearchSchema: z.ZodObject<{
|
|
|
2101
2443
|
tag?: string | null | undefined;
|
|
2102
2444
|
} | undefined;
|
|
2103
2445
|
} | undefined;
|
|
2446
|
+
tavilySearchOptions?: {
|
|
2447
|
+
safeSearch?: boolean | undefined;
|
|
2448
|
+
timeout?: number | undefined;
|
|
2449
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
2450
|
+
maxResults?: number | undefined;
|
|
2451
|
+
includeImages?: boolean | undefined;
|
|
2452
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
2453
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
2454
|
+
includeDomains?: string[] | undefined;
|
|
2455
|
+
excludeDomains?: string[] | undefined;
|
|
2456
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
2457
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
2458
|
+
includeImageDescriptions?: boolean | undefined;
|
|
2459
|
+
includeFavicon?: boolean | undefined;
|
|
2460
|
+
chunksPerSource?: number | undefined;
|
|
2461
|
+
} | undefined;
|
|
2462
|
+
tavilyScraperOptions?: {
|
|
2463
|
+
timeout?: number | undefined;
|
|
2464
|
+
includeImages?: boolean | undefined;
|
|
2465
|
+
includeFavicon?: boolean | undefined;
|
|
2466
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
2467
|
+
format?: "text" | "markdown" | undefined;
|
|
2468
|
+
} | undefined;
|
|
2104
2469
|
}, {
|
|
2105
2470
|
serperApiKey?: string | undefined;
|
|
2106
2471
|
searxngInstanceUrl?: string | undefined;
|
|
@@ -2108,6 +2473,9 @@ export declare const webSearchSchema: z.ZodObject<{
|
|
|
2108
2473
|
firecrawlApiKey?: string | undefined;
|
|
2109
2474
|
firecrawlApiUrl?: string | undefined;
|
|
2110
2475
|
firecrawlVersion?: string | undefined;
|
|
2476
|
+
tavilyApiKey?: string | undefined;
|
|
2477
|
+
tavilySearchUrl?: string | undefined;
|
|
2478
|
+
tavilyExtractUrl?: string | undefined;
|
|
2111
2479
|
jinaApiKey?: string | undefined;
|
|
2112
2480
|
jinaApiUrl?: string | undefined;
|
|
2113
2481
|
cohereApiKey?: string | undefined;
|
|
@@ -2143,6 +2511,29 @@ export declare const webSearchSchema: z.ZodObject<{
|
|
|
2143
2511
|
tag?: string | null | undefined;
|
|
2144
2512
|
} | undefined;
|
|
2145
2513
|
} | undefined;
|
|
2514
|
+
tavilySearchOptions?: {
|
|
2515
|
+
safeSearch?: boolean | undefined;
|
|
2516
|
+
timeout?: number | undefined;
|
|
2517
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
2518
|
+
maxResults?: number | undefined;
|
|
2519
|
+
includeImages?: boolean | undefined;
|
|
2520
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
2521
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
2522
|
+
includeDomains?: string[] | undefined;
|
|
2523
|
+
excludeDomains?: string[] | undefined;
|
|
2524
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
2525
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
2526
|
+
includeImageDescriptions?: boolean | undefined;
|
|
2527
|
+
includeFavicon?: boolean | undefined;
|
|
2528
|
+
chunksPerSource?: number | undefined;
|
|
2529
|
+
} | undefined;
|
|
2530
|
+
tavilyScraperOptions?: {
|
|
2531
|
+
timeout?: number | undefined;
|
|
2532
|
+
includeImages?: boolean | undefined;
|
|
2533
|
+
includeFavicon?: boolean | undefined;
|
|
2534
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
2535
|
+
format?: "text" | "markdown" | undefined;
|
|
2536
|
+
} | undefined;
|
|
2146
2537
|
}>;
|
|
2147
2538
|
export type TWebSearchConfig = DeepPartial<z.infer<typeof webSearchSchema>>;
|
|
2148
2539
|
export declare const ocrSchema: z.ZodObject<{
|
|
@@ -2198,12 +2589,16 @@ export declare const memorySchema: z.ZodObject<{
|
|
|
2198
2589
|
personalize: z.ZodDefault<z.ZodBoolean>;
|
|
2199
2590
|
messageWindowSize: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
2200
2591
|
agent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2592
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2201
2593
|
id: z.ZodString;
|
|
2202
2594
|
}, "strip", z.ZodTypeAny, {
|
|
2203
2595
|
id: string;
|
|
2596
|
+
enabled?: boolean | undefined;
|
|
2204
2597
|
}, {
|
|
2205
2598
|
id: string;
|
|
2599
|
+
enabled?: boolean | undefined;
|
|
2206
2600
|
}>, z.ZodObject<{
|
|
2601
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2207
2602
|
provider: z.ZodString;
|
|
2208
2603
|
model: z.ZodString;
|
|
2209
2604
|
instructions: z.ZodOptional<z.ZodString>;
|
|
@@ -2211,11 +2606,13 @@ export declare const memorySchema: z.ZodObject<{
|
|
|
2211
2606
|
}, "strip", z.ZodTypeAny, {
|
|
2212
2607
|
model: string;
|
|
2213
2608
|
provider: string;
|
|
2609
|
+
enabled?: boolean | undefined;
|
|
2214
2610
|
instructions?: string | undefined;
|
|
2215
2611
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2216
2612
|
}, {
|
|
2217
2613
|
model: string;
|
|
2218
2614
|
provider: string;
|
|
2615
|
+
enabled?: boolean | undefined;
|
|
2219
2616
|
instructions?: string | undefined;
|
|
2220
2617
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2221
2618
|
}>]>>;
|
|
@@ -2228,9 +2625,11 @@ export declare const memorySchema: z.ZodObject<{
|
|
|
2228
2625
|
tokenLimit?: number | undefined;
|
|
2229
2626
|
agent?: {
|
|
2230
2627
|
id: string;
|
|
2628
|
+
enabled?: boolean | undefined;
|
|
2231
2629
|
} | {
|
|
2232
2630
|
model: string;
|
|
2233
2631
|
provider: string;
|
|
2632
|
+
enabled?: boolean | undefined;
|
|
2234
2633
|
instructions?: string | undefined;
|
|
2235
2634
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2236
2635
|
} | undefined;
|
|
@@ -2243,24 +2642,44 @@ export declare const memorySchema: z.ZodObject<{
|
|
|
2243
2642
|
messageWindowSize?: number | undefined;
|
|
2244
2643
|
agent?: {
|
|
2245
2644
|
id: string;
|
|
2645
|
+
enabled?: boolean | undefined;
|
|
2246
2646
|
} | {
|
|
2247
2647
|
model: string;
|
|
2248
2648
|
provider: string;
|
|
2649
|
+
enabled?: boolean | undefined;
|
|
2249
2650
|
instructions?: string | undefined;
|
|
2250
2651
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2251
2652
|
} | undefined;
|
|
2252
2653
|
}>;
|
|
2253
2654
|
export type TMemoryConfig = DeepPartial<z.infer<typeof memorySchema>>;
|
|
2254
|
-
export declare const summarizationTriggerSchema: z.ZodObject<{
|
|
2255
|
-
type: z.
|
|
2655
|
+
export declare const summarizationTriggerSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2656
|
+
type: z.ZodLiteral<"token_ratio">;
|
|
2256
2657
|
value: z.ZodNumber;
|
|
2257
2658
|
}, "strip", z.ZodTypeAny, {
|
|
2258
2659
|
value: number;
|
|
2259
|
-
type: "
|
|
2660
|
+
type: "token_ratio";
|
|
2260
2661
|
}, {
|
|
2261
2662
|
value: number;
|
|
2262
|
-
type: "
|
|
2263
|
-
}
|
|
2663
|
+
type: "token_ratio";
|
|
2664
|
+
}>, z.ZodObject<{
|
|
2665
|
+
type: z.ZodLiteral<"remaining_tokens">;
|
|
2666
|
+
value: z.ZodNumber;
|
|
2667
|
+
}, "strip", z.ZodTypeAny, {
|
|
2668
|
+
value: number;
|
|
2669
|
+
type: "remaining_tokens";
|
|
2670
|
+
}, {
|
|
2671
|
+
value: number;
|
|
2672
|
+
type: "remaining_tokens";
|
|
2673
|
+
}>, z.ZodObject<{
|
|
2674
|
+
type: z.ZodLiteral<"messages_to_refine">;
|
|
2675
|
+
value: z.ZodNumber;
|
|
2676
|
+
}, "strip", z.ZodTypeAny, {
|
|
2677
|
+
value: number;
|
|
2678
|
+
type: "messages_to_refine";
|
|
2679
|
+
}, {
|
|
2680
|
+
value: number;
|
|
2681
|
+
type: "messages_to_refine";
|
|
2682
|
+
}>]>;
|
|
2264
2683
|
export declare const contextPruningSchema: z.ZodObject<{
|
|
2265
2684
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2266
2685
|
keepLastAssistants: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2285,16 +2704,34 @@ export declare const summarizationConfigSchema: z.ZodObject<{
|
|
|
2285
2704
|
provider: z.ZodOptional<z.ZodString>;
|
|
2286
2705
|
model: z.ZodOptional<z.ZodString>;
|
|
2287
2706
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
2288
|
-
trigger: z.ZodOptional<z.ZodObject<{
|
|
2289
|
-
type: z.
|
|
2707
|
+
trigger: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2708
|
+
type: z.ZodLiteral<"token_ratio">;
|
|
2290
2709
|
value: z.ZodNumber;
|
|
2291
2710
|
}, "strip", z.ZodTypeAny, {
|
|
2292
2711
|
value: number;
|
|
2293
|
-
type: "
|
|
2712
|
+
type: "token_ratio";
|
|
2294
2713
|
}, {
|
|
2295
2714
|
value: number;
|
|
2296
|
-
type: "
|
|
2297
|
-
}
|
|
2715
|
+
type: "token_ratio";
|
|
2716
|
+
}>, z.ZodObject<{
|
|
2717
|
+
type: z.ZodLiteral<"remaining_tokens">;
|
|
2718
|
+
value: z.ZodNumber;
|
|
2719
|
+
}, "strip", z.ZodTypeAny, {
|
|
2720
|
+
value: number;
|
|
2721
|
+
type: "remaining_tokens";
|
|
2722
|
+
}, {
|
|
2723
|
+
value: number;
|
|
2724
|
+
type: "remaining_tokens";
|
|
2725
|
+
}>, z.ZodObject<{
|
|
2726
|
+
type: z.ZodLiteral<"messages_to_refine">;
|
|
2727
|
+
value: z.ZodNumber;
|
|
2728
|
+
}, "strip", z.ZodTypeAny, {
|
|
2729
|
+
value: number;
|
|
2730
|
+
type: "messages_to_refine";
|
|
2731
|
+
}, {
|
|
2732
|
+
value: number;
|
|
2733
|
+
type: "messages_to_refine";
|
|
2734
|
+
}>]>>;
|
|
2298
2735
|
prompt: z.ZodOptional<z.ZodString>;
|
|
2299
2736
|
updatePrompt: z.ZodOptional<z.ZodString>;
|
|
2300
2737
|
reserveRatio: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2321,12 +2758,18 @@ export declare const summarizationConfigSchema: z.ZodObject<{
|
|
|
2321
2758
|
}, "strip", z.ZodTypeAny, {
|
|
2322
2759
|
model?: string | undefined;
|
|
2323
2760
|
prompt?: string | undefined;
|
|
2324
|
-
provider?: string | undefined;
|
|
2325
2761
|
enabled?: boolean | undefined;
|
|
2762
|
+
provider?: string | undefined;
|
|
2326
2763
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
2327
2764
|
trigger?: {
|
|
2328
2765
|
value: number;
|
|
2329
|
-
type: "
|
|
2766
|
+
type: "token_ratio";
|
|
2767
|
+
} | {
|
|
2768
|
+
value: number;
|
|
2769
|
+
type: "remaining_tokens";
|
|
2770
|
+
} | {
|
|
2771
|
+
value: number;
|
|
2772
|
+
type: "messages_to_refine";
|
|
2330
2773
|
} | undefined;
|
|
2331
2774
|
updatePrompt?: string | undefined;
|
|
2332
2775
|
reserveRatio?: number | undefined;
|
|
@@ -2341,12 +2784,18 @@ export declare const summarizationConfigSchema: z.ZodObject<{
|
|
|
2341
2784
|
}, {
|
|
2342
2785
|
model?: string | undefined;
|
|
2343
2786
|
prompt?: string | undefined;
|
|
2344
|
-
provider?: string | undefined;
|
|
2345
2787
|
enabled?: boolean | undefined;
|
|
2788
|
+
provider?: string | undefined;
|
|
2346
2789
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
2347
2790
|
trigger?: {
|
|
2348
2791
|
value: number;
|
|
2349
|
-
type: "
|
|
2792
|
+
type: "token_ratio";
|
|
2793
|
+
} | {
|
|
2794
|
+
value: number;
|
|
2795
|
+
type: "remaining_tokens";
|
|
2796
|
+
} | {
|
|
2797
|
+
value: number;
|
|
2798
|
+
type: "messages_to_refine";
|
|
2350
2799
|
} | undefined;
|
|
2351
2800
|
updatePrompt?: string | undefined;
|
|
2352
2801
|
reserveRatio?: number | undefined;
|
|
@@ -2745,6 +3194,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2745
3194
|
firecrawlApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2746
3195
|
firecrawlApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2747
3196
|
firecrawlVersion: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3197
|
+
tavilyApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3198
|
+
tavilySearchUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3199
|
+
tavilyExtractUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2748
3200
|
jinaApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2749
3201
|
jinaApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2750
3202
|
cohereApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -2848,6 +3300,71 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2848
3300
|
tag?: string | null | undefined;
|
|
2849
3301
|
} | undefined;
|
|
2850
3302
|
}>>;
|
|
3303
|
+
tavilySearchOptions: z.ZodOptional<z.ZodObject<{
|
|
3304
|
+
searchDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced", "fast", "ultra-fast"]>>;
|
|
3305
|
+
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
3306
|
+
includeImages: z.ZodOptional<z.ZodBoolean>;
|
|
3307
|
+
includeAnswer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["basic", "advanced"]>]>>;
|
|
3308
|
+
includeRawContent: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["markdown", "text"]>]>>;
|
|
3309
|
+
includeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3310
|
+
excludeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3311
|
+
topic: z.ZodOptional<z.ZodEnum<["general", "news", "finance"]>>;
|
|
3312
|
+
timeRange: z.ZodOptional<z.ZodEnum<["day", "week", "month", "year", "d", "w", "m", "y"]>>;
|
|
3313
|
+
includeImageDescriptions: z.ZodOptional<z.ZodBoolean>;
|
|
3314
|
+
includeFavicon: z.ZodOptional<z.ZodBoolean>;
|
|
3315
|
+
chunksPerSource: z.ZodOptional<z.ZodNumber>;
|
|
3316
|
+
safeSearch: z.ZodOptional<z.ZodBoolean>;
|
|
3317
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
3318
|
+
}, "strip", z.ZodTypeAny, {
|
|
3319
|
+
safeSearch?: boolean | undefined;
|
|
3320
|
+
timeout?: number | undefined;
|
|
3321
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
3322
|
+
maxResults?: number | undefined;
|
|
3323
|
+
includeImages?: boolean | undefined;
|
|
3324
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
3325
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
3326
|
+
includeDomains?: string[] | undefined;
|
|
3327
|
+
excludeDomains?: string[] | undefined;
|
|
3328
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
3329
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
3330
|
+
includeImageDescriptions?: boolean | undefined;
|
|
3331
|
+
includeFavicon?: boolean | undefined;
|
|
3332
|
+
chunksPerSource?: number | undefined;
|
|
3333
|
+
}, {
|
|
3334
|
+
safeSearch?: boolean | undefined;
|
|
3335
|
+
timeout?: number | undefined;
|
|
3336
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
3337
|
+
maxResults?: number | undefined;
|
|
3338
|
+
includeImages?: boolean | undefined;
|
|
3339
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
3340
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
3341
|
+
includeDomains?: string[] | undefined;
|
|
3342
|
+
excludeDomains?: string[] | undefined;
|
|
3343
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
3344
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
3345
|
+
includeImageDescriptions?: boolean | undefined;
|
|
3346
|
+
includeFavicon?: boolean | undefined;
|
|
3347
|
+
chunksPerSource?: number | undefined;
|
|
3348
|
+
}>>;
|
|
3349
|
+
tavilyScraperOptions: z.ZodOptional<z.ZodObject<{
|
|
3350
|
+
extractDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced"]>>;
|
|
3351
|
+
includeImages: z.ZodOptional<z.ZodBoolean>;
|
|
3352
|
+
includeFavicon: z.ZodOptional<z.ZodBoolean>;
|
|
3353
|
+
format: z.ZodOptional<z.ZodEnum<["markdown", "text"]>>;
|
|
3354
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
3355
|
+
}, "strip", z.ZodTypeAny, {
|
|
3356
|
+
timeout?: number | undefined;
|
|
3357
|
+
includeImages?: boolean | undefined;
|
|
3358
|
+
includeFavicon?: boolean | undefined;
|
|
3359
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
3360
|
+
format?: "text" | "markdown" | undefined;
|
|
3361
|
+
}, {
|
|
3362
|
+
timeout?: number | undefined;
|
|
3363
|
+
includeImages?: boolean | undefined;
|
|
3364
|
+
includeFavicon?: boolean | undefined;
|
|
3365
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
3366
|
+
format?: "text" | "markdown" | undefined;
|
|
3367
|
+
}>>;
|
|
2851
3368
|
}, "strip", z.ZodTypeAny, {
|
|
2852
3369
|
serperApiKey: string;
|
|
2853
3370
|
searxngInstanceUrl: string;
|
|
@@ -2855,6 +3372,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2855
3372
|
firecrawlApiKey: string;
|
|
2856
3373
|
firecrawlApiUrl: string;
|
|
2857
3374
|
firecrawlVersion: string;
|
|
3375
|
+
tavilyApiKey: string;
|
|
3376
|
+
tavilySearchUrl: string;
|
|
3377
|
+
tavilyExtractUrl: string;
|
|
2858
3378
|
jinaApiKey: string;
|
|
2859
3379
|
jinaApiUrl: string;
|
|
2860
3380
|
cohereApiKey: string;
|
|
@@ -2890,6 +3410,29 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2890
3410
|
tag?: string | null | undefined;
|
|
2891
3411
|
} | undefined;
|
|
2892
3412
|
} | undefined;
|
|
3413
|
+
tavilySearchOptions?: {
|
|
3414
|
+
safeSearch?: boolean | undefined;
|
|
3415
|
+
timeout?: number | undefined;
|
|
3416
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
3417
|
+
maxResults?: number | undefined;
|
|
3418
|
+
includeImages?: boolean | undefined;
|
|
3419
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
3420
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
3421
|
+
includeDomains?: string[] | undefined;
|
|
3422
|
+
excludeDomains?: string[] | undefined;
|
|
3423
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
3424
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
3425
|
+
includeImageDescriptions?: boolean | undefined;
|
|
3426
|
+
includeFavicon?: boolean | undefined;
|
|
3427
|
+
chunksPerSource?: number | undefined;
|
|
3428
|
+
} | undefined;
|
|
3429
|
+
tavilyScraperOptions?: {
|
|
3430
|
+
timeout?: number | undefined;
|
|
3431
|
+
includeImages?: boolean | undefined;
|
|
3432
|
+
includeFavicon?: boolean | undefined;
|
|
3433
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
3434
|
+
format?: "text" | "markdown" | undefined;
|
|
3435
|
+
} | undefined;
|
|
2893
3436
|
}, {
|
|
2894
3437
|
serperApiKey?: string | undefined;
|
|
2895
3438
|
searxngInstanceUrl?: string | undefined;
|
|
@@ -2897,6 +3440,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2897
3440
|
firecrawlApiKey?: string | undefined;
|
|
2898
3441
|
firecrawlApiUrl?: string | undefined;
|
|
2899
3442
|
firecrawlVersion?: string | undefined;
|
|
3443
|
+
tavilyApiKey?: string | undefined;
|
|
3444
|
+
tavilySearchUrl?: string | undefined;
|
|
3445
|
+
tavilyExtractUrl?: string | undefined;
|
|
2900
3446
|
jinaApiKey?: string | undefined;
|
|
2901
3447
|
jinaApiUrl?: string | undefined;
|
|
2902
3448
|
cohereApiKey?: string | undefined;
|
|
@@ -2932,6 +3478,29 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2932
3478
|
tag?: string | null | undefined;
|
|
2933
3479
|
} | undefined;
|
|
2934
3480
|
} | undefined;
|
|
3481
|
+
tavilySearchOptions?: {
|
|
3482
|
+
safeSearch?: boolean | undefined;
|
|
3483
|
+
timeout?: number | undefined;
|
|
3484
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
3485
|
+
maxResults?: number | undefined;
|
|
3486
|
+
includeImages?: boolean | undefined;
|
|
3487
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
3488
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
3489
|
+
includeDomains?: string[] | undefined;
|
|
3490
|
+
excludeDomains?: string[] | undefined;
|
|
3491
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
3492
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
3493
|
+
includeImageDescriptions?: boolean | undefined;
|
|
3494
|
+
includeFavicon?: boolean | undefined;
|
|
3495
|
+
chunksPerSource?: number | undefined;
|
|
3496
|
+
} | undefined;
|
|
3497
|
+
tavilyScraperOptions?: {
|
|
3498
|
+
timeout?: number | undefined;
|
|
3499
|
+
includeImages?: boolean | undefined;
|
|
3500
|
+
includeFavicon?: boolean | undefined;
|
|
3501
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
3502
|
+
format?: "text" | "markdown" | undefined;
|
|
3503
|
+
} | undefined;
|
|
2935
3504
|
}>>;
|
|
2936
3505
|
memory: z.ZodOptional<z.ZodObject<{
|
|
2937
3506
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2941,12 +3510,16 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2941
3510
|
personalize: z.ZodDefault<z.ZodBoolean>;
|
|
2942
3511
|
messageWindowSize: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
2943
3512
|
agent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3513
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2944
3514
|
id: z.ZodString;
|
|
2945
3515
|
}, "strip", z.ZodTypeAny, {
|
|
2946
3516
|
id: string;
|
|
3517
|
+
enabled?: boolean | undefined;
|
|
2947
3518
|
}, {
|
|
2948
3519
|
id: string;
|
|
3520
|
+
enabled?: boolean | undefined;
|
|
2949
3521
|
}>, z.ZodObject<{
|
|
3522
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2950
3523
|
provider: z.ZodString;
|
|
2951
3524
|
model: z.ZodString;
|
|
2952
3525
|
instructions: z.ZodOptional<z.ZodString>;
|
|
@@ -2954,11 +3527,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2954
3527
|
}, "strip", z.ZodTypeAny, {
|
|
2955
3528
|
model: string;
|
|
2956
3529
|
provider: string;
|
|
3530
|
+
enabled?: boolean | undefined;
|
|
2957
3531
|
instructions?: string | undefined;
|
|
2958
3532
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2959
3533
|
}, {
|
|
2960
3534
|
model: string;
|
|
2961
3535
|
provider: string;
|
|
3536
|
+
enabled?: boolean | undefined;
|
|
2962
3537
|
instructions?: string | undefined;
|
|
2963
3538
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2964
3539
|
}>]>>;
|
|
@@ -2971,9 +3546,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2971
3546
|
tokenLimit?: number | undefined;
|
|
2972
3547
|
agent?: {
|
|
2973
3548
|
id: string;
|
|
3549
|
+
enabled?: boolean | undefined;
|
|
2974
3550
|
} | {
|
|
2975
3551
|
model: string;
|
|
2976
3552
|
provider: string;
|
|
3553
|
+
enabled?: boolean | undefined;
|
|
2977
3554
|
instructions?: string | undefined;
|
|
2978
3555
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2979
3556
|
} | undefined;
|
|
@@ -2986,9 +3563,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2986
3563
|
messageWindowSize?: number | undefined;
|
|
2987
3564
|
agent?: {
|
|
2988
3565
|
id: string;
|
|
3566
|
+
enabled?: boolean | undefined;
|
|
2989
3567
|
} | {
|
|
2990
3568
|
model: string;
|
|
2991
3569
|
provider: string;
|
|
3570
|
+
enabled?: boolean | undefined;
|
|
2992
3571
|
instructions?: string | undefined;
|
|
2993
3572
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
2994
3573
|
} | undefined;
|
|
@@ -2998,16 +3577,34 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2998
3577
|
provider: z.ZodOptional<z.ZodString>;
|
|
2999
3578
|
model: z.ZodOptional<z.ZodString>;
|
|
3000
3579
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
3001
|
-
trigger: z.ZodOptional<z.ZodObject<{
|
|
3002
|
-
type: z.
|
|
3580
|
+
trigger: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3581
|
+
type: z.ZodLiteral<"token_ratio">;
|
|
3003
3582
|
value: z.ZodNumber;
|
|
3004
3583
|
}, "strip", z.ZodTypeAny, {
|
|
3005
3584
|
value: number;
|
|
3006
|
-
type: "
|
|
3585
|
+
type: "token_ratio";
|
|
3007
3586
|
}, {
|
|
3008
3587
|
value: number;
|
|
3009
|
-
type: "
|
|
3010
|
-
}
|
|
3588
|
+
type: "token_ratio";
|
|
3589
|
+
}>, z.ZodObject<{
|
|
3590
|
+
type: z.ZodLiteral<"remaining_tokens">;
|
|
3591
|
+
value: z.ZodNumber;
|
|
3592
|
+
}, "strip", z.ZodTypeAny, {
|
|
3593
|
+
value: number;
|
|
3594
|
+
type: "remaining_tokens";
|
|
3595
|
+
}, {
|
|
3596
|
+
value: number;
|
|
3597
|
+
type: "remaining_tokens";
|
|
3598
|
+
}>, z.ZodObject<{
|
|
3599
|
+
type: z.ZodLiteral<"messages_to_refine">;
|
|
3600
|
+
value: z.ZodNumber;
|
|
3601
|
+
}, "strip", z.ZodTypeAny, {
|
|
3602
|
+
value: number;
|
|
3603
|
+
type: "messages_to_refine";
|
|
3604
|
+
}, {
|
|
3605
|
+
value: number;
|
|
3606
|
+
type: "messages_to_refine";
|
|
3607
|
+
}>]>>;
|
|
3011
3608
|
prompt: z.ZodOptional<z.ZodString>;
|
|
3012
3609
|
updatePrompt: z.ZodOptional<z.ZodString>;
|
|
3013
3610
|
reserveRatio: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3034,12 +3631,18 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3034
3631
|
}, "strip", z.ZodTypeAny, {
|
|
3035
3632
|
model?: string | undefined;
|
|
3036
3633
|
prompt?: string | undefined;
|
|
3037
|
-
provider?: string | undefined;
|
|
3038
3634
|
enabled?: boolean | undefined;
|
|
3635
|
+
provider?: string | undefined;
|
|
3039
3636
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
3040
3637
|
trigger?: {
|
|
3041
3638
|
value: number;
|
|
3042
|
-
type: "
|
|
3639
|
+
type: "token_ratio";
|
|
3640
|
+
} | {
|
|
3641
|
+
value: number;
|
|
3642
|
+
type: "remaining_tokens";
|
|
3643
|
+
} | {
|
|
3644
|
+
value: number;
|
|
3645
|
+
type: "messages_to_refine";
|
|
3043
3646
|
} | undefined;
|
|
3044
3647
|
updatePrompt?: string | undefined;
|
|
3045
3648
|
reserveRatio?: number | undefined;
|
|
@@ -3054,12 +3657,18 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3054
3657
|
}, {
|
|
3055
3658
|
model?: string | undefined;
|
|
3056
3659
|
prompt?: string | undefined;
|
|
3057
|
-
provider?: string | undefined;
|
|
3058
3660
|
enabled?: boolean | undefined;
|
|
3661
|
+
provider?: string | undefined;
|
|
3059
3662
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
3060
3663
|
trigger?: {
|
|
3061
3664
|
value: number;
|
|
3062
|
-
type: "
|
|
3665
|
+
type: "token_ratio";
|
|
3666
|
+
} | {
|
|
3667
|
+
value: number;
|
|
3668
|
+
type: "remaining_tokens";
|
|
3669
|
+
} | {
|
|
3670
|
+
value: number;
|
|
3671
|
+
type: "messages_to_refine";
|
|
3063
3672
|
} | undefined;
|
|
3064
3673
|
updatePrompt?: string | undefined;
|
|
3065
3674
|
reserveRatio?: number | undefined;
|
|
@@ -3141,12 +3750,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3141
3750
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
3142
3751
|
}, "strip", z.ZodTypeAny, {
|
|
3143
3752
|
source: "user" | "admin";
|
|
3144
|
-
authorization_type: "
|
|
3753
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3145
3754
|
key?: string | undefined;
|
|
3146
3755
|
custom_header?: string | undefined;
|
|
3147
3756
|
}, {
|
|
3148
3757
|
source: "user" | "admin";
|
|
3149
|
-
authorization_type: "
|
|
3758
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3150
3759
|
key?: string | undefined;
|
|
3151
3760
|
custom_header?: string | undefined;
|
|
3152
3761
|
}>>;
|
|
@@ -3174,7 +3783,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3174
3783
|
description?: string | undefined;
|
|
3175
3784
|
apiKey?: {
|
|
3176
3785
|
source: "user" | "admin";
|
|
3177
|
-
authorization_type: "
|
|
3786
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3178
3787
|
key?: string | undefined;
|
|
3179
3788
|
custom_header?: string | undefined;
|
|
3180
3789
|
} | undefined;
|
|
@@ -3217,7 +3826,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3217
3826
|
description?: string | undefined;
|
|
3218
3827
|
apiKey?: {
|
|
3219
3828
|
source: "user" | "admin";
|
|
3220
|
-
authorization_type: "
|
|
3829
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3221
3830
|
key?: string | undefined;
|
|
3222
3831
|
custom_header?: string | undefined;
|
|
3223
3832
|
} | undefined;
|
|
@@ -3317,12 +3926,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3317
3926
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
3318
3927
|
}, "strip", z.ZodTypeAny, {
|
|
3319
3928
|
source: "user" | "admin";
|
|
3320
|
-
authorization_type: "
|
|
3929
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3321
3930
|
key?: string | undefined;
|
|
3322
3931
|
custom_header?: string | undefined;
|
|
3323
3932
|
}, {
|
|
3324
3933
|
source: "user" | "admin";
|
|
3325
|
-
authorization_type: "
|
|
3934
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3326
3935
|
key?: string | undefined;
|
|
3327
3936
|
custom_header?: string | undefined;
|
|
3328
3937
|
}>>;
|
|
@@ -3346,7 +3955,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3346
3955
|
description?: string | undefined;
|
|
3347
3956
|
apiKey?: {
|
|
3348
3957
|
source: "user" | "admin";
|
|
3349
|
-
authorization_type: "
|
|
3958
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3350
3959
|
key?: string | undefined;
|
|
3351
3960
|
custom_header?: string | undefined;
|
|
3352
3961
|
} | undefined;
|
|
@@ -3386,7 +3995,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3386
3995
|
description?: string | undefined;
|
|
3387
3996
|
apiKey?: {
|
|
3388
3997
|
source: "user" | "admin";
|
|
3389
|
-
authorization_type: "
|
|
3998
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3390
3999
|
key?: string | undefined;
|
|
3391
4000
|
custom_header?: string | undefined;
|
|
3392
4001
|
} | undefined;
|
|
@@ -3484,12 +4093,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3484
4093
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
3485
4094
|
}, "strip", z.ZodTypeAny, {
|
|
3486
4095
|
source: "user" | "admin";
|
|
3487
|
-
authorization_type: "
|
|
4096
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3488
4097
|
key?: string | undefined;
|
|
3489
4098
|
custom_header?: string | undefined;
|
|
3490
4099
|
}, {
|
|
3491
4100
|
source: "user" | "admin";
|
|
3492
|
-
authorization_type: "
|
|
4101
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3493
4102
|
key?: string | undefined;
|
|
3494
4103
|
custom_header?: string | undefined;
|
|
3495
4104
|
}>>;
|
|
@@ -3514,7 +4123,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3514
4123
|
description?: string | undefined;
|
|
3515
4124
|
apiKey?: {
|
|
3516
4125
|
source: "user" | "admin";
|
|
3517
|
-
authorization_type: "
|
|
4126
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3518
4127
|
key?: string | undefined;
|
|
3519
4128
|
custom_header?: string | undefined;
|
|
3520
4129
|
} | undefined;
|
|
@@ -3555,7 +4164,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3555
4164
|
description?: string | undefined;
|
|
3556
4165
|
apiKey?: {
|
|
3557
4166
|
source: "user" | "admin";
|
|
3558
|
-
authorization_type: "
|
|
4167
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3559
4168
|
key?: string | undefined;
|
|
3560
4169
|
custom_header?: string | undefined;
|
|
3561
4170
|
} | undefined;
|
|
@@ -3654,12 +4263,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3654
4263
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
3655
4264
|
}, "strip", z.ZodTypeAny, {
|
|
3656
4265
|
source: "user" | "admin";
|
|
3657
|
-
authorization_type: "
|
|
4266
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3658
4267
|
key?: string | undefined;
|
|
3659
4268
|
custom_header?: string | undefined;
|
|
3660
4269
|
}, {
|
|
3661
4270
|
source: "user" | "admin";
|
|
3662
|
-
authorization_type: "
|
|
4271
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3663
4272
|
key?: string | undefined;
|
|
3664
4273
|
custom_header?: string | undefined;
|
|
3665
4274
|
}>>;
|
|
@@ -3684,7 +4293,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3684
4293
|
description?: string | undefined;
|
|
3685
4294
|
apiKey?: {
|
|
3686
4295
|
source: "user" | "admin";
|
|
3687
|
-
authorization_type: "
|
|
4296
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3688
4297
|
key?: string | undefined;
|
|
3689
4298
|
custom_header?: string | undefined;
|
|
3690
4299
|
} | undefined;
|
|
@@ -3725,7 +4334,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3725
4334
|
description?: string | undefined;
|
|
3726
4335
|
apiKey?: {
|
|
3727
4336
|
source: "user" | "admin";
|
|
3728
|
-
authorization_type: "
|
|
4337
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3729
4338
|
key?: string | undefined;
|
|
3730
4339
|
custom_header?: string | undefined;
|
|
3731
4340
|
} | undefined;
|
|
@@ -3762,10 +4371,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3762
4371
|
}>]>>>;
|
|
3763
4372
|
mcpSettings: z.ZodOptional<z.ZodObject<{
|
|
3764
4373
|
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4374
|
+
allowedAddresses: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, "many">>;
|
|
3765
4375
|
}, "strip", z.ZodTypeAny, {
|
|
3766
4376
|
allowedDomains?: string[] | undefined;
|
|
4377
|
+
allowedAddresses?: string[] | undefined;
|
|
3767
4378
|
}, {
|
|
3768
4379
|
allowedDomains?: string[] | undefined;
|
|
4380
|
+
allowedAddresses?: string[] | undefined;
|
|
3769
4381
|
}>>;
|
|
3770
4382
|
interface: z.ZodDefault<z.ZodObject<{
|
|
3771
4383
|
privacyPolicy: z.ZodOptional<z.ZodObject<{
|
|
@@ -3875,6 +4487,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3875
4487
|
}>]>>;
|
|
3876
4488
|
temporaryChat: z.ZodOptional<z.ZodBoolean>;
|
|
3877
4489
|
temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
|
|
4490
|
+
autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
|
|
3878
4491
|
runCode: z.ZodOptional<z.ZodBoolean>;
|
|
3879
4492
|
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
3880
4493
|
peoplePicker: z.ZodOptional<z.ZodObject<{
|
|
@@ -3915,7 +4528,33 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3915
4528
|
share?: boolean | undefined;
|
|
3916
4529
|
public?: boolean | undefined;
|
|
3917
4530
|
}>>;
|
|
4531
|
+
skills: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
4532
|
+
use: z.ZodOptional<z.ZodBoolean>;
|
|
4533
|
+
create: z.ZodOptional<z.ZodBoolean>;
|
|
4534
|
+
share: z.ZodOptional<z.ZodBoolean>;
|
|
4535
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
4536
|
+
defaultActiveOnShare: z.ZodOptional<z.ZodBoolean>;
|
|
4537
|
+
}, "strip", z.ZodTypeAny, {
|
|
4538
|
+
use?: boolean | undefined;
|
|
4539
|
+
create?: boolean | undefined;
|
|
4540
|
+
share?: boolean | undefined;
|
|
4541
|
+
public?: boolean | undefined;
|
|
4542
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
4543
|
+
}, {
|
|
4544
|
+
use?: boolean | undefined;
|
|
4545
|
+
create?: boolean | undefined;
|
|
4546
|
+
share?: boolean | undefined;
|
|
4547
|
+
public?: boolean | undefined;
|
|
4548
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
4549
|
+
}>]>>;
|
|
3918
4550
|
}, "strip", z.ZodTypeAny, {
|
|
4551
|
+
skills?: boolean | {
|
|
4552
|
+
use?: boolean | undefined;
|
|
4553
|
+
create?: boolean | undefined;
|
|
4554
|
+
share?: boolean | undefined;
|
|
4555
|
+
public?: boolean | undefined;
|
|
4556
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
4557
|
+
} | undefined;
|
|
3919
4558
|
webSearch?: boolean | undefined;
|
|
3920
4559
|
parameters?: boolean | undefined;
|
|
3921
4560
|
mcpServers?: {
|
|
@@ -3960,6 +4599,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3960
4599
|
} | undefined;
|
|
3961
4600
|
temporaryChat?: boolean | undefined;
|
|
3962
4601
|
temporaryChatRetention?: number | undefined;
|
|
4602
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
3963
4603
|
runCode?: boolean | undefined;
|
|
3964
4604
|
peoplePicker?: {
|
|
3965
4605
|
users?: boolean | undefined;
|
|
@@ -3978,6 +4618,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3978
4618
|
public?: boolean | undefined;
|
|
3979
4619
|
} | undefined;
|
|
3980
4620
|
}, {
|
|
4621
|
+
skills?: boolean | {
|
|
4622
|
+
use?: boolean | undefined;
|
|
4623
|
+
create?: boolean | undefined;
|
|
4624
|
+
share?: boolean | undefined;
|
|
4625
|
+
public?: boolean | undefined;
|
|
4626
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
4627
|
+
} | undefined;
|
|
3981
4628
|
webSearch?: boolean | undefined;
|
|
3982
4629
|
parameters?: boolean | undefined;
|
|
3983
4630
|
mcpServers?: {
|
|
@@ -4022,6 +4669,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4022
4669
|
} | undefined;
|
|
4023
4670
|
temporaryChat?: boolean | undefined;
|
|
4024
4671
|
temporaryChatRetention?: number | undefined;
|
|
4672
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
4025
4673
|
runCode?: boolean | undefined;
|
|
4026
4674
|
peoplePicker?: {
|
|
4027
4675
|
users?: boolean | undefined;
|
|
@@ -4065,29 +4713,135 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4065
4713
|
size?: "normal" | "compact" | "flexible" | "invisible" | undefined;
|
|
4066
4714
|
} | undefined;
|
|
4067
4715
|
}>>;
|
|
4068
|
-
fileStrategy: z.ZodDefault<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
4716
|
+
fileStrategy: z.ZodDefault<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
4069
4717
|
fileStrategies: z.ZodOptional<z.ZodObject<{
|
|
4070
|
-
default: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
4071
|
-
avatar: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
4072
|
-
image: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
4073
|
-
document: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
4718
|
+
default: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
4719
|
+
avatar: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
4720
|
+
image: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
4721
|
+
document: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
4722
|
+
skills: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
4723
|
+
}, "strip", z.ZodTypeAny, {
|
|
4724
|
+
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
4725
|
+
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
4726
|
+
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
4727
|
+
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
4728
|
+
skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
4729
|
+
}, {
|
|
4730
|
+
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
4731
|
+
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
4732
|
+
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
4733
|
+
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
4734
|
+
skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
4735
|
+
}>>;
|
|
4736
|
+
cloudfront: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
4737
|
+
domain: z.ZodString;
|
|
4738
|
+
distributionId: z.ZodOptional<z.ZodString>;
|
|
4739
|
+
invalidateOnDelete: z.ZodDefault<z.ZodBoolean>;
|
|
4740
|
+
imageSigning: z.ZodDefault<z.ZodEnum<["none", "cookies", "url"]>>;
|
|
4741
|
+
urlExpiry: z.ZodDefault<z.ZodNumber>;
|
|
4742
|
+
cookieExpiry: z.ZodDefault<z.ZodNumber>;
|
|
4743
|
+
cookieDomain: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4744
|
+
storageRegion: z.ZodOptional<z.ZodString>;
|
|
4745
|
+
includeRegionInPath: z.ZodDefault<z.ZodBoolean>;
|
|
4746
|
+
requireSignedAccess: z.ZodDefault<z.ZodBoolean>;
|
|
4074
4747
|
}, "strip", z.ZodTypeAny, {
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4748
|
+
domain: string;
|
|
4749
|
+
invalidateOnDelete: boolean;
|
|
4750
|
+
imageSigning: "none" | "cookies" | "url";
|
|
4751
|
+
urlExpiry: number;
|
|
4752
|
+
cookieExpiry: number;
|
|
4753
|
+
includeRegionInPath: boolean;
|
|
4754
|
+
requireSignedAccess: boolean;
|
|
4755
|
+
distributionId?: string | undefined;
|
|
4756
|
+
cookieDomain?: string | undefined;
|
|
4757
|
+
storageRegion?: string | undefined;
|
|
4758
|
+
}, {
|
|
4759
|
+
domain: string;
|
|
4760
|
+
distributionId?: string | undefined;
|
|
4761
|
+
invalidateOnDelete?: boolean | undefined;
|
|
4762
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
4763
|
+
urlExpiry?: number | undefined;
|
|
4764
|
+
cookieExpiry?: number | undefined;
|
|
4765
|
+
cookieDomain?: string | undefined;
|
|
4766
|
+
storageRegion?: string | undefined;
|
|
4767
|
+
includeRegionInPath?: boolean | undefined;
|
|
4768
|
+
requireSignedAccess?: boolean | undefined;
|
|
4769
|
+
}>, {
|
|
4770
|
+
domain: string;
|
|
4771
|
+
invalidateOnDelete: boolean;
|
|
4772
|
+
imageSigning: "none" | "cookies" | "url";
|
|
4773
|
+
urlExpiry: number;
|
|
4774
|
+
cookieExpiry: number;
|
|
4775
|
+
includeRegionInPath: boolean;
|
|
4776
|
+
requireSignedAccess: boolean;
|
|
4777
|
+
distributionId?: string | undefined;
|
|
4778
|
+
cookieDomain?: string | undefined;
|
|
4779
|
+
storageRegion?: string | undefined;
|
|
4780
|
+
}, {
|
|
4781
|
+
domain: string;
|
|
4782
|
+
distributionId?: string | undefined;
|
|
4783
|
+
invalidateOnDelete?: boolean | undefined;
|
|
4784
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
4785
|
+
urlExpiry?: number | undefined;
|
|
4786
|
+
cookieExpiry?: number | undefined;
|
|
4787
|
+
cookieDomain?: string | undefined;
|
|
4788
|
+
storageRegion?: string | undefined;
|
|
4789
|
+
includeRegionInPath?: boolean | undefined;
|
|
4790
|
+
requireSignedAccess?: boolean | undefined;
|
|
4791
|
+
}>, {
|
|
4792
|
+
domain: string;
|
|
4793
|
+
invalidateOnDelete: boolean;
|
|
4794
|
+
imageSigning: "none" | "cookies" | "url";
|
|
4795
|
+
urlExpiry: number;
|
|
4796
|
+
cookieExpiry: number;
|
|
4797
|
+
includeRegionInPath: boolean;
|
|
4798
|
+
requireSignedAccess: boolean;
|
|
4799
|
+
distributionId?: string | undefined;
|
|
4800
|
+
cookieDomain?: string | undefined;
|
|
4801
|
+
storageRegion?: string | undefined;
|
|
4079
4802
|
}, {
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4803
|
+
domain: string;
|
|
4804
|
+
distributionId?: string | undefined;
|
|
4805
|
+
invalidateOnDelete?: boolean | undefined;
|
|
4806
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
4807
|
+
urlExpiry?: number | undefined;
|
|
4808
|
+
cookieExpiry?: number | undefined;
|
|
4809
|
+
cookieDomain?: string | undefined;
|
|
4810
|
+
storageRegion?: string | undefined;
|
|
4811
|
+
includeRegionInPath?: boolean | undefined;
|
|
4812
|
+
requireSignedAccess?: boolean | undefined;
|
|
4813
|
+
}>, {
|
|
4814
|
+
domain: string;
|
|
4815
|
+
invalidateOnDelete: boolean;
|
|
4816
|
+
imageSigning: "none" | "cookies" | "url";
|
|
4817
|
+
urlExpiry: number;
|
|
4818
|
+
cookieExpiry: number;
|
|
4819
|
+
includeRegionInPath: boolean;
|
|
4820
|
+
requireSignedAccess: boolean;
|
|
4821
|
+
distributionId?: string | undefined;
|
|
4822
|
+
cookieDomain?: string | undefined;
|
|
4823
|
+
storageRegion?: string | undefined;
|
|
4824
|
+
}, {
|
|
4825
|
+
domain: string;
|
|
4826
|
+
distributionId?: string | undefined;
|
|
4827
|
+
invalidateOnDelete?: boolean | undefined;
|
|
4828
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
4829
|
+
urlExpiry?: number | undefined;
|
|
4830
|
+
cookieExpiry?: number | undefined;
|
|
4831
|
+
cookieDomain?: string | undefined;
|
|
4832
|
+
storageRegion?: string | undefined;
|
|
4833
|
+
includeRegionInPath?: boolean | undefined;
|
|
4834
|
+
requireSignedAccess?: boolean | undefined;
|
|
4084
4835
|
}>>;
|
|
4085
4836
|
actions: z.ZodOptional<z.ZodObject<{
|
|
4086
4837
|
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4838
|
+
allowedAddresses: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, "many">>;
|
|
4087
4839
|
}, "strip", z.ZodTypeAny, {
|
|
4088
4840
|
allowedDomains?: string[] | undefined;
|
|
4841
|
+
allowedAddresses?: string[] | undefined;
|
|
4089
4842
|
}, {
|
|
4090
4843
|
allowedDomains?: string[] | undefined;
|
|
4844
|
+
allowedAddresses?: string[] | undefined;
|
|
4091
4845
|
}>>;
|
|
4092
4846
|
registration: z.ZodDefault<z.ZodObject<{
|
|
4093
4847
|
socialLogins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4718,6 +5472,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4718
5472
|
totalSizeLimit?: number | undefined;
|
|
4719
5473
|
supportedMimeTypes?: string[] | undefined;
|
|
4720
5474
|
}>>>;
|
|
5475
|
+
skills: z.ZodOptional<z.ZodObject<{
|
|
5476
|
+
fileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
5477
|
+
}, "strip", z.ZodTypeAny, {
|
|
5478
|
+
fileSizeLimit?: number | undefined;
|
|
5479
|
+
}, {
|
|
5480
|
+
fileSizeLimit?: number | undefined;
|
|
5481
|
+
}>>;
|
|
4721
5482
|
serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4722
5483
|
avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4723
5484
|
fileTokenLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4765,6 +5526,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4765
5526
|
text?: {
|
|
4766
5527
|
supportedMimeTypes?: string[] | undefined;
|
|
4767
5528
|
} | undefined;
|
|
5529
|
+
skills?: {
|
|
5530
|
+
fileSizeLimit?: number | undefined;
|
|
5531
|
+
} | undefined;
|
|
4768
5532
|
ocr?: {
|
|
4769
5533
|
supportedMimeTypes?: string[] | undefined;
|
|
4770
5534
|
} | undefined;
|
|
@@ -4792,6 +5556,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4792
5556
|
text?: {
|
|
4793
5557
|
supportedMimeTypes?: string[] | undefined;
|
|
4794
5558
|
} | undefined;
|
|
5559
|
+
skills?: {
|
|
5560
|
+
fileSizeLimit?: number | undefined;
|
|
5561
|
+
} | undefined;
|
|
4795
5562
|
ocr?: {
|
|
4796
5563
|
supportedMimeTypes?: string[] | undefined;
|
|
4797
5564
|
} | undefined;
|
|
@@ -4819,7 +5586,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4819
5586
|
modelSpecs: z.ZodOptional<z.ZodObject<{
|
|
4820
5587
|
enforce: z.ZodDefault<z.ZodBoolean>;
|
|
4821
5588
|
prioritize: z.ZodDefault<z.ZodBoolean>;
|
|
4822
|
-
list: z.ZodArray<z.ZodObject<{
|
|
5589
|
+
list: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4823
5590
|
name: z.ZodString;
|
|
4824
5591
|
label: z.ZodString;
|
|
4825
5592
|
preset: z.ZodObject<Omit<{
|
|
@@ -4950,6 +5717,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4950
5717
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").Verbosity>>>;
|
|
4951
5718
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4952
5719
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").AnthropicEffort>>>;
|
|
5720
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ThinkingDisplay>>>;
|
|
4953
5721
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4954
5722
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4955
5723
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -5018,8 +5786,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5018
5786
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
5019
5787
|
order: z.ZodOptional<z.ZodNumber>;
|
|
5020
5788
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
5021
|
-
}, "conversationId" | "title" | "
|
|
5789
|
+
}, "conversationId" | "title" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
|
|
5022
5790
|
endpoint: string | null;
|
|
5791
|
+
iconURL?: string | null | undefined;
|
|
5792
|
+
greeting?: string | undefined;
|
|
5023
5793
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5024
5794
|
tools?: string[] | {
|
|
5025
5795
|
name: string;
|
|
@@ -5075,6 +5845,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5075
5845
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
5076
5846
|
useResponsesApi?: boolean | undefined;
|
|
5077
5847
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
5848
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
5078
5849
|
web_search?: boolean | undefined;
|
|
5079
5850
|
disableStreaming?: boolean | undefined;
|
|
5080
5851
|
assistant_id?: string | undefined;
|
|
@@ -5111,6 +5882,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5111
5882
|
stop?: string[] | undefined;
|
|
5112
5883
|
}, {
|
|
5113
5884
|
endpoint: string | null;
|
|
5885
|
+
iconURL?: string | null | undefined;
|
|
5886
|
+
greeting?: string | undefined;
|
|
5114
5887
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5115
5888
|
tools?: string[] | {
|
|
5116
5889
|
name: string;
|
|
@@ -5166,6 +5939,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5166
5939
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
5167
5940
|
useResponsesApi?: boolean | undefined;
|
|
5168
5941
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
5942
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
5169
5943
|
web_search?: boolean | undefined;
|
|
5170
5944
|
disableStreaming?: boolean | undefined;
|
|
5171
5945
|
assistant_id?: string | undefined;
|
|
@@ -5220,6 +5994,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5220
5994
|
name: string;
|
|
5221
5995
|
preset: {
|
|
5222
5996
|
endpoint: string | null;
|
|
5997
|
+
iconURL?: string | null | undefined;
|
|
5998
|
+
greeting?: string | undefined;
|
|
5223
5999
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5224
6000
|
tools?: string[] | {
|
|
5225
6001
|
name: string;
|
|
@@ -5275,6 +6051,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5275
6051
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
5276
6052
|
useResponsesApi?: boolean | undefined;
|
|
5277
6053
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
6054
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
5278
6055
|
web_search?: boolean | undefined;
|
|
5279
6056
|
disableStreaming?: boolean | undefined;
|
|
5280
6057
|
assistant_id?: string | undefined;
|
|
@@ -5329,6 +6106,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5329
6106
|
name: string;
|
|
5330
6107
|
preset: {
|
|
5331
6108
|
endpoint: string | null;
|
|
6109
|
+
iconURL?: string | null | undefined;
|
|
6110
|
+
greeting?: string | undefined;
|
|
5332
6111
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5333
6112
|
tools?: string[] | {
|
|
5334
6113
|
name: string;
|
|
@@ -5384,6 +6163,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5384
6163
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
5385
6164
|
useResponsesApi?: boolean | undefined;
|
|
5386
6165
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
6166
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
5387
6167
|
web_search?: boolean | undefined;
|
|
5388
6168
|
disableStreaming?: boolean | undefined;
|
|
5389
6169
|
assistant_id?: string | undefined;
|
|
@@ -5433,7 +6213,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5433
6213
|
showIconInHeader?: boolean | undefined;
|
|
5434
6214
|
authType?: import("./schemas").AuthType | undefined;
|
|
5435
6215
|
executeCode?: boolean | undefined;
|
|
5436
|
-
}>, "many"
|
|
6216
|
+
}>, "many">>;
|
|
5437
6217
|
addedEndpoints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
5438
6218
|
}, "strip", z.ZodTypeAny, {
|
|
5439
6219
|
enforce: boolean;
|
|
@@ -5443,6 +6223,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5443
6223
|
name: string;
|
|
5444
6224
|
preset: {
|
|
5445
6225
|
endpoint: string | null;
|
|
6226
|
+
iconURL?: string | null | undefined;
|
|
6227
|
+
greeting?: string | undefined;
|
|
5446
6228
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5447
6229
|
tools?: string[] | {
|
|
5448
6230
|
name: string;
|
|
@@ -5498,6 +6280,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5498
6280
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
5499
6281
|
useResponsesApi?: boolean | undefined;
|
|
5500
6282
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
6283
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
5501
6284
|
web_search?: boolean | undefined;
|
|
5502
6285
|
disableStreaming?: boolean | undefined;
|
|
5503
6286
|
assistant_id?: string | undefined;
|
|
@@ -5550,11 +6333,15 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5550
6333
|
}[];
|
|
5551
6334
|
addedEndpoints?: string[] | undefined;
|
|
5552
6335
|
}, {
|
|
5553
|
-
|
|
6336
|
+
enforce?: boolean | undefined;
|
|
6337
|
+
prioritize?: boolean | undefined;
|
|
6338
|
+
list?: {
|
|
5554
6339
|
label: string;
|
|
5555
6340
|
name: string;
|
|
5556
6341
|
preset: {
|
|
5557
6342
|
endpoint: string | null;
|
|
6343
|
+
iconURL?: string | null | undefined;
|
|
6344
|
+
greeting?: string | undefined;
|
|
5558
6345
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5559
6346
|
tools?: string[] | {
|
|
5560
6347
|
name: string;
|
|
@@ -5610,6 +6397,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5610
6397
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
5611
6398
|
useResponsesApi?: boolean | undefined;
|
|
5612
6399
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
6400
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
5613
6401
|
web_search?: boolean | undefined;
|
|
5614
6402
|
disableStreaming?: boolean | undefined;
|
|
5615
6403
|
assistant_id?: string | undefined;
|
|
@@ -5659,12 +6447,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5659
6447
|
showIconInHeader?: boolean | undefined;
|
|
5660
6448
|
authType?: import("./schemas").AuthType | undefined;
|
|
5661
6449
|
executeCode?: boolean | undefined;
|
|
5662
|
-
}[];
|
|
5663
|
-
enforce?: boolean | undefined;
|
|
5664
|
-
prioritize?: boolean | undefined;
|
|
6450
|
+
}[] | undefined;
|
|
5665
6451
|
addedEndpoints?: string[] | undefined;
|
|
5666
6452
|
}>>;
|
|
5667
6453
|
endpoints: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
6454
|
+
allowedAddresses: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, "many">>;
|
|
5668
6455
|
all: z.ZodOptional<z.ZodObject<Omit<{
|
|
5669
6456
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
5670
6457
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -6225,6 +7012,96 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6225
7012
|
minRelevanceScore: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
6226
7013
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
6227
7014
|
capabilities: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof AgentCapabilities>, "many">>>;
|
|
7015
|
+
remoteApi: z.ZodOptional<z.ZodObject<{
|
|
7016
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
7017
|
+
apiKey: z.ZodOptional<z.ZodObject<{
|
|
7018
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7019
|
+
}, "strip", z.ZodTypeAny, {
|
|
7020
|
+
enabled: boolean;
|
|
7021
|
+
}, {
|
|
7022
|
+
enabled?: boolean | undefined;
|
|
7023
|
+
}>>;
|
|
7024
|
+
oidc: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
7025
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7026
|
+
issuer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7027
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
7028
|
+
jwksUri: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7029
|
+
scope: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7030
|
+
}, "strip", z.ZodTypeAny, {
|
|
7031
|
+
enabled: boolean;
|
|
7032
|
+
scope?: string | undefined;
|
|
7033
|
+
issuer?: string | undefined;
|
|
7034
|
+
audience?: string | undefined;
|
|
7035
|
+
jwksUri?: string | undefined;
|
|
7036
|
+
}, {
|
|
7037
|
+
enabled?: boolean | undefined;
|
|
7038
|
+
scope?: string | undefined;
|
|
7039
|
+
issuer?: string | undefined;
|
|
7040
|
+
audience?: string | undefined;
|
|
7041
|
+
jwksUri?: string | undefined;
|
|
7042
|
+
}>, {
|
|
7043
|
+
enabled: boolean;
|
|
7044
|
+
scope?: string | undefined;
|
|
7045
|
+
issuer?: string | undefined;
|
|
7046
|
+
audience?: string | undefined;
|
|
7047
|
+
jwksUri?: string | undefined;
|
|
7048
|
+
}, {
|
|
7049
|
+
enabled?: boolean | undefined;
|
|
7050
|
+
scope?: string | undefined;
|
|
7051
|
+
issuer?: string | undefined;
|
|
7052
|
+
audience?: string | undefined;
|
|
7053
|
+
jwksUri?: string | undefined;
|
|
7054
|
+
}>>;
|
|
7055
|
+
}, "strip", z.ZodTypeAny, {
|
|
7056
|
+
apiKey?: {
|
|
7057
|
+
enabled: boolean;
|
|
7058
|
+
} | undefined;
|
|
7059
|
+
oidc?: {
|
|
7060
|
+
enabled: boolean;
|
|
7061
|
+
scope?: string | undefined;
|
|
7062
|
+
issuer?: string | undefined;
|
|
7063
|
+
audience?: string | undefined;
|
|
7064
|
+
jwksUri?: string | undefined;
|
|
7065
|
+
} | undefined;
|
|
7066
|
+
}, {
|
|
7067
|
+
apiKey?: {
|
|
7068
|
+
enabled?: boolean | undefined;
|
|
7069
|
+
} | undefined;
|
|
7070
|
+
oidc?: {
|
|
7071
|
+
enabled?: boolean | undefined;
|
|
7072
|
+
scope?: string | undefined;
|
|
7073
|
+
issuer?: string | undefined;
|
|
7074
|
+
audience?: string | undefined;
|
|
7075
|
+
jwksUri?: string | undefined;
|
|
7076
|
+
} | undefined;
|
|
7077
|
+
}>>;
|
|
7078
|
+
}, "strip", z.ZodTypeAny, {
|
|
7079
|
+
auth?: {
|
|
7080
|
+
apiKey?: {
|
|
7081
|
+
enabled: boolean;
|
|
7082
|
+
} | undefined;
|
|
7083
|
+
oidc?: {
|
|
7084
|
+
enabled: boolean;
|
|
7085
|
+
scope?: string | undefined;
|
|
7086
|
+
issuer?: string | undefined;
|
|
7087
|
+
audience?: string | undefined;
|
|
7088
|
+
jwksUri?: string | undefined;
|
|
7089
|
+
} | undefined;
|
|
7090
|
+
} | undefined;
|
|
7091
|
+
}, {
|
|
7092
|
+
auth?: {
|
|
7093
|
+
apiKey?: {
|
|
7094
|
+
enabled?: boolean | undefined;
|
|
7095
|
+
} | undefined;
|
|
7096
|
+
oidc?: {
|
|
7097
|
+
enabled?: boolean | undefined;
|
|
7098
|
+
scope?: string | undefined;
|
|
7099
|
+
issuer?: string | undefined;
|
|
7100
|
+
audience?: string | undefined;
|
|
7101
|
+
jwksUri?: string | undefined;
|
|
7102
|
+
} | undefined;
|
|
7103
|
+
} | undefined;
|
|
7104
|
+
}>>;
|
|
6228
7105
|
}, "strip", z.ZodTypeAny, {
|
|
6229
7106
|
disableBuilder: boolean;
|
|
6230
7107
|
capabilities: AgentCapabilities[];
|
|
@@ -6242,6 +7119,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6242
7119
|
recursionLimit?: number | undefined;
|
|
6243
7120
|
maxRecursionLimit?: number | undefined;
|
|
6244
7121
|
allowedProviders?: string[] | undefined;
|
|
7122
|
+
remoteApi?: {
|
|
7123
|
+
auth?: {
|
|
7124
|
+
apiKey?: {
|
|
7125
|
+
enabled: boolean;
|
|
7126
|
+
} | undefined;
|
|
7127
|
+
oidc?: {
|
|
7128
|
+
enabled: boolean;
|
|
7129
|
+
scope?: string | undefined;
|
|
7130
|
+
issuer?: string | undefined;
|
|
7131
|
+
audience?: string | undefined;
|
|
7132
|
+
jwksUri?: string | undefined;
|
|
7133
|
+
} | undefined;
|
|
7134
|
+
} | undefined;
|
|
7135
|
+
} | undefined;
|
|
6245
7136
|
}, {
|
|
6246
7137
|
streamRate?: number | undefined;
|
|
6247
7138
|
titlePrompt?: string | undefined;
|
|
@@ -6259,6 +7150,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6259
7150
|
maxCitationsPerFile?: number | undefined;
|
|
6260
7151
|
minRelevanceScore?: number | undefined;
|
|
6261
7152
|
allowedProviders?: string[] | undefined;
|
|
7153
|
+
remoteApi?: {
|
|
7154
|
+
auth?: {
|
|
7155
|
+
apiKey?: {
|
|
7156
|
+
enabled?: boolean | undefined;
|
|
7157
|
+
} | undefined;
|
|
7158
|
+
oidc?: {
|
|
7159
|
+
enabled?: boolean | undefined;
|
|
7160
|
+
scope?: string | undefined;
|
|
7161
|
+
issuer?: string | undefined;
|
|
7162
|
+
audience?: string | undefined;
|
|
7163
|
+
jwksUri?: string | undefined;
|
|
7164
|
+
} | undefined;
|
|
7165
|
+
} | undefined;
|
|
7166
|
+
} | undefined;
|
|
6262
7167
|
}>>>;
|
|
6263
7168
|
custom: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6264
7169
|
streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -6662,6 +7567,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6662
7567
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
6663
7568
|
}>>;
|
|
6664
7569
|
}, "strict", z.ZodTypeAny, {
|
|
7570
|
+
allowedAddresses?: string[] | undefined;
|
|
6665
7571
|
azureOpenAI?: ({
|
|
6666
7572
|
groups: ({
|
|
6667
7573
|
group: string;
|
|
@@ -6812,6 +7718,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6812
7718
|
recursionLimit?: number | undefined;
|
|
6813
7719
|
maxRecursionLimit?: number | undefined;
|
|
6814
7720
|
allowedProviders?: string[] | undefined;
|
|
7721
|
+
remoteApi?: {
|
|
7722
|
+
auth?: {
|
|
7723
|
+
apiKey?: {
|
|
7724
|
+
enabled: boolean;
|
|
7725
|
+
} | undefined;
|
|
7726
|
+
oidc?: {
|
|
7727
|
+
enabled: boolean;
|
|
7728
|
+
scope?: string | undefined;
|
|
7729
|
+
issuer?: string | undefined;
|
|
7730
|
+
audience?: string | undefined;
|
|
7731
|
+
jwksUri?: string | undefined;
|
|
7732
|
+
} | undefined;
|
|
7733
|
+
} | undefined;
|
|
7734
|
+
} | undefined;
|
|
6815
7735
|
} | undefined;
|
|
6816
7736
|
custom?: {
|
|
6817
7737
|
iconURL?: string | undefined;
|
|
@@ -6903,6 +7823,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6903
7823
|
maxToolResultChars?: number | undefined;
|
|
6904
7824
|
} | undefined;
|
|
6905
7825
|
}, {
|
|
7826
|
+
allowedAddresses?: string[] | undefined;
|
|
6906
7827
|
azureOpenAI?: ({
|
|
6907
7828
|
groups: ({
|
|
6908
7829
|
group: string;
|
|
@@ -7053,6 +7974,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7053
7974
|
maxCitationsPerFile?: number | undefined;
|
|
7054
7975
|
minRelevanceScore?: number | undefined;
|
|
7055
7976
|
allowedProviders?: string[] | undefined;
|
|
7977
|
+
remoteApi?: {
|
|
7978
|
+
auth?: {
|
|
7979
|
+
apiKey?: {
|
|
7980
|
+
enabled?: boolean | undefined;
|
|
7981
|
+
} | undefined;
|
|
7982
|
+
oidc?: {
|
|
7983
|
+
enabled?: boolean | undefined;
|
|
7984
|
+
scope?: string | undefined;
|
|
7985
|
+
issuer?: string | undefined;
|
|
7986
|
+
audience?: string | undefined;
|
|
7987
|
+
jwksUri?: string | undefined;
|
|
7988
|
+
} | undefined;
|
|
7989
|
+
} | undefined;
|
|
7990
|
+
} | undefined;
|
|
7056
7991
|
} | undefined;
|
|
7057
7992
|
custom?: {
|
|
7058
7993
|
iconURL?: string | undefined;
|
|
@@ -7144,6 +8079,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7144
8079
|
maxToolResultChars?: number | undefined;
|
|
7145
8080
|
} | undefined;
|
|
7146
8081
|
}>, {
|
|
8082
|
+
allowedAddresses?: string[] | undefined;
|
|
7147
8083
|
azureOpenAI?: ({
|
|
7148
8084
|
groups: ({
|
|
7149
8085
|
group: string;
|
|
@@ -7294,6 +8230,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7294
8230
|
recursionLimit?: number | undefined;
|
|
7295
8231
|
maxRecursionLimit?: number | undefined;
|
|
7296
8232
|
allowedProviders?: string[] | undefined;
|
|
8233
|
+
remoteApi?: {
|
|
8234
|
+
auth?: {
|
|
8235
|
+
apiKey?: {
|
|
8236
|
+
enabled: boolean;
|
|
8237
|
+
} | undefined;
|
|
8238
|
+
oidc?: {
|
|
8239
|
+
enabled: boolean;
|
|
8240
|
+
scope?: string | undefined;
|
|
8241
|
+
issuer?: string | undefined;
|
|
8242
|
+
audience?: string | undefined;
|
|
8243
|
+
jwksUri?: string | undefined;
|
|
8244
|
+
} | undefined;
|
|
8245
|
+
} | undefined;
|
|
8246
|
+
} | undefined;
|
|
7297
8247
|
} | undefined;
|
|
7298
8248
|
custom?: {
|
|
7299
8249
|
iconURL?: string | undefined;
|
|
@@ -7385,6 +8335,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7385
8335
|
maxToolResultChars?: number | undefined;
|
|
7386
8336
|
} | undefined;
|
|
7387
8337
|
}, {
|
|
8338
|
+
allowedAddresses?: string[] | undefined;
|
|
7388
8339
|
azureOpenAI?: ({
|
|
7389
8340
|
groups: ({
|
|
7390
8341
|
group: string;
|
|
@@ -7535,6 +8486,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7535
8486
|
maxCitationsPerFile?: number | undefined;
|
|
7536
8487
|
minRelevanceScore?: number | undefined;
|
|
7537
8488
|
allowedProviders?: string[] | undefined;
|
|
8489
|
+
remoteApi?: {
|
|
8490
|
+
auth?: {
|
|
8491
|
+
apiKey?: {
|
|
8492
|
+
enabled?: boolean | undefined;
|
|
8493
|
+
} | undefined;
|
|
8494
|
+
oidc?: {
|
|
8495
|
+
enabled?: boolean | undefined;
|
|
8496
|
+
scope?: string | undefined;
|
|
8497
|
+
issuer?: string | undefined;
|
|
8498
|
+
audience?: string | undefined;
|
|
8499
|
+
jwksUri?: string | undefined;
|
|
8500
|
+
} | undefined;
|
|
8501
|
+
} | undefined;
|
|
8502
|
+
} | undefined;
|
|
7538
8503
|
} | undefined;
|
|
7539
8504
|
custom?: {
|
|
7540
8505
|
iconURL?: string | undefined;
|
|
@@ -7631,6 +8596,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7631
8596
|
cache: boolean;
|
|
7632
8597
|
imageOutputType: EImageOutputType;
|
|
7633
8598
|
interface: {
|
|
8599
|
+
skills?: boolean | {
|
|
8600
|
+
use?: boolean | undefined;
|
|
8601
|
+
create?: boolean | undefined;
|
|
8602
|
+
share?: boolean | undefined;
|
|
8603
|
+
public?: boolean | undefined;
|
|
8604
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
8605
|
+
} | undefined;
|
|
7634
8606
|
webSearch?: boolean | undefined;
|
|
7635
8607
|
parameters?: boolean | undefined;
|
|
7636
8608
|
mcpServers?: {
|
|
@@ -7675,6 +8647,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7675
8647
|
} | undefined;
|
|
7676
8648
|
temporaryChat?: boolean | undefined;
|
|
7677
8649
|
temporaryChatRetention?: number | undefined;
|
|
8650
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
7678
8651
|
runCode?: boolean | undefined;
|
|
7679
8652
|
peoplePicker?: {
|
|
7680
8653
|
users?: boolean | undefined;
|
|
@@ -7693,11 +8666,23 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7693
8666
|
public?: boolean | undefined;
|
|
7694
8667
|
} | undefined;
|
|
7695
8668
|
};
|
|
7696
|
-
fileStrategy: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3;
|
|
8669
|
+
fileStrategy: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront;
|
|
7697
8670
|
registration: {
|
|
7698
8671
|
allowedDomains?: string[] | undefined;
|
|
7699
8672
|
socialLogins?: string[] | undefined;
|
|
7700
8673
|
};
|
|
8674
|
+
cloudfront?: {
|
|
8675
|
+
domain: string;
|
|
8676
|
+
invalidateOnDelete: boolean;
|
|
8677
|
+
imageSigning: "none" | "cookies" | "url";
|
|
8678
|
+
urlExpiry: number;
|
|
8679
|
+
cookieExpiry: number;
|
|
8680
|
+
includeRegionInPath: boolean;
|
|
8681
|
+
requireSignedAccess: boolean;
|
|
8682
|
+
distributionId?: string | undefined;
|
|
8683
|
+
cookieDomain?: string | undefined;
|
|
8684
|
+
storageRegion?: string | undefined;
|
|
8685
|
+
} | undefined;
|
|
7701
8686
|
ocr?: {
|
|
7702
8687
|
apiKey: string;
|
|
7703
8688
|
baseURL: string;
|
|
@@ -7711,6 +8696,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7711
8696
|
firecrawlApiKey: string;
|
|
7712
8697
|
firecrawlApiUrl: string;
|
|
7713
8698
|
firecrawlVersion: string;
|
|
8699
|
+
tavilyApiKey: string;
|
|
8700
|
+
tavilySearchUrl: string;
|
|
8701
|
+
tavilyExtractUrl: string;
|
|
7714
8702
|
jinaApiKey: string;
|
|
7715
8703
|
jinaApiUrl: string;
|
|
7716
8704
|
cohereApiKey: string;
|
|
@@ -7746,6 +8734,29 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7746
8734
|
tag?: string | null | undefined;
|
|
7747
8735
|
} | undefined;
|
|
7748
8736
|
} | undefined;
|
|
8737
|
+
tavilySearchOptions?: {
|
|
8738
|
+
safeSearch?: boolean | undefined;
|
|
8739
|
+
timeout?: number | undefined;
|
|
8740
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
8741
|
+
maxResults?: number | undefined;
|
|
8742
|
+
includeImages?: boolean | undefined;
|
|
8743
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
8744
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
8745
|
+
includeDomains?: string[] | undefined;
|
|
8746
|
+
excludeDomains?: string[] | undefined;
|
|
8747
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
8748
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
8749
|
+
includeImageDescriptions?: boolean | undefined;
|
|
8750
|
+
includeFavicon?: boolean | undefined;
|
|
8751
|
+
chunksPerSource?: number | undefined;
|
|
8752
|
+
} | undefined;
|
|
8753
|
+
tavilyScraperOptions?: {
|
|
8754
|
+
timeout?: number | undefined;
|
|
8755
|
+
includeImages?: boolean | undefined;
|
|
8756
|
+
includeFavicon?: boolean | undefined;
|
|
8757
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
8758
|
+
format?: "text" | "markdown" | undefined;
|
|
8759
|
+
} | undefined;
|
|
7749
8760
|
} | undefined;
|
|
7750
8761
|
memory?: {
|
|
7751
8762
|
charLimit: number;
|
|
@@ -7756,9 +8767,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7756
8767
|
tokenLimit?: number | undefined;
|
|
7757
8768
|
agent?: {
|
|
7758
8769
|
id: string;
|
|
8770
|
+
enabled?: boolean | undefined;
|
|
7759
8771
|
} | {
|
|
7760
8772
|
model: string;
|
|
7761
8773
|
provider: string;
|
|
8774
|
+
enabled?: boolean | undefined;
|
|
7762
8775
|
instructions?: string | undefined;
|
|
7763
8776
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
7764
8777
|
} | undefined;
|
|
@@ -7766,12 +8779,18 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7766
8779
|
summarization?: {
|
|
7767
8780
|
model?: string | undefined;
|
|
7768
8781
|
prompt?: string | undefined;
|
|
7769
|
-
provider?: string | undefined;
|
|
7770
8782
|
enabled?: boolean | undefined;
|
|
8783
|
+
provider?: string | undefined;
|
|
7771
8784
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
7772
8785
|
trigger?: {
|
|
7773
8786
|
value: number;
|
|
7774
|
-
type: "
|
|
8787
|
+
type: "token_ratio";
|
|
8788
|
+
} | {
|
|
8789
|
+
value: number;
|
|
8790
|
+
type: "remaining_tokens";
|
|
8791
|
+
} | {
|
|
8792
|
+
value: number;
|
|
8793
|
+
type: "messages_to_refine";
|
|
7775
8794
|
} | undefined;
|
|
7776
8795
|
updatePrompt?: string | undefined;
|
|
7777
8796
|
reserveRatio?: number | undefined;
|
|
@@ -7795,7 +8814,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7795
8814
|
description?: string | undefined;
|
|
7796
8815
|
apiKey?: {
|
|
7797
8816
|
source: "user" | "admin";
|
|
7798
|
-
authorization_type: "
|
|
8817
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
7799
8818
|
key?: string | undefined;
|
|
7800
8819
|
custom_header?: string | undefined;
|
|
7801
8820
|
} | undefined;
|
|
@@ -7837,7 +8856,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7837
8856
|
description?: string | undefined;
|
|
7838
8857
|
apiKey?: {
|
|
7839
8858
|
source: "user" | "admin";
|
|
7840
|
-
authorization_type: "
|
|
8859
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
7841
8860
|
key?: string | undefined;
|
|
7842
8861
|
custom_header?: string | undefined;
|
|
7843
8862
|
} | undefined;
|
|
@@ -7877,7 +8896,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7877
8896
|
description?: string | undefined;
|
|
7878
8897
|
apiKey?: {
|
|
7879
8898
|
source: "user" | "admin";
|
|
7880
|
-
authorization_type: "
|
|
8899
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
7881
8900
|
key?: string | undefined;
|
|
7882
8901
|
custom_header?: string | undefined;
|
|
7883
8902
|
} | undefined;
|
|
@@ -7918,7 +8937,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7918
8937
|
description?: string | undefined;
|
|
7919
8938
|
apiKey?: {
|
|
7920
8939
|
source: "user" | "admin";
|
|
7921
|
-
authorization_type: "
|
|
8940
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
7922
8941
|
key?: string | undefined;
|
|
7923
8942
|
custom_header?: string | undefined;
|
|
7924
8943
|
} | undefined;
|
|
@@ -7955,6 +8974,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7955
8974
|
}> | undefined;
|
|
7956
8975
|
mcpSettings?: {
|
|
7957
8976
|
allowedDomains?: string[] | undefined;
|
|
8977
|
+
allowedAddresses?: string[] | undefined;
|
|
7958
8978
|
} | undefined;
|
|
7959
8979
|
turnstile?: {
|
|
7960
8980
|
siteKey: string;
|
|
@@ -7964,13 +8984,15 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7964
8984
|
} | undefined;
|
|
7965
8985
|
} | undefined;
|
|
7966
8986
|
fileStrategies?: {
|
|
7967
|
-
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
7968
|
-
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
7969
|
-
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
7970
|
-
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
8987
|
+
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
8988
|
+
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
8989
|
+
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
8990
|
+
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
8991
|
+
skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
7971
8992
|
} | undefined;
|
|
7972
8993
|
actions?: {
|
|
7973
8994
|
allowedDomains?: string[] | undefined;
|
|
8995
|
+
allowedAddresses?: string[] | undefined;
|
|
7974
8996
|
} | undefined;
|
|
7975
8997
|
balance?: {
|
|
7976
8998
|
enabled: boolean;
|
|
@@ -8080,6 +9102,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8080
9102
|
} | undefined;
|
|
8081
9103
|
} | undefined;
|
|
8082
9104
|
endpoints?: {
|
|
9105
|
+
allowedAddresses?: string[] | undefined;
|
|
8083
9106
|
azureOpenAI?: ({
|
|
8084
9107
|
groups: ({
|
|
8085
9108
|
group: string;
|
|
@@ -8230,6 +9253,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8230
9253
|
recursionLimit?: number | undefined;
|
|
8231
9254
|
maxRecursionLimit?: number | undefined;
|
|
8232
9255
|
allowedProviders?: string[] | undefined;
|
|
9256
|
+
remoteApi?: {
|
|
9257
|
+
auth?: {
|
|
9258
|
+
apiKey?: {
|
|
9259
|
+
enabled: boolean;
|
|
9260
|
+
} | undefined;
|
|
9261
|
+
oidc?: {
|
|
9262
|
+
enabled: boolean;
|
|
9263
|
+
scope?: string | undefined;
|
|
9264
|
+
issuer?: string | undefined;
|
|
9265
|
+
audience?: string | undefined;
|
|
9266
|
+
jwksUri?: string | undefined;
|
|
9267
|
+
} | undefined;
|
|
9268
|
+
} | undefined;
|
|
9269
|
+
} | undefined;
|
|
8233
9270
|
} | undefined;
|
|
8234
9271
|
custom?: {
|
|
8235
9272
|
iconURL?: string | undefined;
|
|
@@ -8325,6 +9362,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8325
9362
|
text?: {
|
|
8326
9363
|
supportedMimeTypes?: string[] | undefined;
|
|
8327
9364
|
} | undefined;
|
|
9365
|
+
skills?: {
|
|
9366
|
+
fileSizeLimit?: number | undefined;
|
|
9367
|
+
} | undefined;
|
|
8328
9368
|
ocr?: {
|
|
8329
9369
|
supportedMimeTypes?: string[] | undefined;
|
|
8330
9370
|
} | undefined;
|
|
@@ -8357,6 +9397,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8357
9397
|
name: string;
|
|
8358
9398
|
preset: {
|
|
8359
9399
|
endpoint: string | null;
|
|
9400
|
+
iconURL?: string | null | undefined;
|
|
9401
|
+
greeting?: string | undefined;
|
|
8360
9402
|
endpointType?: EModelEndpoint | null | undefined;
|
|
8361
9403
|
tools?: string[] | {
|
|
8362
9404
|
name: string;
|
|
@@ -8412,6 +9454,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8412
9454
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
8413
9455
|
useResponsesApi?: boolean | undefined;
|
|
8414
9456
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
9457
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
8415
9458
|
web_search?: boolean | undefined;
|
|
8416
9459
|
disableStreaming?: boolean | undefined;
|
|
8417
9460
|
assistant_id?: string | undefined;
|
|
@@ -8466,6 +9509,18 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8466
9509
|
} | undefined;
|
|
8467
9510
|
}, {
|
|
8468
9511
|
version: string;
|
|
9512
|
+
cloudfront?: {
|
|
9513
|
+
domain: string;
|
|
9514
|
+
distributionId?: string | undefined;
|
|
9515
|
+
invalidateOnDelete?: boolean | undefined;
|
|
9516
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
9517
|
+
urlExpiry?: number | undefined;
|
|
9518
|
+
cookieExpiry?: number | undefined;
|
|
9519
|
+
cookieDomain?: string | undefined;
|
|
9520
|
+
storageRegion?: string | undefined;
|
|
9521
|
+
includeRegionInPath?: boolean | undefined;
|
|
9522
|
+
requireSignedAccess?: boolean | undefined;
|
|
9523
|
+
} | undefined;
|
|
8469
9524
|
cache?: boolean | undefined;
|
|
8470
9525
|
ocr?: {
|
|
8471
9526
|
mistralModel?: string | undefined;
|
|
@@ -8480,6 +9535,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8480
9535
|
firecrawlApiKey?: string | undefined;
|
|
8481
9536
|
firecrawlApiUrl?: string | undefined;
|
|
8482
9537
|
firecrawlVersion?: string | undefined;
|
|
9538
|
+
tavilyApiKey?: string | undefined;
|
|
9539
|
+
tavilySearchUrl?: string | undefined;
|
|
9540
|
+
tavilyExtractUrl?: string | undefined;
|
|
8483
9541
|
jinaApiKey?: string | undefined;
|
|
8484
9542
|
jinaApiUrl?: string | undefined;
|
|
8485
9543
|
cohereApiKey?: string | undefined;
|
|
@@ -8515,6 +9573,29 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8515
9573
|
tag?: string | null | undefined;
|
|
8516
9574
|
} | undefined;
|
|
8517
9575
|
} | undefined;
|
|
9576
|
+
tavilySearchOptions?: {
|
|
9577
|
+
safeSearch?: boolean | undefined;
|
|
9578
|
+
timeout?: number | undefined;
|
|
9579
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
9580
|
+
maxResults?: number | undefined;
|
|
9581
|
+
includeImages?: boolean | undefined;
|
|
9582
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
9583
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
9584
|
+
includeDomains?: string[] | undefined;
|
|
9585
|
+
excludeDomains?: string[] | undefined;
|
|
9586
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
9587
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
9588
|
+
includeImageDescriptions?: boolean | undefined;
|
|
9589
|
+
includeFavicon?: boolean | undefined;
|
|
9590
|
+
chunksPerSource?: number | undefined;
|
|
9591
|
+
} | undefined;
|
|
9592
|
+
tavilyScraperOptions?: {
|
|
9593
|
+
timeout?: number | undefined;
|
|
9594
|
+
includeImages?: boolean | undefined;
|
|
9595
|
+
includeFavicon?: boolean | undefined;
|
|
9596
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
9597
|
+
format?: "text" | "markdown" | undefined;
|
|
9598
|
+
} | undefined;
|
|
8518
9599
|
} | undefined;
|
|
8519
9600
|
memory?: {
|
|
8520
9601
|
disabled?: boolean | undefined;
|
|
@@ -8525,9 +9606,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8525
9606
|
messageWindowSize?: number | undefined;
|
|
8526
9607
|
agent?: {
|
|
8527
9608
|
id: string;
|
|
9609
|
+
enabled?: boolean | undefined;
|
|
8528
9610
|
} | {
|
|
8529
9611
|
model: string;
|
|
8530
9612
|
provider: string;
|
|
9613
|
+
enabled?: boolean | undefined;
|
|
8531
9614
|
instructions?: string | undefined;
|
|
8532
9615
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
8533
9616
|
} | undefined;
|
|
@@ -8535,12 +9618,18 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8535
9618
|
summarization?: {
|
|
8536
9619
|
model?: string | undefined;
|
|
8537
9620
|
prompt?: string | undefined;
|
|
8538
|
-
provider?: string | undefined;
|
|
8539
9621
|
enabled?: boolean | undefined;
|
|
9622
|
+
provider?: string | undefined;
|
|
8540
9623
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
8541
9624
|
trigger?: {
|
|
8542
9625
|
value: number;
|
|
8543
|
-
type: "
|
|
9626
|
+
type: "token_ratio";
|
|
9627
|
+
} | {
|
|
9628
|
+
value: number;
|
|
9629
|
+
type: "remaining_tokens";
|
|
9630
|
+
} | {
|
|
9631
|
+
value: number;
|
|
9632
|
+
type: "messages_to_refine";
|
|
8544
9633
|
} | undefined;
|
|
8545
9634
|
updatePrompt?: string | undefined;
|
|
8546
9635
|
reserveRatio?: number | undefined;
|
|
@@ -8565,7 +9654,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8565
9654
|
description?: string | undefined;
|
|
8566
9655
|
apiKey?: {
|
|
8567
9656
|
source: "user" | "admin";
|
|
8568
|
-
authorization_type: "
|
|
9657
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
8569
9658
|
key?: string | undefined;
|
|
8570
9659
|
custom_header?: string | undefined;
|
|
8571
9660
|
} | undefined;
|
|
@@ -8607,7 +9696,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8607
9696
|
description?: string | undefined;
|
|
8608
9697
|
apiKey?: {
|
|
8609
9698
|
source: "user" | "admin";
|
|
8610
|
-
authorization_type: "
|
|
9699
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
8611
9700
|
key?: string | undefined;
|
|
8612
9701
|
custom_header?: string | undefined;
|
|
8613
9702
|
} | undefined;
|
|
@@ -8647,7 +9736,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8647
9736
|
description?: string | undefined;
|
|
8648
9737
|
apiKey?: {
|
|
8649
9738
|
source: "user" | "admin";
|
|
8650
|
-
authorization_type: "
|
|
9739
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
8651
9740
|
key?: string | undefined;
|
|
8652
9741
|
custom_header?: string | undefined;
|
|
8653
9742
|
} | undefined;
|
|
@@ -8688,7 +9777,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8688
9777
|
description?: string | undefined;
|
|
8689
9778
|
apiKey?: {
|
|
8690
9779
|
source: "user" | "admin";
|
|
8691
|
-
authorization_type: "
|
|
9780
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
8692
9781
|
key?: string | undefined;
|
|
8693
9782
|
custom_header?: string | undefined;
|
|
8694
9783
|
} | undefined;
|
|
@@ -8725,8 +9814,16 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8725
9814
|
}> | undefined;
|
|
8726
9815
|
mcpSettings?: {
|
|
8727
9816
|
allowedDomains?: string[] | undefined;
|
|
9817
|
+
allowedAddresses?: string[] | undefined;
|
|
8728
9818
|
} | undefined;
|
|
8729
9819
|
interface?: {
|
|
9820
|
+
skills?: boolean | {
|
|
9821
|
+
use?: boolean | undefined;
|
|
9822
|
+
create?: boolean | undefined;
|
|
9823
|
+
share?: boolean | undefined;
|
|
9824
|
+
public?: boolean | undefined;
|
|
9825
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
9826
|
+
} | undefined;
|
|
8730
9827
|
webSearch?: boolean | undefined;
|
|
8731
9828
|
parameters?: boolean | undefined;
|
|
8732
9829
|
mcpServers?: {
|
|
@@ -8771,6 +9868,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8771
9868
|
} | undefined;
|
|
8772
9869
|
temporaryChat?: boolean | undefined;
|
|
8773
9870
|
temporaryChatRetention?: number | undefined;
|
|
9871
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
8774
9872
|
runCode?: boolean | undefined;
|
|
8775
9873
|
peoplePicker?: {
|
|
8776
9874
|
users?: boolean | undefined;
|
|
@@ -8796,15 +9894,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8796
9894
|
size?: "normal" | "compact" | "flexible" | "invisible" | undefined;
|
|
8797
9895
|
} | undefined;
|
|
8798
9896
|
} | undefined;
|
|
8799
|
-
fileStrategy?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
9897
|
+
fileStrategy?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
8800
9898
|
fileStrategies?: {
|
|
8801
|
-
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
8802
|
-
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
8803
|
-
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
8804
|
-
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
9899
|
+
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
9900
|
+
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
9901
|
+
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
9902
|
+
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
9903
|
+
skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
8805
9904
|
} | undefined;
|
|
8806
9905
|
actions?: {
|
|
8807
9906
|
allowedDomains?: string[] | undefined;
|
|
9907
|
+
allowedAddresses?: string[] | undefined;
|
|
8808
9908
|
} | undefined;
|
|
8809
9909
|
registration?: {
|
|
8810
9910
|
allowedDomains?: string[] | undefined;
|
|
@@ -8918,6 +10018,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8918
10018
|
} | undefined;
|
|
8919
10019
|
} | undefined;
|
|
8920
10020
|
endpoints?: {
|
|
10021
|
+
allowedAddresses?: string[] | undefined;
|
|
8921
10022
|
azureOpenAI?: ({
|
|
8922
10023
|
groups: ({
|
|
8923
10024
|
group: string;
|
|
@@ -9068,6 +10169,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9068
10169
|
maxCitationsPerFile?: number | undefined;
|
|
9069
10170
|
minRelevanceScore?: number | undefined;
|
|
9070
10171
|
allowedProviders?: string[] | undefined;
|
|
10172
|
+
remoteApi?: {
|
|
10173
|
+
auth?: {
|
|
10174
|
+
apiKey?: {
|
|
10175
|
+
enabled?: boolean | undefined;
|
|
10176
|
+
} | undefined;
|
|
10177
|
+
oidc?: {
|
|
10178
|
+
enabled?: boolean | undefined;
|
|
10179
|
+
scope?: string | undefined;
|
|
10180
|
+
issuer?: string | undefined;
|
|
10181
|
+
audience?: string | undefined;
|
|
10182
|
+
jwksUri?: string | undefined;
|
|
10183
|
+
} | undefined;
|
|
10184
|
+
} | undefined;
|
|
10185
|
+
} | undefined;
|
|
9071
10186
|
} | undefined;
|
|
9072
10187
|
custom?: {
|
|
9073
10188
|
iconURL?: string | undefined;
|
|
@@ -9163,6 +10278,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9163
10278
|
text?: {
|
|
9164
10279
|
supportedMimeTypes?: string[] | undefined;
|
|
9165
10280
|
} | undefined;
|
|
10281
|
+
skills?: {
|
|
10282
|
+
fileSizeLimit?: number | undefined;
|
|
10283
|
+
} | undefined;
|
|
9166
10284
|
ocr?: {
|
|
9167
10285
|
supportedMimeTypes?: string[] | undefined;
|
|
9168
10286
|
} | undefined;
|
|
@@ -9188,11 +10306,15 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9188
10306
|
} | undefined;
|
|
9189
10307
|
} | undefined;
|
|
9190
10308
|
modelSpecs?: {
|
|
9191
|
-
|
|
10309
|
+
enforce?: boolean | undefined;
|
|
10310
|
+
prioritize?: boolean | undefined;
|
|
10311
|
+
list?: {
|
|
9192
10312
|
label: string;
|
|
9193
10313
|
name: string;
|
|
9194
10314
|
preset: {
|
|
9195
10315
|
endpoint: string | null;
|
|
10316
|
+
iconURL?: string | null | undefined;
|
|
10317
|
+
greeting?: string | undefined;
|
|
9196
10318
|
endpointType?: EModelEndpoint | null | undefined;
|
|
9197
10319
|
tools?: string[] | {
|
|
9198
10320
|
name: string;
|
|
@@ -9248,6 +10370,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9248
10370
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
9249
10371
|
useResponsesApi?: boolean | undefined;
|
|
9250
10372
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
10373
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
9251
10374
|
web_search?: boolean | undefined;
|
|
9252
10375
|
disableStreaming?: boolean | undefined;
|
|
9253
10376
|
assistant_id?: string | undefined;
|
|
@@ -9297,9 +10420,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9297
10420
|
showIconInHeader?: boolean | undefined;
|
|
9298
10421
|
authType?: import("./schemas").AuthType | undefined;
|
|
9299
10422
|
executeCode?: boolean | undefined;
|
|
9300
|
-
}[];
|
|
9301
|
-
enforce?: boolean | undefined;
|
|
9302
|
-
prioritize?: boolean | undefined;
|
|
10423
|
+
}[] | undefined;
|
|
9303
10424
|
addedEndpoints?: string[] | undefined;
|
|
9304
10425
|
} | undefined;
|
|
9305
10426
|
}>;
|
|
@@ -9336,6 +10457,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9336
10457
|
firecrawlApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9337
10458
|
firecrawlApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9338
10459
|
firecrawlVersion: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10460
|
+
tavilyApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10461
|
+
tavilySearchUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10462
|
+
tavilyExtractUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9339
10463
|
jinaApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9340
10464
|
jinaApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9341
10465
|
cohereApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -9439,6 +10563,71 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9439
10563
|
tag?: string | null | undefined;
|
|
9440
10564
|
} | undefined;
|
|
9441
10565
|
}>>;
|
|
10566
|
+
tavilySearchOptions: z.ZodOptional<z.ZodObject<{
|
|
10567
|
+
searchDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced", "fast", "ultra-fast"]>>;
|
|
10568
|
+
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
10569
|
+
includeImages: z.ZodOptional<z.ZodBoolean>;
|
|
10570
|
+
includeAnswer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["basic", "advanced"]>]>>;
|
|
10571
|
+
includeRawContent: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["markdown", "text"]>]>>;
|
|
10572
|
+
includeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10573
|
+
excludeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10574
|
+
topic: z.ZodOptional<z.ZodEnum<["general", "news", "finance"]>>;
|
|
10575
|
+
timeRange: z.ZodOptional<z.ZodEnum<["day", "week", "month", "year", "d", "w", "m", "y"]>>;
|
|
10576
|
+
includeImageDescriptions: z.ZodOptional<z.ZodBoolean>;
|
|
10577
|
+
includeFavicon: z.ZodOptional<z.ZodBoolean>;
|
|
10578
|
+
chunksPerSource: z.ZodOptional<z.ZodNumber>;
|
|
10579
|
+
safeSearch: z.ZodOptional<z.ZodBoolean>;
|
|
10580
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
10581
|
+
}, "strip", z.ZodTypeAny, {
|
|
10582
|
+
safeSearch?: boolean | undefined;
|
|
10583
|
+
timeout?: number | undefined;
|
|
10584
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
10585
|
+
maxResults?: number | undefined;
|
|
10586
|
+
includeImages?: boolean | undefined;
|
|
10587
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
10588
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
10589
|
+
includeDomains?: string[] | undefined;
|
|
10590
|
+
excludeDomains?: string[] | undefined;
|
|
10591
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
10592
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
10593
|
+
includeImageDescriptions?: boolean | undefined;
|
|
10594
|
+
includeFavicon?: boolean | undefined;
|
|
10595
|
+
chunksPerSource?: number | undefined;
|
|
10596
|
+
}, {
|
|
10597
|
+
safeSearch?: boolean | undefined;
|
|
10598
|
+
timeout?: number | undefined;
|
|
10599
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
10600
|
+
maxResults?: number | undefined;
|
|
10601
|
+
includeImages?: boolean | undefined;
|
|
10602
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
10603
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
10604
|
+
includeDomains?: string[] | undefined;
|
|
10605
|
+
excludeDomains?: string[] | undefined;
|
|
10606
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
10607
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
10608
|
+
includeImageDescriptions?: boolean | undefined;
|
|
10609
|
+
includeFavicon?: boolean | undefined;
|
|
10610
|
+
chunksPerSource?: number | undefined;
|
|
10611
|
+
}>>;
|
|
10612
|
+
tavilyScraperOptions: z.ZodOptional<z.ZodObject<{
|
|
10613
|
+
extractDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced"]>>;
|
|
10614
|
+
includeImages: z.ZodOptional<z.ZodBoolean>;
|
|
10615
|
+
includeFavicon: z.ZodOptional<z.ZodBoolean>;
|
|
10616
|
+
format: z.ZodOptional<z.ZodEnum<["markdown", "text"]>>;
|
|
10617
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
10618
|
+
}, "strip", z.ZodTypeAny, {
|
|
10619
|
+
timeout?: number | undefined;
|
|
10620
|
+
includeImages?: boolean | undefined;
|
|
10621
|
+
includeFavicon?: boolean | undefined;
|
|
10622
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
10623
|
+
format?: "text" | "markdown" | undefined;
|
|
10624
|
+
}, {
|
|
10625
|
+
timeout?: number | undefined;
|
|
10626
|
+
includeImages?: boolean | undefined;
|
|
10627
|
+
includeFavicon?: boolean | undefined;
|
|
10628
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
10629
|
+
format?: "text" | "markdown" | undefined;
|
|
10630
|
+
}>>;
|
|
9442
10631
|
}, "strip", z.ZodTypeAny, {
|
|
9443
10632
|
serperApiKey: string;
|
|
9444
10633
|
searxngInstanceUrl: string;
|
|
@@ -9446,6 +10635,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9446
10635
|
firecrawlApiKey: string;
|
|
9447
10636
|
firecrawlApiUrl: string;
|
|
9448
10637
|
firecrawlVersion: string;
|
|
10638
|
+
tavilyApiKey: string;
|
|
10639
|
+
tavilySearchUrl: string;
|
|
10640
|
+
tavilyExtractUrl: string;
|
|
9449
10641
|
jinaApiKey: string;
|
|
9450
10642
|
jinaApiUrl: string;
|
|
9451
10643
|
cohereApiKey: string;
|
|
@@ -9481,6 +10673,29 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9481
10673
|
tag?: string | null | undefined;
|
|
9482
10674
|
} | undefined;
|
|
9483
10675
|
} | undefined;
|
|
10676
|
+
tavilySearchOptions?: {
|
|
10677
|
+
safeSearch?: boolean | undefined;
|
|
10678
|
+
timeout?: number | undefined;
|
|
10679
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
10680
|
+
maxResults?: number | undefined;
|
|
10681
|
+
includeImages?: boolean | undefined;
|
|
10682
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
10683
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
10684
|
+
includeDomains?: string[] | undefined;
|
|
10685
|
+
excludeDomains?: string[] | undefined;
|
|
10686
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
10687
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
10688
|
+
includeImageDescriptions?: boolean | undefined;
|
|
10689
|
+
includeFavicon?: boolean | undefined;
|
|
10690
|
+
chunksPerSource?: number | undefined;
|
|
10691
|
+
} | undefined;
|
|
10692
|
+
tavilyScraperOptions?: {
|
|
10693
|
+
timeout?: number | undefined;
|
|
10694
|
+
includeImages?: boolean | undefined;
|
|
10695
|
+
includeFavicon?: boolean | undefined;
|
|
10696
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
10697
|
+
format?: "text" | "markdown" | undefined;
|
|
10698
|
+
} | undefined;
|
|
9484
10699
|
}, {
|
|
9485
10700
|
serperApiKey?: string | undefined;
|
|
9486
10701
|
searxngInstanceUrl?: string | undefined;
|
|
@@ -9488,6 +10703,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9488
10703
|
firecrawlApiKey?: string | undefined;
|
|
9489
10704
|
firecrawlApiUrl?: string | undefined;
|
|
9490
10705
|
firecrawlVersion?: string | undefined;
|
|
10706
|
+
tavilyApiKey?: string | undefined;
|
|
10707
|
+
tavilySearchUrl?: string | undefined;
|
|
10708
|
+
tavilyExtractUrl?: string | undefined;
|
|
9491
10709
|
jinaApiKey?: string | undefined;
|
|
9492
10710
|
jinaApiUrl?: string | undefined;
|
|
9493
10711
|
cohereApiKey?: string | undefined;
|
|
@@ -9523,6 +10741,29 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9523
10741
|
tag?: string | null | undefined;
|
|
9524
10742
|
} | undefined;
|
|
9525
10743
|
} | undefined;
|
|
10744
|
+
tavilySearchOptions?: {
|
|
10745
|
+
safeSearch?: boolean | undefined;
|
|
10746
|
+
timeout?: number | undefined;
|
|
10747
|
+
searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
|
|
10748
|
+
maxResults?: number | undefined;
|
|
10749
|
+
includeImages?: boolean | undefined;
|
|
10750
|
+
includeAnswer?: boolean | "advanced" | "basic" | undefined;
|
|
10751
|
+
includeRawContent?: boolean | "text" | "markdown" | undefined;
|
|
10752
|
+
includeDomains?: string[] | undefined;
|
|
10753
|
+
excludeDomains?: string[] | undefined;
|
|
10754
|
+
topic?: "general" | "news" | "finance" | undefined;
|
|
10755
|
+
timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
|
|
10756
|
+
includeImageDescriptions?: boolean | undefined;
|
|
10757
|
+
includeFavicon?: boolean | undefined;
|
|
10758
|
+
chunksPerSource?: number | undefined;
|
|
10759
|
+
} | undefined;
|
|
10760
|
+
tavilyScraperOptions?: {
|
|
10761
|
+
timeout?: number | undefined;
|
|
10762
|
+
includeImages?: boolean | undefined;
|
|
10763
|
+
includeFavicon?: boolean | undefined;
|
|
10764
|
+
extractDepth?: "advanced" | "basic" | undefined;
|
|
10765
|
+
format?: "text" | "markdown" | undefined;
|
|
10766
|
+
} | undefined;
|
|
9526
10767
|
}>>;
|
|
9527
10768
|
memory: z.ZodOptional<z.ZodObject<{
|
|
9528
10769
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9532,12 +10773,16 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9532
10773
|
personalize: z.ZodDefault<z.ZodBoolean>;
|
|
9533
10774
|
messageWindowSize: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
9534
10775
|
agent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10776
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
9535
10777
|
id: z.ZodString;
|
|
9536
10778
|
}, "strip", z.ZodTypeAny, {
|
|
9537
10779
|
id: string;
|
|
10780
|
+
enabled?: boolean | undefined;
|
|
9538
10781
|
}, {
|
|
9539
10782
|
id: string;
|
|
10783
|
+
enabled?: boolean | undefined;
|
|
9540
10784
|
}>, z.ZodObject<{
|
|
10785
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
9541
10786
|
provider: z.ZodString;
|
|
9542
10787
|
model: z.ZodString;
|
|
9543
10788
|
instructions: z.ZodOptional<z.ZodString>;
|
|
@@ -9545,11 +10790,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9545
10790
|
}, "strip", z.ZodTypeAny, {
|
|
9546
10791
|
model: string;
|
|
9547
10792
|
provider: string;
|
|
10793
|
+
enabled?: boolean | undefined;
|
|
9548
10794
|
instructions?: string | undefined;
|
|
9549
10795
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9550
10796
|
}, {
|
|
9551
10797
|
model: string;
|
|
9552
10798
|
provider: string;
|
|
10799
|
+
enabled?: boolean | undefined;
|
|
9553
10800
|
instructions?: string | undefined;
|
|
9554
10801
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9555
10802
|
}>]>>;
|
|
@@ -9562,9 +10809,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9562
10809
|
tokenLimit?: number | undefined;
|
|
9563
10810
|
agent?: {
|
|
9564
10811
|
id: string;
|
|
10812
|
+
enabled?: boolean | undefined;
|
|
9565
10813
|
} | {
|
|
9566
10814
|
model: string;
|
|
9567
10815
|
provider: string;
|
|
10816
|
+
enabled?: boolean | undefined;
|
|
9568
10817
|
instructions?: string | undefined;
|
|
9569
10818
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9570
10819
|
} | undefined;
|
|
@@ -9577,9 +10826,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9577
10826
|
messageWindowSize?: number | undefined;
|
|
9578
10827
|
agent?: {
|
|
9579
10828
|
id: string;
|
|
10829
|
+
enabled?: boolean | undefined;
|
|
9580
10830
|
} | {
|
|
9581
10831
|
model: string;
|
|
9582
10832
|
provider: string;
|
|
10833
|
+
enabled?: boolean | undefined;
|
|
9583
10834
|
instructions?: string | undefined;
|
|
9584
10835
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9585
10836
|
} | undefined;
|
|
@@ -9589,16 +10840,34 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9589
10840
|
provider: z.ZodOptional<z.ZodString>;
|
|
9590
10841
|
model: z.ZodOptional<z.ZodString>;
|
|
9591
10842
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>>;
|
|
9592
|
-
trigger: z.ZodOptional<z.ZodObject<{
|
|
9593
|
-
type: z.
|
|
10843
|
+
trigger: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10844
|
+
type: z.ZodLiteral<"token_ratio">;
|
|
9594
10845
|
value: z.ZodNumber;
|
|
9595
10846
|
}, "strip", z.ZodTypeAny, {
|
|
9596
10847
|
value: number;
|
|
9597
|
-
type: "
|
|
10848
|
+
type: "token_ratio";
|
|
9598
10849
|
}, {
|
|
9599
10850
|
value: number;
|
|
9600
|
-
type: "
|
|
9601
|
-
}
|
|
10851
|
+
type: "token_ratio";
|
|
10852
|
+
}>, z.ZodObject<{
|
|
10853
|
+
type: z.ZodLiteral<"remaining_tokens">;
|
|
10854
|
+
value: z.ZodNumber;
|
|
10855
|
+
}, "strip", z.ZodTypeAny, {
|
|
10856
|
+
value: number;
|
|
10857
|
+
type: "remaining_tokens";
|
|
10858
|
+
}, {
|
|
10859
|
+
value: number;
|
|
10860
|
+
type: "remaining_tokens";
|
|
10861
|
+
}>, z.ZodObject<{
|
|
10862
|
+
type: z.ZodLiteral<"messages_to_refine">;
|
|
10863
|
+
value: z.ZodNumber;
|
|
10864
|
+
}, "strip", z.ZodTypeAny, {
|
|
10865
|
+
value: number;
|
|
10866
|
+
type: "messages_to_refine";
|
|
10867
|
+
}, {
|
|
10868
|
+
value: number;
|
|
10869
|
+
type: "messages_to_refine";
|
|
10870
|
+
}>]>>;
|
|
9602
10871
|
prompt: z.ZodOptional<z.ZodString>;
|
|
9603
10872
|
updatePrompt: z.ZodOptional<z.ZodString>;
|
|
9604
10873
|
reserveRatio: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9625,12 +10894,18 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9625
10894
|
}, "strip", z.ZodTypeAny, {
|
|
9626
10895
|
model?: string | undefined;
|
|
9627
10896
|
prompt?: string | undefined;
|
|
9628
|
-
provider?: string | undefined;
|
|
9629
10897
|
enabled?: boolean | undefined;
|
|
10898
|
+
provider?: string | undefined;
|
|
9630
10899
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
9631
10900
|
trigger?: {
|
|
9632
10901
|
value: number;
|
|
9633
|
-
type: "
|
|
10902
|
+
type: "token_ratio";
|
|
10903
|
+
} | {
|
|
10904
|
+
value: number;
|
|
10905
|
+
type: "remaining_tokens";
|
|
10906
|
+
} | {
|
|
10907
|
+
value: number;
|
|
10908
|
+
type: "messages_to_refine";
|
|
9634
10909
|
} | undefined;
|
|
9635
10910
|
updatePrompt?: string | undefined;
|
|
9636
10911
|
reserveRatio?: number | undefined;
|
|
@@ -9645,12 +10920,18 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9645
10920
|
}, {
|
|
9646
10921
|
model?: string | undefined;
|
|
9647
10922
|
prompt?: string | undefined;
|
|
9648
|
-
provider?: string | undefined;
|
|
9649
10923
|
enabled?: boolean | undefined;
|
|
10924
|
+
provider?: string | undefined;
|
|
9650
10925
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
9651
10926
|
trigger?: {
|
|
9652
10927
|
value: number;
|
|
9653
|
-
type: "
|
|
10928
|
+
type: "token_ratio";
|
|
10929
|
+
} | {
|
|
10930
|
+
value: number;
|
|
10931
|
+
type: "remaining_tokens";
|
|
10932
|
+
} | {
|
|
10933
|
+
value: number;
|
|
10934
|
+
type: "messages_to_refine";
|
|
9654
10935
|
} | undefined;
|
|
9655
10936
|
updatePrompt?: string | undefined;
|
|
9656
10937
|
reserveRatio?: number | undefined;
|
|
@@ -9732,12 +11013,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9732
11013
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
9733
11014
|
}, "strip", z.ZodTypeAny, {
|
|
9734
11015
|
source: "user" | "admin";
|
|
9735
|
-
authorization_type: "
|
|
11016
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9736
11017
|
key?: string | undefined;
|
|
9737
11018
|
custom_header?: string | undefined;
|
|
9738
11019
|
}, {
|
|
9739
11020
|
source: "user" | "admin";
|
|
9740
|
-
authorization_type: "
|
|
11021
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9741
11022
|
key?: string | undefined;
|
|
9742
11023
|
custom_header?: string | undefined;
|
|
9743
11024
|
}>>;
|
|
@@ -9765,7 +11046,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9765
11046
|
description?: string | undefined;
|
|
9766
11047
|
apiKey?: {
|
|
9767
11048
|
source: "user" | "admin";
|
|
9768
|
-
authorization_type: "
|
|
11049
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9769
11050
|
key?: string | undefined;
|
|
9770
11051
|
custom_header?: string | undefined;
|
|
9771
11052
|
} | undefined;
|
|
@@ -9808,7 +11089,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9808
11089
|
description?: string | undefined;
|
|
9809
11090
|
apiKey?: {
|
|
9810
11091
|
source: "user" | "admin";
|
|
9811
|
-
authorization_type: "
|
|
11092
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9812
11093
|
key?: string | undefined;
|
|
9813
11094
|
custom_header?: string | undefined;
|
|
9814
11095
|
} | undefined;
|
|
@@ -9908,12 +11189,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9908
11189
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
9909
11190
|
}, "strip", z.ZodTypeAny, {
|
|
9910
11191
|
source: "user" | "admin";
|
|
9911
|
-
authorization_type: "
|
|
11192
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9912
11193
|
key?: string | undefined;
|
|
9913
11194
|
custom_header?: string | undefined;
|
|
9914
11195
|
}, {
|
|
9915
11196
|
source: "user" | "admin";
|
|
9916
|
-
authorization_type: "
|
|
11197
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9917
11198
|
key?: string | undefined;
|
|
9918
11199
|
custom_header?: string | undefined;
|
|
9919
11200
|
}>>;
|
|
@@ -9937,7 +11218,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9937
11218
|
description?: string | undefined;
|
|
9938
11219
|
apiKey?: {
|
|
9939
11220
|
source: "user" | "admin";
|
|
9940
|
-
authorization_type: "
|
|
11221
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9941
11222
|
key?: string | undefined;
|
|
9942
11223
|
custom_header?: string | undefined;
|
|
9943
11224
|
} | undefined;
|
|
@@ -9977,7 +11258,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9977
11258
|
description?: string | undefined;
|
|
9978
11259
|
apiKey?: {
|
|
9979
11260
|
source: "user" | "admin";
|
|
9980
|
-
authorization_type: "
|
|
11261
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9981
11262
|
key?: string | undefined;
|
|
9982
11263
|
custom_header?: string | undefined;
|
|
9983
11264
|
} | undefined;
|
|
@@ -10075,12 +11356,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10075
11356
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
10076
11357
|
}, "strip", z.ZodTypeAny, {
|
|
10077
11358
|
source: "user" | "admin";
|
|
10078
|
-
authorization_type: "
|
|
11359
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10079
11360
|
key?: string | undefined;
|
|
10080
11361
|
custom_header?: string | undefined;
|
|
10081
11362
|
}, {
|
|
10082
11363
|
source: "user" | "admin";
|
|
10083
|
-
authorization_type: "
|
|
11364
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10084
11365
|
key?: string | undefined;
|
|
10085
11366
|
custom_header?: string | undefined;
|
|
10086
11367
|
}>>;
|
|
@@ -10105,7 +11386,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10105
11386
|
description?: string | undefined;
|
|
10106
11387
|
apiKey?: {
|
|
10107
11388
|
source: "user" | "admin";
|
|
10108
|
-
authorization_type: "
|
|
11389
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10109
11390
|
key?: string | undefined;
|
|
10110
11391
|
custom_header?: string | undefined;
|
|
10111
11392
|
} | undefined;
|
|
@@ -10146,7 +11427,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10146
11427
|
description?: string | undefined;
|
|
10147
11428
|
apiKey?: {
|
|
10148
11429
|
source: "user" | "admin";
|
|
10149
|
-
authorization_type: "
|
|
11430
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10150
11431
|
key?: string | undefined;
|
|
10151
11432
|
custom_header?: string | undefined;
|
|
10152
11433
|
} | undefined;
|
|
@@ -10245,12 +11526,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10245
11526
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
10246
11527
|
}, "strip", z.ZodTypeAny, {
|
|
10247
11528
|
source: "user" | "admin";
|
|
10248
|
-
authorization_type: "
|
|
11529
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10249
11530
|
key?: string | undefined;
|
|
10250
11531
|
custom_header?: string | undefined;
|
|
10251
11532
|
}, {
|
|
10252
11533
|
source: "user" | "admin";
|
|
10253
|
-
authorization_type: "
|
|
11534
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10254
11535
|
key?: string | undefined;
|
|
10255
11536
|
custom_header?: string | undefined;
|
|
10256
11537
|
}>>;
|
|
@@ -10275,7 +11556,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10275
11556
|
description?: string | undefined;
|
|
10276
11557
|
apiKey?: {
|
|
10277
11558
|
source: "user" | "admin";
|
|
10278
|
-
authorization_type: "
|
|
11559
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10279
11560
|
key?: string | undefined;
|
|
10280
11561
|
custom_header?: string | undefined;
|
|
10281
11562
|
} | undefined;
|
|
@@ -10316,7 +11597,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10316
11597
|
description?: string | undefined;
|
|
10317
11598
|
apiKey?: {
|
|
10318
11599
|
source: "user" | "admin";
|
|
10319
|
-
authorization_type: "
|
|
11600
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10320
11601
|
key?: string | undefined;
|
|
10321
11602
|
custom_header?: string | undefined;
|
|
10322
11603
|
} | undefined;
|
|
@@ -10353,10 +11634,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10353
11634
|
}>]>>>;
|
|
10354
11635
|
mcpSettings: z.ZodOptional<z.ZodObject<{
|
|
10355
11636
|
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11637
|
+
allowedAddresses: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, "many">>;
|
|
10356
11638
|
}, "strip", z.ZodTypeAny, {
|
|
10357
11639
|
allowedDomains?: string[] | undefined;
|
|
11640
|
+
allowedAddresses?: string[] | undefined;
|
|
10358
11641
|
}, {
|
|
10359
11642
|
allowedDomains?: string[] | undefined;
|
|
11643
|
+
allowedAddresses?: string[] | undefined;
|
|
10360
11644
|
}>>;
|
|
10361
11645
|
interface: z.ZodDefault<z.ZodObject<{
|
|
10362
11646
|
privacyPolicy: z.ZodOptional<z.ZodObject<{
|
|
@@ -10466,6 +11750,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10466
11750
|
}>]>>;
|
|
10467
11751
|
temporaryChat: z.ZodOptional<z.ZodBoolean>;
|
|
10468
11752
|
temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
|
|
11753
|
+
autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
|
|
10469
11754
|
runCode: z.ZodOptional<z.ZodBoolean>;
|
|
10470
11755
|
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
10471
11756
|
peoplePicker: z.ZodOptional<z.ZodObject<{
|
|
@@ -10506,7 +11791,33 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10506
11791
|
share?: boolean | undefined;
|
|
10507
11792
|
public?: boolean | undefined;
|
|
10508
11793
|
}>>;
|
|
11794
|
+
skills: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
11795
|
+
use: z.ZodOptional<z.ZodBoolean>;
|
|
11796
|
+
create: z.ZodOptional<z.ZodBoolean>;
|
|
11797
|
+
share: z.ZodOptional<z.ZodBoolean>;
|
|
11798
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
11799
|
+
defaultActiveOnShare: z.ZodOptional<z.ZodBoolean>;
|
|
11800
|
+
}, "strip", z.ZodTypeAny, {
|
|
11801
|
+
use?: boolean | undefined;
|
|
11802
|
+
create?: boolean | undefined;
|
|
11803
|
+
share?: boolean | undefined;
|
|
11804
|
+
public?: boolean | undefined;
|
|
11805
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
11806
|
+
}, {
|
|
11807
|
+
use?: boolean | undefined;
|
|
11808
|
+
create?: boolean | undefined;
|
|
11809
|
+
share?: boolean | undefined;
|
|
11810
|
+
public?: boolean | undefined;
|
|
11811
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
11812
|
+
}>]>>;
|
|
10509
11813
|
}, "strip", z.ZodTypeAny, {
|
|
11814
|
+
skills?: boolean | {
|
|
11815
|
+
use?: boolean | undefined;
|
|
11816
|
+
create?: boolean | undefined;
|
|
11817
|
+
share?: boolean | undefined;
|
|
11818
|
+
public?: boolean | undefined;
|
|
11819
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
11820
|
+
} | undefined;
|
|
10510
11821
|
webSearch?: boolean | undefined;
|
|
10511
11822
|
parameters?: boolean | undefined;
|
|
10512
11823
|
mcpServers?: {
|
|
@@ -10551,6 +11862,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10551
11862
|
} | undefined;
|
|
10552
11863
|
temporaryChat?: boolean | undefined;
|
|
10553
11864
|
temporaryChatRetention?: number | undefined;
|
|
11865
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
10554
11866
|
runCode?: boolean | undefined;
|
|
10555
11867
|
peoplePicker?: {
|
|
10556
11868
|
users?: boolean | undefined;
|
|
@@ -10569,6 +11881,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10569
11881
|
public?: boolean | undefined;
|
|
10570
11882
|
} | undefined;
|
|
10571
11883
|
}, {
|
|
11884
|
+
skills?: boolean | {
|
|
11885
|
+
use?: boolean | undefined;
|
|
11886
|
+
create?: boolean | undefined;
|
|
11887
|
+
share?: boolean | undefined;
|
|
11888
|
+
public?: boolean | undefined;
|
|
11889
|
+
defaultActiveOnShare?: boolean | undefined;
|
|
11890
|
+
} | undefined;
|
|
10572
11891
|
webSearch?: boolean | undefined;
|
|
10573
11892
|
parameters?: boolean | undefined;
|
|
10574
11893
|
mcpServers?: {
|
|
@@ -10613,6 +11932,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10613
11932
|
} | undefined;
|
|
10614
11933
|
temporaryChat?: boolean | undefined;
|
|
10615
11934
|
temporaryChatRetention?: number | undefined;
|
|
11935
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
10616
11936
|
runCode?: boolean | undefined;
|
|
10617
11937
|
peoplePicker?: {
|
|
10618
11938
|
users?: boolean | undefined;
|
|
@@ -10656,29 +11976,135 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10656
11976
|
size?: "normal" | "compact" | "flexible" | "invisible" | undefined;
|
|
10657
11977
|
} | undefined;
|
|
10658
11978
|
}>>;
|
|
10659
|
-
fileStrategy: z.ZodDefault<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
11979
|
+
fileStrategy: z.ZodDefault<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
10660
11980
|
fileStrategies: z.ZodOptional<z.ZodObject<{
|
|
10661
|
-
default: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
10662
|
-
avatar: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
10663
|
-
image: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
10664
|
-
document: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
11981
|
+
default: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
11982
|
+
avatar: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
11983
|
+
image: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
11984
|
+
document: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
11985
|
+
skills: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
|
|
10665
11986
|
}, "strip", z.ZodTypeAny, {
|
|
10666
|
-
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10667
|
-
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10668
|
-
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10669
|
-
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
11987
|
+
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
11988
|
+
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
11989
|
+
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
11990
|
+
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
11991
|
+
skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
10670
11992
|
}, {
|
|
10671
|
-
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10672
|
-
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10673
|
-
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10674
|
-
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
11993
|
+
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
11994
|
+
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
11995
|
+
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
11996
|
+
document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
11997
|
+
skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
|
|
11998
|
+
}>>;
|
|
11999
|
+
cloudfront: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
12000
|
+
domain: z.ZodString;
|
|
12001
|
+
distributionId: z.ZodOptional<z.ZodString>;
|
|
12002
|
+
invalidateOnDelete: z.ZodDefault<z.ZodBoolean>;
|
|
12003
|
+
imageSigning: z.ZodDefault<z.ZodEnum<["none", "cookies", "url"]>>;
|
|
12004
|
+
urlExpiry: z.ZodDefault<z.ZodNumber>;
|
|
12005
|
+
cookieExpiry: z.ZodDefault<z.ZodNumber>;
|
|
12006
|
+
cookieDomain: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
12007
|
+
storageRegion: z.ZodOptional<z.ZodString>;
|
|
12008
|
+
includeRegionInPath: z.ZodDefault<z.ZodBoolean>;
|
|
12009
|
+
requireSignedAccess: z.ZodDefault<z.ZodBoolean>;
|
|
12010
|
+
}, "strip", z.ZodTypeAny, {
|
|
12011
|
+
domain: string;
|
|
12012
|
+
invalidateOnDelete: boolean;
|
|
12013
|
+
imageSigning: "none" | "cookies" | "url";
|
|
12014
|
+
urlExpiry: number;
|
|
12015
|
+
cookieExpiry: number;
|
|
12016
|
+
includeRegionInPath: boolean;
|
|
12017
|
+
requireSignedAccess: boolean;
|
|
12018
|
+
distributionId?: string | undefined;
|
|
12019
|
+
cookieDomain?: string | undefined;
|
|
12020
|
+
storageRegion?: string | undefined;
|
|
12021
|
+
}, {
|
|
12022
|
+
domain: string;
|
|
12023
|
+
distributionId?: string | undefined;
|
|
12024
|
+
invalidateOnDelete?: boolean | undefined;
|
|
12025
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
12026
|
+
urlExpiry?: number | undefined;
|
|
12027
|
+
cookieExpiry?: number | undefined;
|
|
12028
|
+
cookieDomain?: string | undefined;
|
|
12029
|
+
storageRegion?: string | undefined;
|
|
12030
|
+
includeRegionInPath?: boolean | undefined;
|
|
12031
|
+
requireSignedAccess?: boolean | undefined;
|
|
12032
|
+
}>, {
|
|
12033
|
+
domain: string;
|
|
12034
|
+
invalidateOnDelete: boolean;
|
|
12035
|
+
imageSigning: "none" | "cookies" | "url";
|
|
12036
|
+
urlExpiry: number;
|
|
12037
|
+
cookieExpiry: number;
|
|
12038
|
+
includeRegionInPath: boolean;
|
|
12039
|
+
requireSignedAccess: boolean;
|
|
12040
|
+
distributionId?: string | undefined;
|
|
12041
|
+
cookieDomain?: string | undefined;
|
|
12042
|
+
storageRegion?: string | undefined;
|
|
12043
|
+
}, {
|
|
12044
|
+
domain: string;
|
|
12045
|
+
distributionId?: string | undefined;
|
|
12046
|
+
invalidateOnDelete?: boolean | undefined;
|
|
12047
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
12048
|
+
urlExpiry?: number | undefined;
|
|
12049
|
+
cookieExpiry?: number | undefined;
|
|
12050
|
+
cookieDomain?: string | undefined;
|
|
12051
|
+
storageRegion?: string | undefined;
|
|
12052
|
+
includeRegionInPath?: boolean | undefined;
|
|
12053
|
+
requireSignedAccess?: boolean | undefined;
|
|
12054
|
+
}>, {
|
|
12055
|
+
domain: string;
|
|
12056
|
+
invalidateOnDelete: boolean;
|
|
12057
|
+
imageSigning: "none" | "cookies" | "url";
|
|
12058
|
+
urlExpiry: number;
|
|
12059
|
+
cookieExpiry: number;
|
|
12060
|
+
includeRegionInPath: boolean;
|
|
12061
|
+
requireSignedAccess: boolean;
|
|
12062
|
+
distributionId?: string | undefined;
|
|
12063
|
+
cookieDomain?: string | undefined;
|
|
12064
|
+
storageRegion?: string | undefined;
|
|
12065
|
+
}, {
|
|
12066
|
+
domain: string;
|
|
12067
|
+
distributionId?: string | undefined;
|
|
12068
|
+
invalidateOnDelete?: boolean | undefined;
|
|
12069
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
12070
|
+
urlExpiry?: number | undefined;
|
|
12071
|
+
cookieExpiry?: number | undefined;
|
|
12072
|
+
cookieDomain?: string | undefined;
|
|
12073
|
+
storageRegion?: string | undefined;
|
|
12074
|
+
includeRegionInPath?: boolean | undefined;
|
|
12075
|
+
requireSignedAccess?: boolean | undefined;
|
|
12076
|
+
}>, {
|
|
12077
|
+
domain: string;
|
|
12078
|
+
invalidateOnDelete: boolean;
|
|
12079
|
+
imageSigning: "none" | "cookies" | "url";
|
|
12080
|
+
urlExpiry: number;
|
|
12081
|
+
cookieExpiry: number;
|
|
12082
|
+
includeRegionInPath: boolean;
|
|
12083
|
+
requireSignedAccess: boolean;
|
|
12084
|
+
distributionId?: string | undefined;
|
|
12085
|
+
cookieDomain?: string | undefined;
|
|
12086
|
+
storageRegion?: string | undefined;
|
|
12087
|
+
}, {
|
|
12088
|
+
domain: string;
|
|
12089
|
+
distributionId?: string | undefined;
|
|
12090
|
+
invalidateOnDelete?: boolean | undefined;
|
|
12091
|
+
imageSigning?: "none" | "cookies" | "url" | undefined;
|
|
12092
|
+
urlExpiry?: number | undefined;
|
|
12093
|
+
cookieExpiry?: number | undefined;
|
|
12094
|
+
cookieDomain?: string | undefined;
|
|
12095
|
+
storageRegion?: string | undefined;
|
|
12096
|
+
includeRegionInPath?: boolean | undefined;
|
|
12097
|
+
requireSignedAccess?: boolean | undefined;
|
|
10675
12098
|
}>>;
|
|
10676
12099
|
actions: z.ZodOptional<z.ZodObject<{
|
|
10677
12100
|
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12101
|
+
allowedAddresses: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, "many">>;
|
|
10678
12102
|
}, "strip", z.ZodTypeAny, {
|
|
10679
12103
|
allowedDomains?: string[] | undefined;
|
|
12104
|
+
allowedAddresses?: string[] | undefined;
|
|
10680
12105
|
}, {
|
|
10681
12106
|
allowedDomains?: string[] | undefined;
|
|
12107
|
+
allowedAddresses?: string[] | undefined;
|
|
10682
12108
|
}>>;
|
|
10683
12109
|
registration: z.ZodDefault<z.ZodObject<{
|
|
10684
12110
|
socialLogins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -11309,6 +12735,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11309
12735
|
totalSizeLimit?: number | undefined;
|
|
11310
12736
|
supportedMimeTypes?: string[] | undefined;
|
|
11311
12737
|
}>>>;
|
|
12738
|
+
skills: z.ZodOptional<z.ZodObject<{
|
|
12739
|
+
fileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
12740
|
+
}, "strip", z.ZodTypeAny, {
|
|
12741
|
+
fileSizeLimit?: number | undefined;
|
|
12742
|
+
}, {
|
|
12743
|
+
fileSizeLimit?: number | undefined;
|
|
12744
|
+
}>>;
|
|
11312
12745
|
serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
11313
12746
|
avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
11314
12747
|
fileTokenLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11356,6 +12789,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11356
12789
|
text?: {
|
|
11357
12790
|
supportedMimeTypes?: string[] | undefined;
|
|
11358
12791
|
} | undefined;
|
|
12792
|
+
skills?: {
|
|
12793
|
+
fileSizeLimit?: number | undefined;
|
|
12794
|
+
} | undefined;
|
|
11359
12795
|
ocr?: {
|
|
11360
12796
|
supportedMimeTypes?: string[] | undefined;
|
|
11361
12797
|
} | undefined;
|
|
@@ -11383,6 +12819,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11383
12819
|
text?: {
|
|
11384
12820
|
supportedMimeTypes?: string[] | undefined;
|
|
11385
12821
|
} | undefined;
|
|
12822
|
+
skills?: {
|
|
12823
|
+
fileSizeLimit?: number | undefined;
|
|
12824
|
+
} | undefined;
|
|
11386
12825
|
ocr?: {
|
|
11387
12826
|
supportedMimeTypes?: string[] | undefined;
|
|
11388
12827
|
} | undefined;
|
|
@@ -11410,7 +12849,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11410
12849
|
modelSpecs: z.ZodOptional<z.ZodObject<{
|
|
11411
12850
|
enforce: z.ZodDefault<z.ZodBoolean>;
|
|
11412
12851
|
prioritize: z.ZodDefault<z.ZodBoolean>;
|
|
11413
|
-
list: z.ZodArray<z.ZodObject<{
|
|
12852
|
+
list: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
11414
12853
|
name: z.ZodString;
|
|
11415
12854
|
label: z.ZodString;
|
|
11416
12855
|
preset: z.ZodObject<Omit<{
|
|
@@ -11541,6 +12980,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11541
12980
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").Verbosity>>>;
|
|
11542
12981
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
11543
12982
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").AnthropicEffort>>>;
|
|
12983
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ThinkingDisplay>>>;
|
|
11544
12984
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
11545
12985
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
11546
12986
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -11609,8 +13049,10 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11609
13049
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
11610
13050
|
order: z.ZodOptional<z.ZodNumber>;
|
|
11611
13051
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
11612
|
-
}, "conversationId" | "title" | "
|
|
13052
|
+
}, "conversationId" | "title" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
|
|
11613
13053
|
endpoint: string | null;
|
|
13054
|
+
iconURL?: string | null | undefined;
|
|
13055
|
+
greeting?: string | undefined;
|
|
11614
13056
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11615
13057
|
tools?: string[] | {
|
|
11616
13058
|
name: string;
|
|
@@ -11666,6 +13108,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11666
13108
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
11667
13109
|
useResponsesApi?: boolean | undefined;
|
|
11668
13110
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
13111
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
11669
13112
|
web_search?: boolean | undefined;
|
|
11670
13113
|
disableStreaming?: boolean | undefined;
|
|
11671
13114
|
assistant_id?: string | undefined;
|
|
@@ -11702,6 +13145,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11702
13145
|
stop?: string[] | undefined;
|
|
11703
13146
|
}, {
|
|
11704
13147
|
endpoint: string | null;
|
|
13148
|
+
iconURL?: string | null | undefined;
|
|
13149
|
+
greeting?: string | undefined;
|
|
11705
13150
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11706
13151
|
tools?: string[] | {
|
|
11707
13152
|
name: string;
|
|
@@ -11757,6 +13202,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11757
13202
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
11758
13203
|
useResponsesApi?: boolean | undefined;
|
|
11759
13204
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
13205
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
11760
13206
|
web_search?: boolean | undefined;
|
|
11761
13207
|
disableStreaming?: boolean | undefined;
|
|
11762
13208
|
assistant_id?: string | undefined;
|
|
@@ -11811,6 +13257,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11811
13257
|
name: string;
|
|
11812
13258
|
preset: {
|
|
11813
13259
|
endpoint: string | null;
|
|
13260
|
+
iconURL?: string | null | undefined;
|
|
13261
|
+
greeting?: string | undefined;
|
|
11814
13262
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11815
13263
|
tools?: string[] | {
|
|
11816
13264
|
name: string;
|
|
@@ -11866,6 +13314,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11866
13314
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
11867
13315
|
useResponsesApi?: boolean | undefined;
|
|
11868
13316
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
13317
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
11869
13318
|
web_search?: boolean | undefined;
|
|
11870
13319
|
disableStreaming?: boolean | undefined;
|
|
11871
13320
|
assistant_id?: string | undefined;
|
|
@@ -11920,6 +13369,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11920
13369
|
name: string;
|
|
11921
13370
|
preset: {
|
|
11922
13371
|
endpoint: string | null;
|
|
13372
|
+
iconURL?: string | null | undefined;
|
|
13373
|
+
greeting?: string | undefined;
|
|
11923
13374
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11924
13375
|
tools?: string[] | {
|
|
11925
13376
|
name: string;
|
|
@@ -11975,6 +13426,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11975
13426
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
11976
13427
|
useResponsesApi?: boolean | undefined;
|
|
11977
13428
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
13429
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
11978
13430
|
web_search?: boolean | undefined;
|
|
11979
13431
|
disableStreaming?: boolean | undefined;
|
|
11980
13432
|
assistant_id?: string | undefined;
|
|
@@ -12024,7 +13476,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12024
13476
|
showIconInHeader?: boolean | undefined;
|
|
12025
13477
|
authType?: import("./schemas").AuthType | undefined;
|
|
12026
13478
|
executeCode?: boolean | undefined;
|
|
12027
|
-
}>, "many"
|
|
13479
|
+
}>, "many">>;
|
|
12028
13480
|
addedEndpoints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
12029
13481
|
}, "strip", z.ZodTypeAny, {
|
|
12030
13482
|
enforce: boolean;
|
|
@@ -12034,6 +13486,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12034
13486
|
name: string;
|
|
12035
13487
|
preset: {
|
|
12036
13488
|
endpoint: string | null;
|
|
13489
|
+
iconURL?: string | null | undefined;
|
|
13490
|
+
greeting?: string | undefined;
|
|
12037
13491
|
endpointType?: EModelEndpoint | null | undefined;
|
|
12038
13492
|
tools?: string[] | {
|
|
12039
13493
|
name: string;
|
|
@@ -12089,6 +13543,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12089
13543
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
12090
13544
|
useResponsesApi?: boolean | undefined;
|
|
12091
13545
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
13546
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
12092
13547
|
web_search?: boolean | undefined;
|
|
12093
13548
|
disableStreaming?: boolean | undefined;
|
|
12094
13549
|
assistant_id?: string | undefined;
|
|
@@ -12141,11 +13596,15 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12141
13596
|
}[];
|
|
12142
13597
|
addedEndpoints?: string[] | undefined;
|
|
12143
13598
|
}, {
|
|
12144
|
-
|
|
13599
|
+
enforce?: boolean | undefined;
|
|
13600
|
+
prioritize?: boolean | undefined;
|
|
13601
|
+
list?: {
|
|
12145
13602
|
label: string;
|
|
12146
13603
|
name: string;
|
|
12147
13604
|
preset: {
|
|
12148
13605
|
endpoint: string | null;
|
|
13606
|
+
iconURL?: string | null | undefined;
|
|
13607
|
+
greeting?: string | undefined;
|
|
12149
13608
|
endpointType?: EModelEndpoint | null | undefined;
|
|
12150
13609
|
tools?: string[] | {
|
|
12151
13610
|
name: string;
|
|
@@ -12201,6 +13660,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12201
13660
|
verbosity?: import("./schemas").Verbosity | null | undefined;
|
|
12202
13661
|
useResponsesApi?: boolean | undefined;
|
|
12203
13662
|
effort?: import("./schemas").AnthropicEffort | null | undefined;
|
|
13663
|
+
thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
|
|
12204
13664
|
web_search?: boolean | undefined;
|
|
12205
13665
|
disableStreaming?: boolean | undefined;
|
|
12206
13666
|
assistant_id?: string | undefined;
|
|
@@ -12250,12 +13710,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12250
13710
|
showIconInHeader?: boolean | undefined;
|
|
12251
13711
|
authType?: import("./schemas").AuthType | undefined;
|
|
12252
13712
|
executeCode?: boolean | undefined;
|
|
12253
|
-
}[];
|
|
12254
|
-
enforce?: boolean | undefined;
|
|
12255
|
-
prioritize?: boolean | undefined;
|
|
13713
|
+
}[] | undefined;
|
|
12256
13714
|
addedEndpoints?: string[] | undefined;
|
|
12257
13715
|
}>>;
|
|
12258
13716
|
endpoints: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
13717
|
+
allowedAddresses: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, "many">>;
|
|
12259
13718
|
all: z.ZodOptional<z.ZodObject<Omit<{
|
|
12260
13719
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
12261
13720
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -12816,6 +14275,96 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12816
14275
|
minRelevanceScore: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
12817
14276
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
12818
14277
|
capabilities: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof AgentCapabilities>, "many">>>;
|
|
14278
|
+
remoteApi: z.ZodOptional<z.ZodObject<{
|
|
14279
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
14280
|
+
apiKey: z.ZodOptional<z.ZodObject<{
|
|
14281
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
14282
|
+
}, "strip", z.ZodTypeAny, {
|
|
14283
|
+
enabled: boolean;
|
|
14284
|
+
}, {
|
|
14285
|
+
enabled?: boolean | undefined;
|
|
14286
|
+
}>>;
|
|
14287
|
+
oidc: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
14288
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
14289
|
+
issuer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
14290
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
14291
|
+
jwksUri: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
14292
|
+
scope: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
14293
|
+
}, "strip", z.ZodTypeAny, {
|
|
14294
|
+
enabled: boolean;
|
|
14295
|
+
scope?: string | undefined;
|
|
14296
|
+
issuer?: string | undefined;
|
|
14297
|
+
audience?: string | undefined;
|
|
14298
|
+
jwksUri?: string | undefined;
|
|
14299
|
+
}, {
|
|
14300
|
+
enabled?: boolean | undefined;
|
|
14301
|
+
scope?: string | undefined;
|
|
14302
|
+
issuer?: string | undefined;
|
|
14303
|
+
audience?: string | undefined;
|
|
14304
|
+
jwksUri?: string | undefined;
|
|
14305
|
+
}>, {
|
|
14306
|
+
enabled: boolean;
|
|
14307
|
+
scope?: string | undefined;
|
|
14308
|
+
issuer?: string | undefined;
|
|
14309
|
+
audience?: string | undefined;
|
|
14310
|
+
jwksUri?: string | undefined;
|
|
14311
|
+
}, {
|
|
14312
|
+
enabled?: boolean | undefined;
|
|
14313
|
+
scope?: string | undefined;
|
|
14314
|
+
issuer?: string | undefined;
|
|
14315
|
+
audience?: string | undefined;
|
|
14316
|
+
jwksUri?: string | undefined;
|
|
14317
|
+
}>>;
|
|
14318
|
+
}, "strip", z.ZodTypeAny, {
|
|
14319
|
+
apiKey?: {
|
|
14320
|
+
enabled: boolean;
|
|
14321
|
+
} | undefined;
|
|
14322
|
+
oidc?: {
|
|
14323
|
+
enabled: boolean;
|
|
14324
|
+
scope?: string | undefined;
|
|
14325
|
+
issuer?: string | undefined;
|
|
14326
|
+
audience?: string | undefined;
|
|
14327
|
+
jwksUri?: string | undefined;
|
|
14328
|
+
} | undefined;
|
|
14329
|
+
}, {
|
|
14330
|
+
apiKey?: {
|
|
14331
|
+
enabled?: boolean | undefined;
|
|
14332
|
+
} | undefined;
|
|
14333
|
+
oidc?: {
|
|
14334
|
+
enabled?: boolean | undefined;
|
|
14335
|
+
scope?: string | undefined;
|
|
14336
|
+
issuer?: string | undefined;
|
|
14337
|
+
audience?: string | undefined;
|
|
14338
|
+
jwksUri?: string | undefined;
|
|
14339
|
+
} | undefined;
|
|
14340
|
+
}>>;
|
|
14341
|
+
}, "strip", z.ZodTypeAny, {
|
|
14342
|
+
auth?: {
|
|
14343
|
+
apiKey?: {
|
|
14344
|
+
enabled: boolean;
|
|
14345
|
+
} | undefined;
|
|
14346
|
+
oidc?: {
|
|
14347
|
+
enabled: boolean;
|
|
14348
|
+
scope?: string | undefined;
|
|
14349
|
+
issuer?: string | undefined;
|
|
14350
|
+
audience?: string | undefined;
|
|
14351
|
+
jwksUri?: string | undefined;
|
|
14352
|
+
} | undefined;
|
|
14353
|
+
} | undefined;
|
|
14354
|
+
}, {
|
|
14355
|
+
auth?: {
|
|
14356
|
+
apiKey?: {
|
|
14357
|
+
enabled?: boolean | undefined;
|
|
14358
|
+
} | undefined;
|
|
14359
|
+
oidc?: {
|
|
14360
|
+
enabled?: boolean | undefined;
|
|
14361
|
+
scope?: string | undefined;
|
|
14362
|
+
issuer?: string | undefined;
|
|
14363
|
+
audience?: string | undefined;
|
|
14364
|
+
jwksUri?: string | undefined;
|
|
14365
|
+
} | undefined;
|
|
14366
|
+
} | undefined;
|
|
14367
|
+
}>>;
|
|
12819
14368
|
}, "strip", z.ZodTypeAny, {
|
|
12820
14369
|
disableBuilder: boolean;
|
|
12821
14370
|
capabilities: AgentCapabilities[];
|
|
@@ -12833,6 +14382,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12833
14382
|
recursionLimit?: number | undefined;
|
|
12834
14383
|
maxRecursionLimit?: number | undefined;
|
|
12835
14384
|
allowedProviders?: string[] | undefined;
|
|
14385
|
+
remoteApi?: {
|
|
14386
|
+
auth?: {
|
|
14387
|
+
apiKey?: {
|
|
14388
|
+
enabled: boolean;
|
|
14389
|
+
} | undefined;
|
|
14390
|
+
oidc?: {
|
|
14391
|
+
enabled: boolean;
|
|
14392
|
+
scope?: string | undefined;
|
|
14393
|
+
issuer?: string | undefined;
|
|
14394
|
+
audience?: string | undefined;
|
|
14395
|
+
jwksUri?: string | undefined;
|
|
14396
|
+
} | undefined;
|
|
14397
|
+
} | undefined;
|
|
14398
|
+
} | undefined;
|
|
12836
14399
|
}, {
|
|
12837
14400
|
streamRate?: number | undefined;
|
|
12838
14401
|
titlePrompt?: string | undefined;
|
|
@@ -12850,6 +14413,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12850
14413
|
maxCitationsPerFile?: number | undefined;
|
|
12851
14414
|
minRelevanceScore?: number | undefined;
|
|
12852
14415
|
allowedProviders?: string[] | undefined;
|
|
14416
|
+
remoteApi?: {
|
|
14417
|
+
auth?: {
|
|
14418
|
+
apiKey?: {
|
|
14419
|
+
enabled?: boolean | undefined;
|
|
14420
|
+
} | undefined;
|
|
14421
|
+
oidc?: {
|
|
14422
|
+
enabled?: boolean | undefined;
|
|
14423
|
+
scope?: string | undefined;
|
|
14424
|
+
issuer?: string | undefined;
|
|
14425
|
+
audience?: string | undefined;
|
|
14426
|
+
jwksUri?: string | undefined;
|
|
14427
|
+
} | undefined;
|
|
14428
|
+
} | undefined;
|
|
14429
|
+
} | undefined;
|
|
12853
14430
|
}>>>;
|
|
12854
14431
|
custom: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12855
14432
|
streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -13253,6 +14830,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13253
14830
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
13254
14831
|
}>>;
|
|
13255
14832
|
}, "strict", z.ZodTypeAny, {
|
|
14833
|
+
allowedAddresses?: string[] | undefined;
|
|
13256
14834
|
azureOpenAI?: ({
|
|
13257
14835
|
groups: ({
|
|
13258
14836
|
group: string;
|
|
@@ -13403,6 +14981,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13403
14981
|
recursionLimit?: number | undefined;
|
|
13404
14982
|
maxRecursionLimit?: number | undefined;
|
|
13405
14983
|
allowedProviders?: string[] | undefined;
|
|
14984
|
+
remoteApi?: {
|
|
14985
|
+
auth?: {
|
|
14986
|
+
apiKey?: {
|
|
14987
|
+
enabled: boolean;
|
|
14988
|
+
} | undefined;
|
|
14989
|
+
oidc?: {
|
|
14990
|
+
enabled: boolean;
|
|
14991
|
+
scope?: string | undefined;
|
|
14992
|
+
issuer?: string | undefined;
|
|
14993
|
+
audience?: string | undefined;
|
|
14994
|
+
jwksUri?: string | undefined;
|
|
14995
|
+
} | undefined;
|
|
14996
|
+
} | undefined;
|
|
14997
|
+
} | undefined;
|
|
13406
14998
|
} | undefined;
|
|
13407
14999
|
custom?: {
|
|
13408
15000
|
iconURL?: string | undefined;
|
|
@@ -13494,6 +15086,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13494
15086
|
maxToolResultChars?: number | undefined;
|
|
13495
15087
|
} | undefined;
|
|
13496
15088
|
}, {
|
|
15089
|
+
allowedAddresses?: string[] | undefined;
|
|
13497
15090
|
azureOpenAI?: ({
|
|
13498
15091
|
groups: ({
|
|
13499
15092
|
group: string;
|
|
@@ -13644,6 +15237,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13644
15237
|
maxCitationsPerFile?: number | undefined;
|
|
13645
15238
|
minRelevanceScore?: number | undefined;
|
|
13646
15239
|
allowedProviders?: string[] | undefined;
|
|
15240
|
+
remoteApi?: {
|
|
15241
|
+
auth?: {
|
|
15242
|
+
apiKey?: {
|
|
15243
|
+
enabled?: boolean | undefined;
|
|
15244
|
+
} | undefined;
|
|
15245
|
+
oidc?: {
|
|
15246
|
+
enabled?: boolean | undefined;
|
|
15247
|
+
scope?: string | undefined;
|
|
15248
|
+
issuer?: string | undefined;
|
|
15249
|
+
audience?: string | undefined;
|
|
15250
|
+
jwksUri?: string | undefined;
|
|
15251
|
+
} | undefined;
|
|
15252
|
+
} | undefined;
|
|
15253
|
+
} | undefined;
|
|
13647
15254
|
} | undefined;
|
|
13648
15255
|
custom?: {
|
|
13649
15256
|
iconURL?: string | undefined;
|
|
@@ -13735,6 +15342,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13735
15342
|
maxToolResultChars?: number | undefined;
|
|
13736
15343
|
} | undefined;
|
|
13737
15344
|
}>, {
|
|
15345
|
+
allowedAddresses?: string[] | undefined;
|
|
13738
15346
|
azureOpenAI?: ({
|
|
13739
15347
|
groups: ({
|
|
13740
15348
|
group: string;
|
|
@@ -13885,6 +15493,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13885
15493
|
recursionLimit?: number | undefined;
|
|
13886
15494
|
maxRecursionLimit?: number | undefined;
|
|
13887
15495
|
allowedProviders?: string[] | undefined;
|
|
15496
|
+
remoteApi?: {
|
|
15497
|
+
auth?: {
|
|
15498
|
+
apiKey?: {
|
|
15499
|
+
enabled: boolean;
|
|
15500
|
+
} | undefined;
|
|
15501
|
+
oidc?: {
|
|
15502
|
+
enabled: boolean;
|
|
15503
|
+
scope?: string | undefined;
|
|
15504
|
+
issuer?: string | undefined;
|
|
15505
|
+
audience?: string | undefined;
|
|
15506
|
+
jwksUri?: string | undefined;
|
|
15507
|
+
} | undefined;
|
|
15508
|
+
} | undefined;
|
|
15509
|
+
} | undefined;
|
|
13888
15510
|
} | undefined;
|
|
13889
15511
|
custom?: {
|
|
13890
15512
|
iconURL?: string | undefined;
|
|
@@ -13976,6 +15598,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13976
15598
|
maxToolResultChars?: number | undefined;
|
|
13977
15599
|
} | undefined;
|
|
13978
15600
|
}, {
|
|
15601
|
+
allowedAddresses?: string[] | undefined;
|
|
13979
15602
|
azureOpenAI?: ({
|
|
13980
15603
|
groups: ({
|
|
13981
15604
|
group: string;
|
|
@@ -14126,6 +15749,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14126
15749
|
maxCitationsPerFile?: number | undefined;
|
|
14127
15750
|
minRelevanceScore?: number | undefined;
|
|
14128
15751
|
allowedProviders?: string[] | undefined;
|
|
15752
|
+
remoteApi?: {
|
|
15753
|
+
auth?: {
|
|
15754
|
+
apiKey?: {
|
|
15755
|
+
enabled?: boolean | undefined;
|
|
15756
|
+
} | undefined;
|
|
15757
|
+
oidc?: {
|
|
15758
|
+
enabled?: boolean | undefined;
|
|
15759
|
+
scope?: string | undefined;
|
|
15760
|
+
issuer?: string | undefined;
|
|
15761
|
+
audience?: string | undefined;
|
|
15762
|
+
jwksUri?: string | undefined;
|
|
15763
|
+
} | undefined;
|
|
15764
|
+
} | undefined;
|
|
15765
|
+
} | undefined;
|
|
14129
15766
|
} | undefined;
|
|
14130
15767
|
custom?: {
|
|
14131
15768
|
iconURL?: string | undefined;
|
|
@@ -14695,9 +16332,9 @@ export declare enum TTSProviders {
|
|
|
14695
16332
|
/** Enum for app-wide constants */
|
|
14696
16333
|
export declare enum Constants {
|
|
14697
16334
|
/** Key for the app's version. */
|
|
14698
|
-
VERSION = "v0.8.
|
|
16335
|
+
VERSION = "v0.8.6-rc1",
|
|
14699
16336
|
/** Key for the Custom Config's version (librechat.yaml). */
|
|
14700
|
-
CONFIG_VERSION = "1.3.
|
|
16337
|
+
CONFIG_VERSION = "1.3.11",
|
|
14701
16338
|
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */
|
|
14702
16339
|
NO_PARENT = "00000000-0000-0000-0000-000000000000",
|
|
14703
16340
|
/** Standard value to use whatever the submission prelim. `responseMessageId` is */
|
|
@@ -14744,8 +16381,20 @@ export declare enum Constants {
|
|
|
14744
16381
|
/** Placeholder Agent ID for Ephemeral Agents */
|
|
14745
16382
|
EPHEMERAL_AGENT_ID = "ephemeral",
|
|
14746
16383
|
/** Programmatic Tool Calling tool name */
|
|
14747
|
-
PROGRAMMATIC_TOOL_CALLING = "run_tools_with_code"
|
|
16384
|
+
PROGRAMMATIC_TOOL_CALLING = "run_tools_with_code",
|
|
16385
|
+
/** Bash Programmatic Tool Calling tool name */
|
|
16386
|
+
BASH_PROGRAMMATIC_TOOL_CALLING = "run_tools_with_bash",
|
|
16387
|
+
/** Subagent spawn tool name (must match `@librechat/agents` `Constants.SUBAGENT`). */
|
|
16388
|
+
SUBAGENT = "subagent"
|
|
14748
16389
|
}
|
|
16390
|
+
/** Maximum number of explicit subagents per parent agent. UI + Zod schema share this. */
|
|
16391
|
+
export declare const MAX_SUBAGENTS = 10;
|
|
16392
|
+
/** Maximum explicit subagent hops allowed from any root agent at runtime. */
|
|
16393
|
+
export declare const MAX_SUBAGENT_DEPTH = 5;
|
|
16394
|
+
/** Maximum unique explicit subagent targets that may be loaded at runtime. */
|
|
16395
|
+
export declare const MAX_SUBAGENT_GRAPH_NODES = 50;
|
|
16396
|
+
/** Maximum expanded SubagentConfig entries embedded into one run request. */
|
|
16397
|
+
export declare const MAX_SUBAGENT_RUN_CONFIGS = 100;
|
|
14749
16398
|
export declare enum LocalStorageKeys {
|
|
14750
16399
|
/** Key for the admin defined App Title */
|
|
14751
16400
|
APP_TITLE = "appTitle",
|
|
@@ -14789,6 +16438,8 @@ export declare enum LocalStorageKeys {
|
|
|
14789
16438
|
LAST_FILE_SEARCH_TOGGLE_ = "LAST_FILE_SEARCH_TOGGLE_",
|
|
14790
16439
|
/** Last checked toggle for Artifacts per conversation ID */
|
|
14791
16440
|
LAST_ARTIFACTS_TOGGLE_ = "LAST_ARTIFACTS_TOGGLE_",
|
|
16441
|
+
/** Last checked toggle for Skills per conversation ID */
|
|
16442
|
+
LAST_SKILLS_TOGGLE_ = "LAST_SKILLS_TOGGLE_",
|
|
14792
16443
|
/** Key for the last selected agent provider */
|
|
14793
16444
|
LAST_AGENT_PROVIDER = "lastAgentProvider",
|
|
14794
16445
|
/** Key for the last selected agent model */
|