librechat-data-provider 0.8.501 → 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 +3 -1
- 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 +1636 -121
- package/dist/types/data-service.d.ts +64 -0
- package/dist/types/file-config.d.ts +16 -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 +28 -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 +424 -2
- 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 +56 -2
- 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,9 +2642,11 @@ 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;
|
|
@@ -2357,8 +2758,8 @@ export declare const summarizationConfigSchema: z.ZodObject<{
|
|
|
2357
2758
|
}, "strip", z.ZodTypeAny, {
|
|
2358
2759
|
model?: string | undefined;
|
|
2359
2760
|
prompt?: string | undefined;
|
|
2360
|
-
provider?: string | undefined;
|
|
2361
2761
|
enabled?: boolean | undefined;
|
|
2762
|
+
provider?: string | undefined;
|
|
2362
2763
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
2363
2764
|
trigger?: {
|
|
2364
2765
|
value: number;
|
|
@@ -2383,8 +2784,8 @@ export declare const summarizationConfigSchema: z.ZodObject<{
|
|
|
2383
2784
|
}, {
|
|
2384
2785
|
model?: string | undefined;
|
|
2385
2786
|
prompt?: string | undefined;
|
|
2386
|
-
provider?: string | undefined;
|
|
2387
2787
|
enabled?: boolean | undefined;
|
|
2788
|
+
provider?: string | undefined;
|
|
2388
2789
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
2389
2790
|
trigger?: {
|
|
2390
2791
|
value: number;
|
|
@@ -2793,6 +3194,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2793
3194
|
firecrawlApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2794
3195
|
firecrawlApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2795
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>>;
|
|
2796
3200
|
jinaApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2797
3201
|
jinaApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2798
3202
|
cohereApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -2896,6 +3300,71 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2896
3300
|
tag?: string | null | undefined;
|
|
2897
3301
|
} | undefined;
|
|
2898
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
|
+
}>>;
|
|
2899
3368
|
}, "strip", z.ZodTypeAny, {
|
|
2900
3369
|
serperApiKey: string;
|
|
2901
3370
|
searxngInstanceUrl: string;
|
|
@@ -2903,6 +3372,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2903
3372
|
firecrawlApiKey: string;
|
|
2904
3373
|
firecrawlApiUrl: string;
|
|
2905
3374
|
firecrawlVersion: string;
|
|
3375
|
+
tavilyApiKey: string;
|
|
3376
|
+
tavilySearchUrl: string;
|
|
3377
|
+
tavilyExtractUrl: string;
|
|
2906
3378
|
jinaApiKey: string;
|
|
2907
3379
|
jinaApiUrl: string;
|
|
2908
3380
|
cohereApiKey: string;
|
|
@@ -2938,6 +3410,29 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2938
3410
|
tag?: string | null | undefined;
|
|
2939
3411
|
} | undefined;
|
|
2940
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;
|
|
2941
3436
|
}, {
|
|
2942
3437
|
serperApiKey?: string | undefined;
|
|
2943
3438
|
searxngInstanceUrl?: string | undefined;
|
|
@@ -2945,6 +3440,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2945
3440
|
firecrawlApiKey?: string | undefined;
|
|
2946
3441
|
firecrawlApiUrl?: string | undefined;
|
|
2947
3442
|
firecrawlVersion?: string | undefined;
|
|
3443
|
+
tavilyApiKey?: string | undefined;
|
|
3444
|
+
tavilySearchUrl?: string | undefined;
|
|
3445
|
+
tavilyExtractUrl?: string | undefined;
|
|
2948
3446
|
jinaApiKey?: string | undefined;
|
|
2949
3447
|
jinaApiUrl?: string | undefined;
|
|
2950
3448
|
cohereApiKey?: string | undefined;
|
|
@@ -2980,6 +3478,29 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2980
3478
|
tag?: string | null | undefined;
|
|
2981
3479
|
} | undefined;
|
|
2982
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;
|
|
2983
3504
|
}>>;
|
|
2984
3505
|
memory: z.ZodOptional<z.ZodObject<{
|
|
2985
3506
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2989,12 +3510,16 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2989
3510
|
personalize: z.ZodDefault<z.ZodBoolean>;
|
|
2990
3511
|
messageWindowSize: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
2991
3512
|
agent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3513
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2992
3514
|
id: z.ZodString;
|
|
2993
3515
|
}, "strip", z.ZodTypeAny, {
|
|
2994
3516
|
id: string;
|
|
3517
|
+
enabled?: boolean | undefined;
|
|
2995
3518
|
}, {
|
|
2996
3519
|
id: string;
|
|
3520
|
+
enabled?: boolean | undefined;
|
|
2997
3521
|
}>, z.ZodObject<{
|
|
3522
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2998
3523
|
provider: z.ZodString;
|
|
2999
3524
|
model: z.ZodString;
|
|
3000
3525
|
instructions: z.ZodOptional<z.ZodString>;
|
|
@@ -3002,11 +3527,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3002
3527
|
}, "strip", z.ZodTypeAny, {
|
|
3003
3528
|
model: string;
|
|
3004
3529
|
provider: string;
|
|
3530
|
+
enabled?: boolean | undefined;
|
|
3005
3531
|
instructions?: string | undefined;
|
|
3006
3532
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
3007
3533
|
}, {
|
|
3008
3534
|
model: string;
|
|
3009
3535
|
provider: string;
|
|
3536
|
+
enabled?: boolean | undefined;
|
|
3010
3537
|
instructions?: string | undefined;
|
|
3011
3538
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
3012
3539
|
}>]>>;
|
|
@@ -3019,9 +3546,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3019
3546
|
tokenLimit?: number | undefined;
|
|
3020
3547
|
agent?: {
|
|
3021
3548
|
id: string;
|
|
3549
|
+
enabled?: boolean | undefined;
|
|
3022
3550
|
} | {
|
|
3023
3551
|
model: string;
|
|
3024
3552
|
provider: string;
|
|
3553
|
+
enabled?: boolean | undefined;
|
|
3025
3554
|
instructions?: string | undefined;
|
|
3026
3555
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
3027
3556
|
} | undefined;
|
|
@@ -3034,9 +3563,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3034
3563
|
messageWindowSize?: number | undefined;
|
|
3035
3564
|
agent?: {
|
|
3036
3565
|
id: string;
|
|
3566
|
+
enabled?: boolean | undefined;
|
|
3037
3567
|
} | {
|
|
3038
3568
|
model: string;
|
|
3039
3569
|
provider: string;
|
|
3570
|
+
enabled?: boolean | undefined;
|
|
3040
3571
|
instructions?: string | undefined;
|
|
3041
3572
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
3042
3573
|
} | undefined;
|
|
@@ -3100,8 +3631,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3100
3631
|
}, "strip", z.ZodTypeAny, {
|
|
3101
3632
|
model?: string | undefined;
|
|
3102
3633
|
prompt?: string | undefined;
|
|
3103
|
-
provider?: string | undefined;
|
|
3104
3634
|
enabled?: boolean | undefined;
|
|
3635
|
+
provider?: string | undefined;
|
|
3105
3636
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
3106
3637
|
trigger?: {
|
|
3107
3638
|
value: number;
|
|
@@ -3126,8 +3657,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3126
3657
|
}, {
|
|
3127
3658
|
model?: string | undefined;
|
|
3128
3659
|
prompt?: string | undefined;
|
|
3129
|
-
provider?: string | undefined;
|
|
3130
3660
|
enabled?: boolean | undefined;
|
|
3661
|
+
provider?: string | undefined;
|
|
3131
3662
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
3132
3663
|
trigger?: {
|
|
3133
3664
|
value: number;
|
|
@@ -3219,12 +3750,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3219
3750
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
3220
3751
|
}, "strip", z.ZodTypeAny, {
|
|
3221
3752
|
source: "user" | "admin";
|
|
3222
|
-
authorization_type: "
|
|
3753
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3223
3754
|
key?: string | undefined;
|
|
3224
3755
|
custom_header?: string | undefined;
|
|
3225
3756
|
}, {
|
|
3226
3757
|
source: "user" | "admin";
|
|
3227
|
-
authorization_type: "
|
|
3758
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3228
3759
|
key?: string | undefined;
|
|
3229
3760
|
custom_header?: string | undefined;
|
|
3230
3761
|
}>>;
|
|
@@ -3252,7 +3783,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3252
3783
|
description?: string | undefined;
|
|
3253
3784
|
apiKey?: {
|
|
3254
3785
|
source: "user" | "admin";
|
|
3255
|
-
authorization_type: "
|
|
3786
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3256
3787
|
key?: string | undefined;
|
|
3257
3788
|
custom_header?: string | undefined;
|
|
3258
3789
|
} | undefined;
|
|
@@ -3295,7 +3826,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3295
3826
|
description?: string | undefined;
|
|
3296
3827
|
apiKey?: {
|
|
3297
3828
|
source: "user" | "admin";
|
|
3298
|
-
authorization_type: "
|
|
3829
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3299
3830
|
key?: string | undefined;
|
|
3300
3831
|
custom_header?: string | undefined;
|
|
3301
3832
|
} | undefined;
|
|
@@ -3395,12 +3926,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3395
3926
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
3396
3927
|
}, "strip", z.ZodTypeAny, {
|
|
3397
3928
|
source: "user" | "admin";
|
|
3398
|
-
authorization_type: "
|
|
3929
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3399
3930
|
key?: string | undefined;
|
|
3400
3931
|
custom_header?: string | undefined;
|
|
3401
3932
|
}, {
|
|
3402
3933
|
source: "user" | "admin";
|
|
3403
|
-
authorization_type: "
|
|
3934
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3404
3935
|
key?: string | undefined;
|
|
3405
3936
|
custom_header?: string | undefined;
|
|
3406
3937
|
}>>;
|
|
@@ -3424,7 +3955,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3424
3955
|
description?: string | undefined;
|
|
3425
3956
|
apiKey?: {
|
|
3426
3957
|
source: "user" | "admin";
|
|
3427
|
-
authorization_type: "
|
|
3958
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3428
3959
|
key?: string | undefined;
|
|
3429
3960
|
custom_header?: string | undefined;
|
|
3430
3961
|
} | undefined;
|
|
@@ -3464,7 +3995,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3464
3995
|
description?: string | undefined;
|
|
3465
3996
|
apiKey?: {
|
|
3466
3997
|
source: "user" | "admin";
|
|
3467
|
-
authorization_type: "
|
|
3998
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3468
3999
|
key?: string | undefined;
|
|
3469
4000
|
custom_header?: string | undefined;
|
|
3470
4001
|
} | undefined;
|
|
@@ -3562,12 +4093,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3562
4093
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
3563
4094
|
}, "strip", z.ZodTypeAny, {
|
|
3564
4095
|
source: "user" | "admin";
|
|
3565
|
-
authorization_type: "
|
|
4096
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3566
4097
|
key?: string | undefined;
|
|
3567
4098
|
custom_header?: string | undefined;
|
|
3568
4099
|
}, {
|
|
3569
4100
|
source: "user" | "admin";
|
|
3570
|
-
authorization_type: "
|
|
4101
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3571
4102
|
key?: string | undefined;
|
|
3572
4103
|
custom_header?: string | undefined;
|
|
3573
4104
|
}>>;
|
|
@@ -3592,7 +4123,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3592
4123
|
description?: string | undefined;
|
|
3593
4124
|
apiKey?: {
|
|
3594
4125
|
source: "user" | "admin";
|
|
3595
|
-
authorization_type: "
|
|
4126
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3596
4127
|
key?: string | undefined;
|
|
3597
4128
|
custom_header?: string | undefined;
|
|
3598
4129
|
} | undefined;
|
|
@@ -3633,7 +4164,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3633
4164
|
description?: string | undefined;
|
|
3634
4165
|
apiKey?: {
|
|
3635
4166
|
source: "user" | "admin";
|
|
3636
|
-
authorization_type: "
|
|
4167
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3637
4168
|
key?: string | undefined;
|
|
3638
4169
|
custom_header?: string | undefined;
|
|
3639
4170
|
} | undefined;
|
|
@@ -3732,12 +4263,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3732
4263
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
3733
4264
|
}, "strip", z.ZodTypeAny, {
|
|
3734
4265
|
source: "user" | "admin";
|
|
3735
|
-
authorization_type: "
|
|
4266
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3736
4267
|
key?: string | undefined;
|
|
3737
4268
|
custom_header?: string | undefined;
|
|
3738
4269
|
}, {
|
|
3739
4270
|
source: "user" | "admin";
|
|
3740
|
-
authorization_type: "
|
|
4271
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3741
4272
|
key?: string | undefined;
|
|
3742
4273
|
custom_header?: string | undefined;
|
|
3743
4274
|
}>>;
|
|
@@ -3762,7 +4293,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3762
4293
|
description?: string | undefined;
|
|
3763
4294
|
apiKey?: {
|
|
3764
4295
|
source: "user" | "admin";
|
|
3765
|
-
authorization_type: "
|
|
4296
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3766
4297
|
key?: string | undefined;
|
|
3767
4298
|
custom_header?: string | undefined;
|
|
3768
4299
|
} | undefined;
|
|
@@ -3803,7 +4334,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3803
4334
|
description?: string | undefined;
|
|
3804
4335
|
apiKey?: {
|
|
3805
4336
|
source: "user" | "admin";
|
|
3806
|
-
authorization_type: "
|
|
4337
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
3807
4338
|
key?: string | undefined;
|
|
3808
4339
|
custom_header?: string | undefined;
|
|
3809
4340
|
} | undefined;
|
|
@@ -3840,10 +4371,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3840
4371
|
}>]>>>;
|
|
3841
4372
|
mcpSettings: z.ZodOptional<z.ZodObject<{
|
|
3842
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">>;
|
|
3843
4375
|
}, "strip", z.ZodTypeAny, {
|
|
3844
4376
|
allowedDomains?: string[] | undefined;
|
|
4377
|
+
allowedAddresses?: string[] | undefined;
|
|
3845
4378
|
}, {
|
|
3846
4379
|
allowedDomains?: string[] | undefined;
|
|
4380
|
+
allowedAddresses?: string[] | undefined;
|
|
3847
4381
|
}>>;
|
|
3848
4382
|
interface: z.ZodDefault<z.ZodObject<{
|
|
3849
4383
|
privacyPolicy: z.ZodOptional<z.ZodObject<{
|
|
@@ -3953,6 +4487,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3953
4487
|
}>]>>;
|
|
3954
4488
|
temporaryChat: z.ZodOptional<z.ZodBoolean>;
|
|
3955
4489
|
temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
|
|
4490
|
+
autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
|
|
3956
4491
|
runCode: z.ZodOptional<z.ZodBoolean>;
|
|
3957
4492
|
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
3958
4493
|
peoplePicker: z.ZodOptional<z.ZodObject<{
|
|
@@ -3993,7 +4528,33 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3993
4528
|
share?: boolean | undefined;
|
|
3994
4529
|
public?: boolean | undefined;
|
|
3995
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
|
+
}>]>>;
|
|
3996
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;
|
|
3997
4558
|
webSearch?: boolean | undefined;
|
|
3998
4559
|
parameters?: boolean | undefined;
|
|
3999
4560
|
mcpServers?: {
|
|
@@ -4038,6 +4599,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4038
4599
|
} | undefined;
|
|
4039
4600
|
temporaryChat?: boolean | undefined;
|
|
4040
4601
|
temporaryChatRetention?: number | undefined;
|
|
4602
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
4041
4603
|
runCode?: boolean | undefined;
|
|
4042
4604
|
peoplePicker?: {
|
|
4043
4605
|
users?: boolean | undefined;
|
|
@@ -4056,6 +4618,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4056
4618
|
public?: boolean | undefined;
|
|
4057
4619
|
} | undefined;
|
|
4058
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;
|
|
4059
4628
|
webSearch?: boolean | undefined;
|
|
4060
4629
|
parameters?: boolean | undefined;
|
|
4061
4630
|
mcpServers?: {
|
|
@@ -4100,6 +4669,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4100
4669
|
} | undefined;
|
|
4101
4670
|
temporaryChat?: boolean | undefined;
|
|
4102
4671
|
temporaryChatRetention?: number | undefined;
|
|
4672
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
4103
4673
|
runCode?: boolean | undefined;
|
|
4104
4674
|
peoplePicker?: {
|
|
4105
4675
|
users?: boolean | undefined;
|
|
@@ -4143,29 +4713,135 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4143
4713
|
size?: "normal" | "compact" | "flexible" | "invisible" | undefined;
|
|
4144
4714
|
} | undefined;
|
|
4145
4715
|
}>>;
|
|
4146
|
-
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]>>;
|
|
4147
4717
|
fileStrategies: z.ZodOptional<z.ZodObject<{
|
|
4148
|
-
default: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
4149
|
-
avatar: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
4150
|
-
image: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
4151
|
-
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>;
|
|
4152
4747
|
}, "strip", z.ZodTypeAny, {
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
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;
|
|
4157
4780
|
}, {
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
|
|
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;
|
|
4802
|
+
}, {
|
|
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;
|
|
4162
4835
|
}>>;
|
|
4163
4836
|
actions: z.ZodOptional<z.ZodObject<{
|
|
4164
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">>;
|
|
4165
4839
|
}, "strip", z.ZodTypeAny, {
|
|
4166
4840
|
allowedDomains?: string[] | undefined;
|
|
4841
|
+
allowedAddresses?: string[] | undefined;
|
|
4167
4842
|
}, {
|
|
4168
4843
|
allowedDomains?: string[] | undefined;
|
|
4844
|
+
allowedAddresses?: string[] | undefined;
|
|
4169
4845
|
}>>;
|
|
4170
4846
|
registration: z.ZodDefault<z.ZodObject<{
|
|
4171
4847
|
socialLogins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4796,6 +5472,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4796
5472
|
totalSizeLimit?: number | undefined;
|
|
4797
5473
|
supportedMimeTypes?: string[] | undefined;
|
|
4798
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
|
+
}>>;
|
|
4799
5482
|
serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4800
5483
|
avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4801
5484
|
fileTokenLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4843,6 +5526,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4843
5526
|
text?: {
|
|
4844
5527
|
supportedMimeTypes?: string[] | undefined;
|
|
4845
5528
|
} | undefined;
|
|
5529
|
+
skills?: {
|
|
5530
|
+
fileSizeLimit?: number | undefined;
|
|
5531
|
+
} | undefined;
|
|
4846
5532
|
ocr?: {
|
|
4847
5533
|
supportedMimeTypes?: string[] | undefined;
|
|
4848
5534
|
} | undefined;
|
|
@@ -4870,6 +5556,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4870
5556
|
text?: {
|
|
4871
5557
|
supportedMimeTypes?: string[] | undefined;
|
|
4872
5558
|
} | undefined;
|
|
5559
|
+
skills?: {
|
|
5560
|
+
fileSizeLimit?: number | undefined;
|
|
5561
|
+
} | undefined;
|
|
4873
5562
|
ocr?: {
|
|
4874
5563
|
supportedMimeTypes?: string[] | undefined;
|
|
4875
5564
|
} | undefined;
|
|
@@ -4897,7 +5586,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4897
5586
|
modelSpecs: z.ZodOptional<z.ZodObject<{
|
|
4898
5587
|
enforce: z.ZodDefault<z.ZodBoolean>;
|
|
4899
5588
|
prioritize: z.ZodDefault<z.ZodBoolean>;
|
|
4900
|
-
list: z.ZodArray<z.ZodObject<{
|
|
5589
|
+
list: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4901
5590
|
name: z.ZodString;
|
|
4902
5591
|
label: z.ZodString;
|
|
4903
5592
|
preset: z.ZodObject<Omit<{
|
|
@@ -5097,8 +5786,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5097
5786
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
5098
5787
|
order: z.ZodOptional<z.ZodNumber>;
|
|
5099
5788
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
5100
|
-
}, "conversationId" | "title" | "
|
|
5789
|
+
}, "conversationId" | "title" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
|
|
5101
5790
|
endpoint: string | null;
|
|
5791
|
+
iconURL?: string | null | undefined;
|
|
5792
|
+
greeting?: string | undefined;
|
|
5102
5793
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5103
5794
|
tools?: string[] | {
|
|
5104
5795
|
name: string;
|
|
@@ -5191,6 +5882,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5191
5882
|
stop?: string[] | undefined;
|
|
5192
5883
|
}, {
|
|
5193
5884
|
endpoint: string | null;
|
|
5885
|
+
iconURL?: string | null | undefined;
|
|
5886
|
+
greeting?: string | undefined;
|
|
5194
5887
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5195
5888
|
tools?: string[] | {
|
|
5196
5889
|
name: string;
|
|
@@ -5301,6 +5994,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5301
5994
|
name: string;
|
|
5302
5995
|
preset: {
|
|
5303
5996
|
endpoint: string | null;
|
|
5997
|
+
iconURL?: string | null | undefined;
|
|
5998
|
+
greeting?: string | undefined;
|
|
5304
5999
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5305
6000
|
tools?: string[] | {
|
|
5306
6001
|
name: string;
|
|
@@ -5411,6 +6106,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5411
6106
|
name: string;
|
|
5412
6107
|
preset: {
|
|
5413
6108
|
endpoint: string | null;
|
|
6109
|
+
iconURL?: string | null | undefined;
|
|
6110
|
+
greeting?: string | undefined;
|
|
5414
6111
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5415
6112
|
tools?: string[] | {
|
|
5416
6113
|
name: string;
|
|
@@ -5516,7 +6213,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5516
6213
|
showIconInHeader?: boolean | undefined;
|
|
5517
6214
|
authType?: import("./schemas").AuthType | undefined;
|
|
5518
6215
|
executeCode?: boolean | undefined;
|
|
5519
|
-
}>, "many"
|
|
6216
|
+
}>, "many">>;
|
|
5520
6217
|
addedEndpoints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
5521
6218
|
}, "strip", z.ZodTypeAny, {
|
|
5522
6219
|
enforce: boolean;
|
|
@@ -5526,6 +6223,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5526
6223
|
name: string;
|
|
5527
6224
|
preset: {
|
|
5528
6225
|
endpoint: string | null;
|
|
6226
|
+
iconURL?: string | null | undefined;
|
|
6227
|
+
greeting?: string | undefined;
|
|
5529
6228
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5530
6229
|
tools?: string[] | {
|
|
5531
6230
|
name: string;
|
|
@@ -5634,11 +6333,15 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5634
6333
|
}[];
|
|
5635
6334
|
addedEndpoints?: string[] | undefined;
|
|
5636
6335
|
}, {
|
|
5637
|
-
|
|
6336
|
+
enforce?: boolean | undefined;
|
|
6337
|
+
prioritize?: boolean | undefined;
|
|
6338
|
+
list?: {
|
|
5638
6339
|
label: string;
|
|
5639
6340
|
name: string;
|
|
5640
6341
|
preset: {
|
|
5641
6342
|
endpoint: string | null;
|
|
6343
|
+
iconURL?: string | null | undefined;
|
|
6344
|
+
greeting?: string | undefined;
|
|
5642
6345
|
endpointType?: EModelEndpoint | null | undefined;
|
|
5643
6346
|
tools?: string[] | {
|
|
5644
6347
|
name: string;
|
|
@@ -5744,12 +6447,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5744
6447
|
showIconInHeader?: boolean | undefined;
|
|
5745
6448
|
authType?: import("./schemas").AuthType | undefined;
|
|
5746
6449
|
executeCode?: boolean | undefined;
|
|
5747
|
-
}[];
|
|
5748
|
-
enforce?: boolean | undefined;
|
|
5749
|
-
prioritize?: boolean | undefined;
|
|
6450
|
+
}[] | undefined;
|
|
5750
6451
|
addedEndpoints?: string[] | undefined;
|
|
5751
6452
|
}>>;
|
|
5752
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">>;
|
|
5753
6455
|
all: z.ZodOptional<z.ZodObject<Omit<{
|
|
5754
6456
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
5755
6457
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -6310,6 +7012,96 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6310
7012
|
minRelevanceScore: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
6311
7013
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
6312
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
|
+
}>>;
|
|
6313
7105
|
}, "strip", z.ZodTypeAny, {
|
|
6314
7106
|
disableBuilder: boolean;
|
|
6315
7107
|
capabilities: AgentCapabilities[];
|
|
@@ -6327,6 +7119,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6327
7119
|
recursionLimit?: number | undefined;
|
|
6328
7120
|
maxRecursionLimit?: number | undefined;
|
|
6329
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;
|
|
6330
7136
|
}, {
|
|
6331
7137
|
streamRate?: number | undefined;
|
|
6332
7138
|
titlePrompt?: string | undefined;
|
|
@@ -6344,6 +7150,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6344
7150
|
maxCitationsPerFile?: number | undefined;
|
|
6345
7151
|
minRelevanceScore?: number | undefined;
|
|
6346
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;
|
|
6347
7167
|
}>>>;
|
|
6348
7168
|
custom: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6349
7169
|
streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -6747,6 +7567,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6747
7567
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
6748
7568
|
}>>;
|
|
6749
7569
|
}, "strict", z.ZodTypeAny, {
|
|
7570
|
+
allowedAddresses?: string[] | undefined;
|
|
6750
7571
|
azureOpenAI?: ({
|
|
6751
7572
|
groups: ({
|
|
6752
7573
|
group: string;
|
|
@@ -6897,6 +7718,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6897
7718
|
recursionLimit?: number | undefined;
|
|
6898
7719
|
maxRecursionLimit?: number | undefined;
|
|
6899
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;
|
|
6900
7735
|
} | undefined;
|
|
6901
7736
|
custom?: {
|
|
6902
7737
|
iconURL?: string | undefined;
|
|
@@ -6988,6 +7823,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6988
7823
|
maxToolResultChars?: number | undefined;
|
|
6989
7824
|
} | undefined;
|
|
6990
7825
|
}, {
|
|
7826
|
+
allowedAddresses?: string[] | undefined;
|
|
6991
7827
|
azureOpenAI?: ({
|
|
6992
7828
|
groups: ({
|
|
6993
7829
|
group: string;
|
|
@@ -7138,6 +7974,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7138
7974
|
maxCitationsPerFile?: number | undefined;
|
|
7139
7975
|
minRelevanceScore?: number | undefined;
|
|
7140
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;
|
|
7141
7991
|
} | undefined;
|
|
7142
7992
|
custom?: {
|
|
7143
7993
|
iconURL?: string | undefined;
|
|
@@ -7229,6 +8079,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7229
8079
|
maxToolResultChars?: number | undefined;
|
|
7230
8080
|
} | undefined;
|
|
7231
8081
|
}>, {
|
|
8082
|
+
allowedAddresses?: string[] | undefined;
|
|
7232
8083
|
azureOpenAI?: ({
|
|
7233
8084
|
groups: ({
|
|
7234
8085
|
group: string;
|
|
@@ -7379,6 +8230,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7379
8230
|
recursionLimit?: number | undefined;
|
|
7380
8231
|
maxRecursionLimit?: number | undefined;
|
|
7381
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;
|
|
7382
8247
|
} | undefined;
|
|
7383
8248
|
custom?: {
|
|
7384
8249
|
iconURL?: string | undefined;
|
|
@@ -7470,6 +8335,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7470
8335
|
maxToolResultChars?: number | undefined;
|
|
7471
8336
|
} | undefined;
|
|
7472
8337
|
}, {
|
|
8338
|
+
allowedAddresses?: string[] | undefined;
|
|
7473
8339
|
azureOpenAI?: ({
|
|
7474
8340
|
groups: ({
|
|
7475
8341
|
group: string;
|
|
@@ -7620,6 +8486,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7620
8486
|
maxCitationsPerFile?: number | undefined;
|
|
7621
8487
|
minRelevanceScore?: number | undefined;
|
|
7622
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;
|
|
7623
8503
|
} | undefined;
|
|
7624
8504
|
custom?: {
|
|
7625
8505
|
iconURL?: string | undefined;
|
|
@@ -7716,6 +8596,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7716
8596
|
cache: boolean;
|
|
7717
8597
|
imageOutputType: EImageOutputType;
|
|
7718
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;
|
|
7719
8606
|
webSearch?: boolean | undefined;
|
|
7720
8607
|
parameters?: boolean | undefined;
|
|
7721
8608
|
mcpServers?: {
|
|
@@ -7760,6 +8647,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7760
8647
|
} | undefined;
|
|
7761
8648
|
temporaryChat?: boolean | undefined;
|
|
7762
8649
|
temporaryChatRetention?: number | undefined;
|
|
8650
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
7763
8651
|
runCode?: boolean | undefined;
|
|
7764
8652
|
peoplePicker?: {
|
|
7765
8653
|
users?: boolean | undefined;
|
|
@@ -7778,11 +8666,23 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7778
8666
|
public?: boolean | undefined;
|
|
7779
8667
|
} | undefined;
|
|
7780
8668
|
};
|
|
7781
|
-
fileStrategy: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3;
|
|
8669
|
+
fileStrategy: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront;
|
|
7782
8670
|
registration: {
|
|
7783
8671
|
allowedDomains?: string[] | undefined;
|
|
7784
8672
|
socialLogins?: string[] | undefined;
|
|
7785
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;
|
|
7786
8686
|
ocr?: {
|
|
7787
8687
|
apiKey: string;
|
|
7788
8688
|
baseURL: string;
|
|
@@ -7796,6 +8696,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7796
8696
|
firecrawlApiKey: string;
|
|
7797
8697
|
firecrawlApiUrl: string;
|
|
7798
8698
|
firecrawlVersion: string;
|
|
8699
|
+
tavilyApiKey: string;
|
|
8700
|
+
tavilySearchUrl: string;
|
|
8701
|
+
tavilyExtractUrl: string;
|
|
7799
8702
|
jinaApiKey: string;
|
|
7800
8703
|
jinaApiUrl: string;
|
|
7801
8704
|
cohereApiKey: string;
|
|
@@ -7831,6 +8734,29 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7831
8734
|
tag?: string | null | undefined;
|
|
7832
8735
|
} | undefined;
|
|
7833
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;
|
|
7834
8760
|
} | undefined;
|
|
7835
8761
|
memory?: {
|
|
7836
8762
|
charLimit: number;
|
|
@@ -7841,9 +8767,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7841
8767
|
tokenLimit?: number | undefined;
|
|
7842
8768
|
agent?: {
|
|
7843
8769
|
id: string;
|
|
8770
|
+
enabled?: boolean | undefined;
|
|
7844
8771
|
} | {
|
|
7845
8772
|
model: string;
|
|
7846
8773
|
provider: string;
|
|
8774
|
+
enabled?: boolean | undefined;
|
|
7847
8775
|
instructions?: string | undefined;
|
|
7848
8776
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
7849
8777
|
} | undefined;
|
|
@@ -7851,8 +8779,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7851
8779
|
summarization?: {
|
|
7852
8780
|
model?: string | undefined;
|
|
7853
8781
|
prompt?: string | undefined;
|
|
7854
|
-
provider?: string | undefined;
|
|
7855
8782
|
enabled?: boolean | undefined;
|
|
8783
|
+
provider?: string | undefined;
|
|
7856
8784
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
7857
8785
|
trigger?: {
|
|
7858
8786
|
value: number;
|
|
@@ -7886,7 +8814,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7886
8814
|
description?: string | undefined;
|
|
7887
8815
|
apiKey?: {
|
|
7888
8816
|
source: "user" | "admin";
|
|
7889
|
-
authorization_type: "
|
|
8817
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
7890
8818
|
key?: string | undefined;
|
|
7891
8819
|
custom_header?: string | undefined;
|
|
7892
8820
|
} | undefined;
|
|
@@ -7928,7 +8856,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7928
8856
|
description?: string | undefined;
|
|
7929
8857
|
apiKey?: {
|
|
7930
8858
|
source: "user" | "admin";
|
|
7931
|
-
authorization_type: "
|
|
8859
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
7932
8860
|
key?: string | undefined;
|
|
7933
8861
|
custom_header?: string | undefined;
|
|
7934
8862
|
} | undefined;
|
|
@@ -7968,7 +8896,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7968
8896
|
description?: string | undefined;
|
|
7969
8897
|
apiKey?: {
|
|
7970
8898
|
source: "user" | "admin";
|
|
7971
|
-
authorization_type: "
|
|
8899
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
7972
8900
|
key?: string | undefined;
|
|
7973
8901
|
custom_header?: string | undefined;
|
|
7974
8902
|
} | undefined;
|
|
@@ -8009,7 +8937,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8009
8937
|
description?: string | undefined;
|
|
8010
8938
|
apiKey?: {
|
|
8011
8939
|
source: "user" | "admin";
|
|
8012
|
-
authorization_type: "
|
|
8940
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
8013
8941
|
key?: string | undefined;
|
|
8014
8942
|
custom_header?: string | undefined;
|
|
8015
8943
|
} | undefined;
|
|
@@ -8046,6 +8974,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8046
8974
|
}> | undefined;
|
|
8047
8975
|
mcpSettings?: {
|
|
8048
8976
|
allowedDomains?: string[] | undefined;
|
|
8977
|
+
allowedAddresses?: string[] | undefined;
|
|
8049
8978
|
} | undefined;
|
|
8050
8979
|
turnstile?: {
|
|
8051
8980
|
siteKey: string;
|
|
@@ -8055,13 +8984,15 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8055
8984
|
} | undefined;
|
|
8056
8985
|
} | undefined;
|
|
8057
8986
|
fileStrategies?: {
|
|
8058
|
-
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
8059
|
-
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
8060
|
-
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
8061
|
-
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;
|
|
8062
8992
|
} | undefined;
|
|
8063
8993
|
actions?: {
|
|
8064
8994
|
allowedDomains?: string[] | undefined;
|
|
8995
|
+
allowedAddresses?: string[] | undefined;
|
|
8065
8996
|
} | undefined;
|
|
8066
8997
|
balance?: {
|
|
8067
8998
|
enabled: boolean;
|
|
@@ -8171,6 +9102,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8171
9102
|
} | undefined;
|
|
8172
9103
|
} | undefined;
|
|
8173
9104
|
endpoints?: {
|
|
9105
|
+
allowedAddresses?: string[] | undefined;
|
|
8174
9106
|
azureOpenAI?: ({
|
|
8175
9107
|
groups: ({
|
|
8176
9108
|
group: string;
|
|
@@ -8321,6 +9253,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8321
9253
|
recursionLimit?: number | undefined;
|
|
8322
9254
|
maxRecursionLimit?: number | undefined;
|
|
8323
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;
|
|
8324
9270
|
} | undefined;
|
|
8325
9271
|
custom?: {
|
|
8326
9272
|
iconURL?: string | undefined;
|
|
@@ -8416,6 +9362,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8416
9362
|
text?: {
|
|
8417
9363
|
supportedMimeTypes?: string[] | undefined;
|
|
8418
9364
|
} | undefined;
|
|
9365
|
+
skills?: {
|
|
9366
|
+
fileSizeLimit?: number | undefined;
|
|
9367
|
+
} | undefined;
|
|
8419
9368
|
ocr?: {
|
|
8420
9369
|
supportedMimeTypes?: string[] | undefined;
|
|
8421
9370
|
} | undefined;
|
|
@@ -8448,6 +9397,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8448
9397
|
name: string;
|
|
8449
9398
|
preset: {
|
|
8450
9399
|
endpoint: string | null;
|
|
9400
|
+
iconURL?: string | null | undefined;
|
|
9401
|
+
greeting?: string | undefined;
|
|
8451
9402
|
endpointType?: EModelEndpoint | null | undefined;
|
|
8452
9403
|
tools?: string[] | {
|
|
8453
9404
|
name: string;
|
|
@@ -8558,6 +9509,18 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8558
9509
|
} | undefined;
|
|
8559
9510
|
}, {
|
|
8560
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;
|
|
8561
9524
|
cache?: boolean | undefined;
|
|
8562
9525
|
ocr?: {
|
|
8563
9526
|
mistralModel?: string | undefined;
|
|
@@ -8572,6 +9535,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8572
9535
|
firecrawlApiKey?: string | undefined;
|
|
8573
9536
|
firecrawlApiUrl?: string | undefined;
|
|
8574
9537
|
firecrawlVersion?: string | undefined;
|
|
9538
|
+
tavilyApiKey?: string | undefined;
|
|
9539
|
+
tavilySearchUrl?: string | undefined;
|
|
9540
|
+
tavilyExtractUrl?: string | undefined;
|
|
8575
9541
|
jinaApiKey?: string | undefined;
|
|
8576
9542
|
jinaApiUrl?: string | undefined;
|
|
8577
9543
|
cohereApiKey?: string | undefined;
|
|
@@ -8607,6 +9573,29 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8607
9573
|
tag?: string | null | undefined;
|
|
8608
9574
|
} | undefined;
|
|
8609
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;
|
|
8610
9599
|
} | undefined;
|
|
8611
9600
|
memory?: {
|
|
8612
9601
|
disabled?: boolean | undefined;
|
|
@@ -8617,9 +9606,11 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8617
9606
|
messageWindowSize?: number | undefined;
|
|
8618
9607
|
agent?: {
|
|
8619
9608
|
id: string;
|
|
9609
|
+
enabled?: boolean | undefined;
|
|
8620
9610
|
} | {
|
|
8621
9611
|
model: string;
|
|
8622
9612
|
provider: string;
|
|
9613
|
+
enabled?: boolean | undefined;
|
|
8623
9614
|
instructions?: string | undefined;
|
|
8624
9615
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
8625
9616
|
} | undefined;
|
|
@@ -8627,8 +9618,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8627
9618
|
summarization?: {
|
|
8628
9619
|
model?: string | undefined;
|
|
8629
9620
|
prompt?: string | undefined;
|
|
8630
|
-
provider?: string | undefined;
|
|
8631
9621
|
enabled?: boolean | undefined;
|
|
9622
|
+
provider?: string | undefined;
|
|
8632
9623
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
8633
9624
|
trigger?: {
|
|
8634
9625
|
value: number;
|
|
@@ -8663,7 +9654,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8663
9654
|
description?: string | undefined;
|
|
8664
9655
|
apiKey?: {
|
|
8665
9656
|
source: "user" | "admin";
|
|
8666
|
-
authorization_type: "
|
|
9657
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
8667
9658
|
key?: string | undefined;
|
|
8668
9659
|
custom_header?: string | undefined;
|
|
8669
9660
|
} | undefined;
|
|
@@ -8705,7 +9696,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8705
9696
|
description?: string | undefined;
|
|
8706
9697
|
apiKey?: {
|
|
8707
9698
|
source: "user" | "admin";
|
|
8708
|
-
authorization_type: "
|
|
9699
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
8709
9700
|
key?: string | undefined;
|
|
8710
9701
|
custom_header?: string | undefined;
|
|
8711
9702
|
} | undefined;
|
|
@@ -8745,7 +9736,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8745
9736
|
description?: string | undefined;
|
|
8746
9737
|
apiKey?: {
|
|
8747
9738
|
source: "user" | "admin";
|
|
8748
|
-
authorization_type: "
|
|
9739
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
8749
9740
|
key?: string | undefined;
|
|
8750
9741
|
custom_header?: string | undefined;
|
|
8751
9742
|
} | undefined;
|
|
@@ -8786,7 +9777,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8786
9777
|
description?: string | undefined;
|
|
8787
9778
|
apiKey?: {
|
|
8788
9779
|
source: "user" | "admin";
|
|
8789
|
-
authorization_type: "
|
|
9780
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
8790
9781
|
key?: string | undefined;
|
|
8791
9782
|
custom_header?: string | undefined;
|
|
8792
9783
|
} | undefined;
|
|
@@ -8823,8 +9814,16 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8823
9814
|
}> | undefined;
|
|
8824
9815
|
mcpSettings?: {
|
|
8825
9816
|
allowedDomains?: string[] | undefined;
|
|
9817
|
+
allowedAddresses?: string[] | undefined;
|
|
8826
9818
|
} | undefined;
|
|
8827
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;
|
|
8828
9827
|
webSearch?: boolean | undefined;
|
|
8829
9828
|
parameters?: boolean | undefined;
|
|
8830
9829
|
mcpServers?: {
|
|
@@ -8869,6 +9868,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8869
9868
|
} | undefined;
|
|
8870
9869
|
temporaryChat?: boolean | undefined;
|
|
8871
9870
|
temporaryChatRetention?: number | undefined;
|
|
9871
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
8872
9872
|
runCode?: boolean | undefined;
|
|
8873
9873
|
peoplePicker?: {
|
|
8874
9874
|
users?: boolean | undefined;
|
|
@@ -8894,15 +9894,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8894
9894
|
size?: "normal" | "compact" | "flexible" | "invisible" | undefined;
|
|
8895
9895
|
} | undefined;
|
|
8896
9896
|
} | undefined;
|
|
8897
|
-
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;
|
|
8898
9898
|
fileStrategies?: {
|
|
8899
|
-
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
8900
|
-
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
8901
|
-
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
8902
|
-
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;
|
|
8903
9904
|
} | undefined;
|
|
8904
9905
|
actions?: {
|
|
8905
9906
|
allowedDomains?: string[] | undefined;
|
|
9907
|
+
allowedAddresses?: string[] | undefined;
|
|
8906
9908
|
} | undefined;
|
|
8907
9909
|
registration?: {
|
|
8908
9910
|
allowedDomains?: string[] | undefined;
|
|
@@ -9016,6 +10018,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9016
10018
|
} | undefined;
|
|
9017
10019
|
} | undefined;
|
|
9018
10020
|
endpoints?: {
|
|
10021
|
+
allowedAddresses?: string[] | undefined;
|
|
9019
10022
|
azureOpenAI?: ({
|
|
9020
10023
|
groups: ({
|
|
9021
10024
|
group: string;
|
|
@@ -9166,6 +10169,20 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9166
10169
|
maxCitationsPerFile?: number | undefined;
|
|
9167
10170
|
minRelevanceScore?: number | undefined;
|
|
9168
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;
|
|
9169
10186
|
} | undefined;
|
|
9170
10187
|
custom?: {
|
|
9171
10188
|
iconURL?: string | undefined;
|
|
@@ -9261,6 +10278,9 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9261
10278
|
text?: {
|
|
9262
10279
|
supportedMimeTypes?: string[] | undefined;
|
|
9263
10280
|
} | undefined;
|
|
10281
|
+
skills?: {
|
|
10282
|
+
fileSizeLimit?: number | undefined;
|
|
10283
|
+
} | undefined;
|
|
9264
10284
|
ocr?: {
|
|
9265
10285
|
supportedMimeTypes?: string[] | undefined;
|
|
9266
10286
|
} | undefined;
|
|
@@ -9286,11 +10306,15 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9286
10306
|
} | undefined;
|
|
9287
10307
|
} | undefined;
|
|
9288
10308
|
modelSpecs?: {
|
|
9289
|
-
|
|
10309
|
+
enforce?: boolean | undefined;
|
|
10310
|
+
prioritize?: boolean | undefined;
|
|
10311
|
+
list?: {
|
|
9290
10312
|
label: string;
|
|
9291
10313
|
name: string;
|
|
9292
10314
|
preset: {
|
|
9293
10315
|
endpoint: string | null;
|
|
10316
|
+
iconURL?: string | null | undefined;
|
|
10317
|
+
greeting?: string | undefined;
|
|
9294
10318
|
endpointType?: EModelEndpoint | null | undefined;
|
|
9295
10319
|
tools?: string[] | {
|
|
9296
10320
|
name: string;
|
|
@@ -9396,9 +10420,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9396
10420
|
showIconInHeader?: boolean | undefined;
|
|
9397
10421
|
authType?: import("./schemas").AuthType | undefined;
|
|
9398
10422
|
executeCode?: boolean | undefined;
|
|
9399
|
-
}[];
|
|
9400
|
-
enforce?: boolean | undefined;
|
|
9401
|
-
prioritize?: boolean | undefined;
|
|
10423
|
+
}[] | undefined;
|
|
9402
10424
|
addedEndpoints?: string[] | undefined;
|
|
9403
10425
|
} | undefined;
|
|
9404
10426
|
}>;
|
|
@@ -9435,6 +10457,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9435
10457
|
firecrawlApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9436
10458
|
firecrawlApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9437
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>>;
|
|
9438
10463
|
jinaApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9439
10464
|
jinaApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9440
10465
|
cohereApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -9538,6 +10563,71 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9538
10563
|
tag?: string | null | undefined;
|
|
9539
10564
|
} | undefined;
|
|
9540
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
|
+
}>>;
|
|
9541
10631
|
}, "strip", z.ZodTypeAny, {
|
|
9542
10632
|
serperApiKey: string;
|
|
9543
10633
|
searxngInstanceUrl: string;
|
|
@@ -9545,6 +10635,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9545
10635
|
firecrawlApiKey: string;
|
|
9546
10636
|
firecrawlApiUrl: string;
|
|
9547
10637
|
firecrawlVersion: string;
|
|
10638
|
+
tavilyApiKey: string;
|
|
10639
|
+
tavilySearchUrl: string;
|
|
10640
|
+
tavilyExtractUrl: string;
|
|
9548
10641
|
jinaApiKey: string;
|
|
9549
10642
|
jinaApiUrl: string;
|
|
9550
10643
|
cohereApiKey: string;
|
|
@@ -9580,6 +10673,29 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9580
10673
|
tag?: string | null | undefined;
|
|
9581
10674
|
} | undefined;
|
|
9582
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;
|
|
9583
10699
|
}, {
|
|
9584
10700
|
serperApiKey?: string | undefined;
|
|
9585
10701
|
searxngInstanceUrl?: string | undefined;
|
|
@@ -9587,6 +10703,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9587
10703
|
firecrawlApiKey?: string | undefined;
|
|
9588
10704
|
firecrawlApiUrl?: string | undefined;
|
|
9589
10705
|
firecrawlVersion?: string | undefined;
|
|
10706
|
+
tavilyApiKey?: string | undefined;
|
|
10707
|
+
tavilySearchUrl?: string | undefined;
|
|
10708
|
+
tavilyExtractUrl?: string | undefined;
|
|
9590
10709
|
jinaApiKey?: string | undefined;
|
|
9591
10710
|
jinaApiUrl?: string | undefined;
|
|
9592
10711
|
cohereApiKey?: string | undefined;
|
|
@@ -9622,6 +10741,29 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9622
10741
|
tag?: string | null | undefined;
|
|
9623
10742
|
} | undefined;
|
|
9624
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;
|
|
9625
10767
|
}>>;
|
|
9626
10768
|
memory: z.ZodOptional<z.ZodObject<{
|
|
9627
10769
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9631,12 +10773,16 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9631
10773
|
personalize: z.ZodDefault<z.ZodBoolean>;
|
|
9632
10774
|
messageWindowSize: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
9633
10775
|
agent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10776
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
9634
10777
|
id: z.ZodString;
|
|
9635
10778
|
}, "strip", z.ZodTypeAny, {
|
|
9636
10779
|
id: string;
|
|
10780
|
+
enabled?: boolean | undefined;
|
|
9637
10781
|
}, {
|
|
9638
10782
|
id: string;
|
|
10783
|
+
enabled?: boolean | undefined;
|
|
9639
10784
|
}>, z.ZodObject<{
|
|
10785
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
9640
10786
|
provider: z.ZodString;
|
|
9641
10787
|
model: z.ZodString;
|
|
9642
10788
|
instructions: z.ZodOptional<z.ZodString>;
|
|
@@ -9644,11 +10790,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9644
10790
|
}, "strip", z.ZodTypeAny, {
|
|
9645
10791
|
model: string;
|
|
9646
10792
|
provider: string;
|
|
10793
|
+
enabled?: boolean | undefined;
|
|
9647
10794
|
instructions?: string | undefined;
|
|
9648
10795
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9649
10796
|
}, {
|
|
9650
10797
|
model: string;
|
|
9651
10798
|
provider: string;
|
|
10799
|
+
enabled?: boolean | undefined;
|
|
9652
10800
|
instructions?: string | undefined;
|
|
9653
10801
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9654
10802
|
}>]>>;
|
|
@@ -9661,9 +10809,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9661
10809
|
tokenLimit?: number | undefined;
|
|
9662
10810
|
agent?: {
|
|
9663
10811
|
id: string;
|
|
10812
|
+
enabled?: boolean | undefined;
|
|
9664
10813
|
} | {
|
|
9665
10814
|
model: string;
|
|
9666
10815
|
provider: string;
|
|
10816
|
+
enabled?: boolean | undefined;
|
|
9667
10817
|
instructions?: string | undefined;
|
|
9668
10818
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9669
10819
|
} | undefined;
|
|
@@ -9676,9 +10826,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9676
10826
|
messageWindowSize?: number | undefined;
|
|
9677
10827
|
agent?: {
|
|
9678
10828
|
id: string;
|
|
10829
|
+
enabled?: boolean | undefined;
|
|
9679
10830
|
} | {
|
|
9680
10831
|
model: string;
|
|
9681
10832
|
provider: string;
|
|
10833
|
+
enabled?: boolean | undefined;
|
|
9682
10834
|
instructions?: string | undefined;
|
|
9683
10835
|
model_parameters?: Record<string, string | number | boolean> | undefined;
|
|
9684
10836
|
} | undefined;
|
|
@@ -9742,8 +10894,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9742
10894
|
}, "strip", z.ZodTypeAny, {
|
|
9743
10895
|
model?: string | undefined;
|
|
9744
10896
|
prompt?: string | undefined;
|
|
9745
|
-
provider?: string | undefined;
|
|
9746
10897
|
enabled?: boolean | undefined;
|
|
10898
|
+
provider?: string | undefined;
|
|
9747
10899
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
9748
10900
|
trigger?: {
|
|
9749
10901
|
value: number;
|
|
@@ -9768,8 +10920,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9768
10920
|
}, {
|
|
9769
10921
|
model?: string | undefined;
|
|
9770
10922
|
prompt?: string | undefined;
|
|
9771
|
-
provider?: string | undefined;
|
|
9772
10923
|
enabled?: boolean | undefined;
|
|
10924
|
+
provider?: string | undefined;
|
|
9773
10925
|
parameters?: Record<string, string | number | boolean | null> | undefined;
|
|
9774
10926
|
trigger?: {
|
|
9775
10927
|
value: number;
|
|
@@ -9861,12 +11013,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9861
11013
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
9862
11014
|
}, "strip", z.ZodTypeAny, {
|
|
9863
11015
|
source: "user" | "admin";
|
|
9864
|
-
authorization_type: "
|
|
11016
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9865
11017
|
key?: string | undefined;
|
|
9866
11018
|
custom_header?: string | undefined;
|
|
9867
11019
|
}, {
|
|
9868
11020
|
source: "user" | "admin";
|
|
9869
|
-
authorization_type: "
|
|
11021
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9870
11022
|
key?: string | undefined;
|
|
9871
11023
|
custom_header?: string | undefined;
|
|
9872
11024
|
}>>;
|
|
@@ -9894,7 +11046,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9894
11046
|
description?: string | undefined;
|
|
9895
11047
|
apiKey?: {
|
|
9896
11048
|
source: "user" | "admin";
|
|
9897
|
-
authorization_type: "
|
|
11049
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9898
11050
|
key?: string | undefined;
|
|
9899
11051
|
custom_header?: string | undefined;
|
|
9900
11052
|
} | undefined;
|
|
@@ -9937,7 +11089,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
9937
11089
|
description?: string | undefined;
|
|
9938
11090
|
apiKey?: {
|
|
9939
11091
|
source: "user" | "admin";
|
|
9940
|
-
authorization_type: "
|
|
11092
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
9941
11093
|
key?: string | undefined;
|
|
9942
11094
|
custom_header?: string | undefined;
|
|
9943
11095
|
} | undefined;
|
|
@@ -10037,12 +11189,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10037
11189
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
10038
11190
|
}, "strip", z.ZodTypeAny, {
|
|
10039
11191
|
source: "user" | "admin";
|
|
10040
|
-
authorization_type: "
|
|
11192
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10041
11193
|
key?: string | undefined;
|
|
10042
11194
|
custom_header?: string | undefined;
|
|
10043
11195
|
}, {
|
|
10044
11196
|
source: "user" | "admin";
|
|
10045
|
-
authorization_type: "
|
|
11197
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10046
11198
|
key?: string | undefined;
|
|
10047
11199
|
custom_header?: string | undefined;
|
|
10048
11200
|
}>>;
|
|
@@ -10066,7 +11218,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10066
11218
|
description?: string | undefined;
|
|
10067
11219
|
apiKey?: {
|
|
10068
11220
|
source: "user" | "admin";
|
|
10069
|
-
authorization_type: "
|
|
11221
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10070
11222
|
key?: string | undefined;
|
|
10071
11223
|
custom_header?: string | undefined;
|
|
10072
11224
|
} | undefined;
|
|
@@ -10106,7 +11258,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10106
11258
|
description?: string | undefined;
|
|
10107
11259
|
apiKey?: {
|
|
10108
11260
|
source: "user" | "admin";
|
|
10109
|
-
authorization_type: "
|
|
11261
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10110
11262
|
key?: string | undefined;
|
|
10111
11263
|
custom_header?: string | undefined;
|
|
10112
11264
|
} | undefined;
|
|
@@ -10204,12 +11356,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10204
11356
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
10205
11357
|
}, "strip", z.ZodTypeAny, {
|
|
10206
11358
|
source: "user" | "admin";
|
|
10207
|
-
authorization_type: "
|
|
11359
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10208
11360
|
key?: string | undefined;
|
|
10209
11361
|
custom_header?: string | undefined;
|
|
10210
11362
|
}, {
|
|
10211
11363
|
source: "user" | "admin";
|
|
10212
|
-
authorization_type: "
|
|
11364
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10213
11365
|
key?: string | undefined;
|
|
10214
11366
|
custom_header?: string | undefined;
|
|
10215
11367
|
}>>;
|
|
@@ -10234,7 +11386,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10234
11386
|
description?: string | undefined;
|
|
10235
11387
|
apiKey?: {
|
|
10236
11388
|
source: "user" | "admin";
|
|
10237
|
-
authorization_type: "
|
|
11389
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10238
11390
|
key?: string | undefined;
|
|
10239
11391
|
custom_header?: string | undefined;
|
|
10240
11392
|
} | undefined;
|
|
@@ -10275,7 +11427,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10275
11427
|
description?: string | undefined;
|
|
10276
11428
|
apiKey?: {
|
|
10277
11429
|
source: "user" | "admin";
|
|
10278
|
-
authorization_type: "
|
|
11430
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10279
11431
|
key?: string | undefined;
|
|
10280
11432
|
custom_header?: string | undefined;
|
|
10281
11433
|
} | undefined;
|
|
@@ -10374,12 +11526,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10374
11526
|
custom_header: z.ZodOptional<z.ZodString>;
|
|
10375
11527
|
}, "strip", z.ZodTypeAny, {
|
|
10376
11528
|
source: "user" | "admin";
|
|
10377
|
-
authorization_type: "
|
|
11529
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10378
11530
|
key?: string | undefined;
|
|
10379
11531
|
custom_header?: string | undefined;
|
|
10380
11532
|
}, {
|
|
10381
11533
|
source: "user" | "admin";
|
|
10382
|
-
authorization_type: "
|
|
11534
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10383
11535
|
key?: string | undefined;
|
|
10384
11536
|
custom_header?: string | undefined;
|
|
10385
11537
|
}>>;
|
|
@@ -10404,7 +11556,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10404
11556
|
description?: string | undefined;
|
|
10405
11557
|
apiKey?: {
|
|
10406
11558
|
source: "user" | "admin";
|
|
10407
|
-
authorization_type: "
|
|
11559
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10408
11560
|
key?: string | undefined;
|
|
10409
11561
|
custom_header?: string | undefined;
|
|
10410
11562
|
} | undefined;
|
|
@@ -10445,7 +11597,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10445
11597
|
description?: string | undefined;
|
|
10446
11598
|
apiKey?: {
|
|
10447
11599
|
source: "user" | "admin";
|
|
10448
|
-
authorization_type: "
|
|
11600
|
+
authorization_type: "basic" | "custom" | "bearer";
|
|
10449
11601
|
key?: string | undefined;
|
|
10450
11602
|
custom_header?: string | undefined;
|
|
10451
11603
|
} | undefined;
|
|
@@ -10482,10 +11634,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10482
11634
|
}>]>>>;
|
|
10483
11635
|
mcpSettings: z.ZodOptional<z.ZodObject<{
|
|
10484
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">>;
|
|
10485
11638
|
}, "strip", z.ZodTypeAny, {
|
|
10486
11639
|
allowedDomains?: string[] | undefined;
|
|
11640
|
+
allowedAddresses?: string[] | undefined;
|
|
10487
11641
|
}, {
|
|
10488
11642
|
allowedDomains?: string[] | undefined;
|
|
11643
|
+
allowedAddresses?: string[] | undefined;
|
|
10489
11644
|
}>>;
|
|
10490
11645
|
interface: z.ZodDefault<z.ZodObject<{
|
|
10491
11646
|
privacyPolicy: z.ZodOptional<z.ZodObject<{
|
|
@@ -10595,6 +11750,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10595
11750
|
}>]>>;
|
|
10596
11751
|
temporaryChat: z.ZodOptional<z.ZodBoolean>;
|
|
10597
11752
|
temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
|
|
11753
|
+
autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
|
|
10598
11754
|
runCode: z.ZodOptional<z.ZodBoolean>;
|
|
10599
11755
|
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
10600
11756
|
peoplePicker: z.ZodOptional<z.ZodObject<{
|
|
@@ -10635,7 +11791,33 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10635
11791
|
share?: boolean | undefined;
|
|
10636
11792
|
public?: boolean | undefined;
|
|
10637
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
|
+
}>]>>;
|
|
10638
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;
|
|
10639
11821
|
webSearch?: boolean | undefined;
|
|
10640
11822
|
parameters?: boolean | undefined;
|
|
10641
11823
|
mcpServers?: {
|
|
@@ -10680,6 +11862,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10680
11862
|
} | undefined;
|
|
10681
11863
|
temporaryChat?: boolean | undefined;
|
|
10682
11864
|
temporaryChatRetention?: number | undefined;
|
|
11865
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
10683
11866
|
runCode?: boolean | undefined;
|
|
10684
11867
|
peoplePicker?: {
|
|
10685
11868
|
users?: boolean | undefined;
|
|
@@ -10698,6 +11881,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10698
11881
|
public?: boolean | undefined;
|
|
10699
11882
|
} | undefined;
|
|
10700
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;
|
|
10701
11891
|
webSearch?: boolean | undefined;
|
|
10702
11892
|
parameters?: boolean | undefined;
|
|
10703
11893
|
mcpServers?: {
|
|
@@ -10742,6 +11932,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10742
11932
|
} | undefined;
|
|
10743
11933
|
temporaryChat?: boolean | undefined;
|
|
10744
11934
|
temporaryChatRetention?: number | undefined;
|
|
11935
|
+
autoSubmitFromUrl?: boolean | undefined;
|
|
10745
11936
|
runCode?: boolean | undefined;
|
|
10746
11937
|
peoplePicker?: {
|
|
10747
11938
|
users?: boolean | undefined;
|
|
@@ -10785,29 +11976,135 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10785
11976
|
size?: "normal" | "compact" | "flexible" | "invisible" | undefined;
|
|
10786
11977
|
} | undefined;
|
|
10787
11978
|
}>>;
|
|
10788
|
-
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]>>;
|
|
10789
11980
|
fileStrategies: z.ZodOptional<z.ZodObject<{
|
|
10790
|
-
default: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
10791
|
-
avatar: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
10792
|
-
image: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
|
|
10793
|
-
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]>>;
|
|
10794
11986
|
}, "strip", z.ZodTypeAny, {
|
|
10795
|
-
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10796
|
-
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10797
|
-
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10798
|
-
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;
|
|
10799
11992
|
}, {
|
|
10800
|
-
default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10801
|
-
avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10802
|
-
image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
|
|
10803
|
-
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;
|
|
10804
12098
|
}>>;
|
|
10805
12099
|
actions: z.ZodOptional<z.ZodObject<{
|
|
10806
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">>;
|
|
10807
12102
|
}, "strip", z.ZodTypeAny, {
|
|
10808
12103
|
allowedDomains?: string[] | undefined;
|
|
12104
|
+
allowedAddresses?: string[] | undefined;
|
|
10809
12105
|
}, {
|
|
10810
12106
|
allowedDomains?: string[] | undefined;
|
|
12107
|
+
allowedAddresses?: string[] | undefined;
|
|
10811
12108
|
}>>;
|
|
10812
12109
|
registration: z.ZodDefault<z.ZodObject<{
|
|
10813
12110
|
socialLogins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -11438,6 +12735,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11438
12735
|
totalSizeLimit?: number | undefined;
|
|
11439
12736
|
supportedMimeTypes?: string[] | undefined;
|
|
11440
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
|
+
}>>;
|
|
11441
12745
|
serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
11442
12746
|
avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
|
|
11443
12747
|
fileTokenLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11485,6 +12789,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11485
12789
|
text?: {
|
|
11486
12790
|
supportedMimeTypes?: string[] | undefined;
|
|
11487
12791
|
} | undefined;
|
|
12792
|
+
skills?: {
|
|
12793
|
+
fileSizeLimit?: number | undefined;
|
|
12794
|
+
} | undefined;
|
|
11488
12795
|
ocr?: {
|
|
11489
12796
|
supportedMimeTypes?: string[] | undefined;
|
|
11490
12797
|
} | undefined;
|
|
@@ -11512,6 +12819,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11512
12819
|
text?: {
|
|
11513
12820
|
supportedMimeTypes?: string[] | undefined;
|
|
11514
12821
|
} | undefined;
|
|
12822
|
+
skills?: {
|
|
12823
|
+
fileSizeLimit?: number | undefined;
|
|
12824
|
+
} | undefined;
|
|
11515
12825
|
ocr?: {
|
|
11516
12826
|
supportedMimeTypes?: string[] | undefined;
|
|
11517
12827
|
} | undefined;
|
|
@@ -11539,7 +12849,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11539
12849
|
modelSpecs: z.ZodOptional<z.ZodObject<{
|
|
11540
12850
|
enforce: z.ZodDefault<z.ZodBoolean>;
|
|
11541
12851
|
prioritize: z.ZodDefault<z.ZodBoolean>;
|
|
11542
|
-
list: z.ZodArray<z.ZodObject<{
|
|
12852
|
+
list: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
11543
12853
|
name: z.ZodString;
|
|
11544
12854
|
label: z.ZodString;
|
|
11545
12855
|
preset: z.ZodObject<Omit<{
|
|
@@ -11739,8 +13049,10 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11739
13049
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
11740
13050
|
order: z.ZodOptional<z.ZodNumber>;
|
|
11741
13051
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
11742
|
-
}, "conversationId" | "title" | "
|
|
13052
|
+
}, "conversationId" | "title" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
|
|
11743
13053
|
endpoint: string | null;
|
|
13054
|
+
iconURL?: string | null | undefined;
|
|
13055
|
+
greeting?: string | undefined;
|
|
11744
13056
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11745
13057
|
tools?: string[] | {
|
|
11746
13058
|
name: string;
|
|
@@ -11833,6 +13145,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11833
13145
|
stop?: string[] | undefined;
|
|
11834
13146
|
}, {
|
|
11835
13147
|
endpoint: string | null;
|
|
13148
|
+
iconURL?: string | null | undefined;
|
|
13149
|
+
greeting?: string | undefined;
|
|
11836
13150
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11837
13151
|
tools?: string[] | {
|
|
11838
13152
|
name: string;
|
|
@@ -11943,6 +13257,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11943
13257
|
name: string;
|
|
11944
13258
|
preset: {
|
|
11945
13259
|
endpoint: string | null;
|
|
13260
|
+
iconURL?: string | null | undefined;
|
|
13261
|
+
greeting?: string | undefined;
|
|
11946
13262
|
endpointType?: EModelEndpoint | null | undefined;
|
|
11947
13263
|
tools?: string[] | {
|
|
11948
13264
|
name: string;
|
|
@@ -12053,6 +13369,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12053
13369
|
name: string;
|
|
12054
13370
|
preset: {
|
|
12055
13371
|
endpoint: string | null;
|
|
13372
|
+
iconURL?: string | null | undefined;
|
|
13373
|
+
greeting?: string | undefined;
|
|
12056
13374
|
endpointType?: EModelEndpoint | null | undefined;
|
|
12057
13375
|
tools?: string[] | {
|
|
12058
13376
|
name: string;
|
|
@@ -12158,7 +13476,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12158
13476
|
showIconInHeader?: boolean | undefined;
|
|
12159
13477
|
authType?: import("./schemas").AuthType | undefined;
|
|
12160
13478
|
executeCode?: boolean | undefined;
|
|
12161
|
-
}>, "many"
|
|
13479
|
+
}>, "many">>;
|
|
12162
13480
|
addedEndpoints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
12163
13481
|
}, "strip", z.ZodTypeAny, {
|
|
12164
13482
|
enforce: boolean;
|
|
@@ -12168,6 +13486,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12168
13486
|
name: string;
|
|
12169
13487
|
preset: {
|
|
12170
13488
|
endpoint: string | null;
|
|
13489
|
+
iconURL?: string | null | undefined;
|
|
13490
|
+
greeting?: string | undefined;
|
|
12171
13491
|
endpointType?: EModelEndpoint | null | undefined;
|
|
12172
13492
|
tools?: string[] | {
|
|
12173
13493
|
name: string;
|
|
@@ -12276,11 +13596,15 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12276
13596
|
}[];
|
|
12277
13597
|
addedEndpoints?: string[] | undefined;
|
|
12278
13598
|
}, {
|
|
12279
|
-
|
|
13599
|
+
enforce?: boolean | undefined;
|
|
13600
|
+
prioritize?: boolean | undefined;
|
|
13601
|
+
list?: {
|
|
12280
13602
|
label: string;
|
|
12281
13603
|
name: string;
|
|
12282
13604
|
preset: {
|
|
12283
13605
|
endpoint: string | null;
|
|
13606
|
+
iconURL?: string | null | undefined;
|
|
13607
|
+
greeting?: string | undefined;
|
|
12284
13608
|
endpointType?: EModelEndpoint | null | undefined;
|
|
12285
13609
|
tools?: string[] | {
|
|
12286
13610
|
name: string;
|
|
@@ -12386,12 +13710,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12386
13710
|
showIconInHeader?: boolean | undefined;
|
|
12387
13711
|
authType?: import("./schemas").AuthType | undefined;
|
|
12388
13712
|
executeCode?: boolean | undefined;
|
|
12389
|
-
}[];
|
|
12390
|
-
enforce?: boolean | undefined;
|
|
12391
|
-
prioritize?: boolean | undefined;
|
|
13713
|
+
}[] | undefined;
|
|
12392
13714
|
addedEndpoints?: string[] | undefined;
|
|
12393
13715
|
}>>;
|
|
12394
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">>;
|
|
12395
13718
|
all: z.ZodOptional<z.ZodObject<Omit<{
|
|
12396
13719
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
12397
13720
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -12952,6 +14275,96 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12952
14275
|
minRelevanceScore: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
12953
14276
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
12954
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
|
+
}>>;
|
|
12955
14368
|
}, "strip", z.ZodTypeAny, {
|
|
12956
14369
|
disableBuilder: boolean;
|
|
12957
14370
|
capabilities: AgentCapabilities[];
|
|
@@ -12969,6 +14382,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12969
14382
|
recursionLimit?: number | undefined;
|
|
12970
14383
|
maxRecursionLimit?: number | undefined;
|
|
12971
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;
|
|
12972
14399
|
}, {
|
|
12973
14400
|
streamRate?: number | undefined;
|
|
12974
14401
|
titlePrompt?: string | undefined;
|
|
@@ -12986,6 +14413,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12986
14413
|
maxCitationsPerFile?: number | undefined;
|
|
12987
14414
|
minRelevanceScore?: number | undefined;
|
|
12988
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;
|
|
12989
14430
|
}>>>;
|
|
12990
14431
|
custom: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12991
14432
|
streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -13389,6 +14830,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13389
14830
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
13390
14831
|
}>>;
|
|
13391
14832
|
}, "strict", z.ZodTypeAny, {
|
|
14833
|
+
allowedAddresses?: string[] | undefined;
|
|
13392
14834
|
azureOpenAI?: ({
|
|
13393
14835
|
groups: ({
|
|
13394
14836
|
group: string;
|
|
@@ -13539,6 +14981,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13539
14981
|
recursionLimit?: number | undefined;
|
|
13540
14982
|
maxRecursionLimit?: number | undefined;
|
|
13541
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;
|
|
13542
14998
|
} | undefined;
|
|
13543
14999
|
custom?: {
|
|
13544
15000
|
iconURL?: string | undefined;
|
|
@@ -13630,6 +15086,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13630
15086
|
maxToolResultChars?: number | undefined;
|
|
13631
15087
|
} | undefined;
|
|
13632
15088
|
}, {
|
|
15089
|
+
allowedAddresses?: string[] | undefined;
|
|
13633
15090
|
azureOpenAI?: ({
|
|
13634
15091
|
groups: ({
|
|
13635
15092
|
group: string;
|
|
@@ -13780,6 +15237,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13780
15237
|
maxCitationsPerFile?: number | undefined;
|
|
13781
15238
|
minRelevanceScore?: number | undefined;
|
|
13782
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;
|
|
13783
15254
|
} | undefined;
|
|
13784
15255
|
custom?: {
|
|
13785
15256
|
iconURL?: string | undefined;
|
|
@@ -13871,6 +15342,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13871
15342
|
maxToolResultChars?: number | undefined;
|
|
13872
15343
|
} | undefined;
|
|
13873
15344
|
}>, {
|
|
15345
|
+
allowedAddresses?: string[] | undefined;
|
|
13874
15346
|
azureOpenAI?: ({
|
|
13875
15347
|
groups: ({
|
|
13876
15348
|
group: string;
|
|
@@ -14021,6 +15493,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14021
15493
|
recursionLimit?: number | undefined;
|
|
14022
15494
|
maxRecursionLimit?: number | undefined;
|
|
14023
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;
|
|
14024
15510
|
} | undefined;
|
|
14025
15511
|
custom?: {
|
|
14026
15512
|
iconURL?: string | undefined;
|
|
@@ -14112,6 +15598,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14112
15598
|
maxToolResultChars?: number | undefined;
|
|
14113
15599
|
} | undefined;
|
|
14114
15600
|
}, {
|
|
15601
|
+
allowedAddresses?: string[] | undefined;
|
|
14115
15602
|
azureOpenAI?: ({
|
|
14116
15603
|
groups: ({
|
|
14117
15604
|
group: string;
|
|
@@ -14262,6 +15749,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14262
15749
|
maxCitationsPerFile?: number | undefined;
|
|
14263
15750
|
minRelevanceScore?: number | undefined;
|
|
14264
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;
|
|
14265
15766
|
} | undefined;
|
|
14266
15767
|
custom?: {
|
|
14267
15768
|
iconURL?: string | undefined;
|
|
@@ -14831,9 +16332,9 @@ export declare enum TTSProviders {
|
|
|
14831
16332
|
/** Enum for app-wide constants */
|
|
14832
16333
|
export declare enum Constants {
|
|
14833
16334
|
/** Key for the app's version. */
|
|
14834
|
-
VERSION = "v0.8.
|
|
16335
|
+
VERSION = "v0.8.6-rc1",
|
|
14835
16336
|
/** Key for the Custom Config's version (librechat.yaml). */
|
|
14836
|
-
CONFIG_VERSION = "1.3.
|
|
16337
|
+
CONFIG_VERSION = "1.3.11",
|
|
14837
16338
|
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */
|
|
14838
16339
|
NO_PARENT = "00000000-0000-0000-0000-000000000000",
|
|
14839
16340
|
/** Standard value to use whatever the submission prelim. `responseMessageId` is */
|
|
@@ -14880,8 +16381,20 @@ export declare enum Constants {
|
|
|
14880
16381
|
/** Placeholder Agent ID for Ephemeral Agents */
|
|
14881
16382
|
EPHEMERAL_AGENT_ID = "ephemeral",
|
|
14882
16383
|
/** Programmatic Tool Calling tool name */
|
|
14883
|
-
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"
|
|
14884
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;
|
|
14885
16398
|
export declare enum LocalStorageKeys {
|
|
14886
16399
|
/** Key for the admin defined App Title */
|
|
14887
16400
|
APP_TITLE = "appTitle",
|
|
@@ -14925,6 +16438,8 @@ export declare enum LocalStorageKeys {
|
|
|
14925
16438
|
LAST_FILE_SEARCH_TOGGLE_ = "LAST_FILE_SEARCH_TOGGLE_",
|
|
14926
16439
|
/** Last checked toggle for Artifacts per conversation ID */
|
|
14927
16440
|
LAST_ARTIFACTS_TOGGLE_ = "LAST_ARTIFACTS_TOGGLE_",
|
|
16441
|
+
/** Last checked toggle for Skills per conversation ID */
|
|
16442
|
+
LAST_SKILLS_TOGGLE_ = "LAST_SKILLS_TOGGLE_",
|
|
14928
16443
|
/** Key for the last selected agent provider */
|
|
14929
16444
|
LAST_AGENT_PROVIDER = "lastAgentProvider",
|
|
14930
16445
|
/** Key for the last selected agent model */
|