librechat-data-provider 0.8.501 → 0.8.503

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.
Files changed (38) hide show
  1. package/dist/index.es.js +1 -1
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.js +1 -1
  4. package/dist/index.js.map +1 -1
  5. package/dist/react-query/index.es.js +1 -1
  6. package/dist/react-query/index.es.js.map +1 -1
  7. package/dist/types/accessPermissions.d.ts +6 -2
  8. package/dist/types/api-endpoints.d.ts +20 -1
  9. package/dist/types/balance.d.ts +3 -0
  10. package/dist/types/balance.spec.d.ts +1 -0
  11. package/dist/types/bedrock.d.ts +9 -1
  12. package/dist/types/cloudfront-config.spec.d.ts +1 -0
  13. package/dist/types/codeEnvRef.d.ts +62 -0
  14. package/dist/types/codeEnvRef.spec.d.ts +1 -0
  15. package/dist/types/config.d.ts +2278 -131
  16. package/dist/types/data-service.d.ts +69 -2
  17. package/dist/types/file-config.d.ts +16 -0
  18. package/dist/types/generate.d.ts +2 -0
  19. package/dist/types/headers-helpers.d.ts +1 -0
  20. package/dist/types/index.d.ts +3 -0
  21. package/dist/types/keys.d.ts +16 -2
  22. package/dist/types/mcp.d.ts +1304 -58
  23. package/dist/types/models.d.ts +50 -8
  24. package/dist/types/parameterSettings.d.ts +6 -0
  25. package/dist/types/parameterSettings.spec.d.ts +1 -0
  26. package/dist/types/parsers.d.ts +2 -1
  27. package/dist/types/permissions.d.ts +50 -1
  28. package/dist/types/roles.d.ts +52 -0
  29. package/dist/types/schemas.d.ts +477 -14
  30. package/dist/types/types/assistants.d.ts +25 -3
  31. package/dist/types/types/files.d.ts +71 -0
  32. package/dist/types/types/mutations.d.ts +46 -0
  33. package/dist/types/types/queries.d.ts +2 -0
  34. package/dist/types/types/runs.d.ts +20 -1
  35. package/dist/types/types/skills.d.ts +275 -0
  36. package/dist/types/types/web.d.ts +14 -1
  37. package/dist/types/types.d.ts +65 -5
  38. package/package.json +2 -2
@@ -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 fileStorageSchema: z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>;
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"
@@ -294,6 +401,22 @@ export declare const baseEndpointSchema: z.ZodObject<{
294
401
  maxToolResultChars?: number | undefined;
295
402
  }>;
296
403
  export type TBaseEndpoint = z.infer<typeof baseEndpointSchema>;
404
+ export declare const bedrockGuardrailConfigSchema: z.ZodObject<{
405
+ guardrailIdentifier: z.ZodString;
406
+ guardrailVersion: z.ZodString;
407
+ trace: z.ZodOptional<z.ZodEnum<["enabled", "disabled", "enabled_full"]>>;
408
+ streamProcessingMode: z.ZodOptional<z.ZodEnum<["sync", "async"]>>;
409
+ }, "strip", z.ZodTypeAny, {
410
+ guardrailIdentifier: string;
411
+ guardrailVersion: string;
412
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
413
+ streamProcessingMode?: "async" | "sync" | undefined;
414
+ }, {
415
+ guardrailIdentifier: string;
416
+ guardrailVersion: string;
417
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
418
+ streamProcessingMode?: "async" | "sync" | undefined;
419
+ }>;
297
420
  export declare const bedrockEndpointSchema: z.ZodObject<{
298
421
  streamRate: z.ZodOptional<z.ZodNumber>;
299
422
  baseURL: z.ZodOptional<z.ZodString>;
@@ -308,6 +431,22 @@ export declare const bedrockEndpointSchema: z.ZodObject<{
308
431
  } & {
309
432
  availableRegions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
310
433
  models: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
434
+ guardrailConfig: z.ZodOptional<z.ZodObject<{
435
+ guardrailIdentifier: z.ZodString;
436
+ guardrailVersion: z.ZodString;
437
+ trace: z.ZodOptional<z.ZodEnum<["enabled", "disabled", "enabled_full"]>>;
438
+ streamProcessingMode: z.ZodOptional<z.ZodEnum<["sync", "async"]>>;
439
+ }, "strip", z.ZodTypeAny, {
440
+ guardrailIdentifier: string;
441
+ guardrailVersion: string;
442
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
443
+ streamProcessingMode?: "async" | "sync" | undefined;
444
+ }, {
445
+ guardrailIdentifier: string;
446
+ guardrailVersion: string;
447
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
448
+ streamProcessingMode?: "async" | "sync" | undefined;
449
+ }>>;
311
450
  inferenceProfiles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
312
451
  }, "strip", z.ZodTypeAny, {
313
452
  baseURL?: string | undefined;
@@ -321,6 +460,12 @@ export declare const bedrockEndpointSchema: z.ZodObject<{
321
460
  maxToolResultChars?: number | undefined;
322
461
  models?: string[] | undefined;
323
462
  availableRegions?: string[] | undefined;
463
+ guardrailConfig?: {
464
+ guardrailIdentifier: string;
465
+ guardrailVersion: string;
466
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
467
+ streamProcessingMode?: "async" | "sync" | undefined;
468
+ } | undefined;
324
469
  inferenceProfiles?: Record<string, string> | undefined;
325
470
  }, {
326
471
  baseURL?: string | undefined;
@@ -334,6 +479,12 @@ export declare const bedrockEndpointSchema: z.ZodObject<{
334
479
  maxToolResultChars?: number | undefined;
335
480
  models?: string[] | undefined;
336
481
  availableRegions?: string[] | undefined;
482
+ guardrailConfig?: {
483
+ guardrailIdentifier: string;
484
+ guardrailVersion: string;
485
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
486
+ streamProcessingMode?: "async" | "sync" | undefined;
487
+ } | undefined;
337
488
  inferenceProfiles?: Record<string, string> | undefined;
338
489
  }>;
339
490
  export declare const assistantEndpointSchema: z.ZodObject<{
@@ -448,6 +599,7 @@ export declare const assistantEndpointSchema: z.ZodObject<{
448
599
  }>;
449
600
  export type TAssistantEndpoint = z.infer<typeof assistantEndpointSchema>;
450
601
  export declare const defaultAgentCapabilities: AgentCapabilities[];
602
+ export declare function isRemoteOidcUrlAllowed(value: string): boolean;
451
603
  export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
452
604
  streamRate: z.ZodOptional<z.ZodNumber>;
453
605
  baseURL: z.ZodOptional<z.ZodString>;
@@ -468,6 +620,96 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
468
620
  minRelevanceScore: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
469
621
  allowedProviders: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
470
622
  capabilities: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof AgentCapabilities>, "many">>>;
623
+ remoteApi: z.ZodOptional<z.ZodObject<{
624
+ auth: z.ZodOptional<z.ZodObject<{
625
+ apiKey: z.ZodOptional<z.ZodObject<{
626
+ enabled: z.ZodDefault<z.ZodBoolean>;
627
+ }, "strip", z.ZodTypeAny, {
628
+ enabled: boolean;
629
+ }, {
630
+ enabled?: boolean | undefined;
631
+ }>>;
632
+ oidc: z.ZodOptional<z.ZodEffects<z.ZodObject<{
633
+ enabled: z.ZodDefault<z.ZodBoolean>;
634
+ issuer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
635
+ audience: z.ZodOptional<z.ZodString>;
636
+ jwksUri: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
637
+ scope: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
638
+ }, "strip", z.ZodTypeAny, {
639
+ enabled: boolean;
640
+ scope?: string | undefined;
641
+ audience?: string | undefined;
642
+ issuer?: string | undefined;
643
+ jwksUri?: string | undefined;
644
+ }, {
645
+ enabled?: boolean | undefined;
646
+ scope?: string | undefined;
647
+ audience?: string | undefined;
648
+ issuer?: string | undefined;
649
+ jwksUri?: string | undefined;
650
+ }>, {
651
+ enabled: boolean;
652
+ scope?: string | undefined;
653
+ audience?: string | undefined;
654
+ issuer?: string | undefined;
655
+ jwksUri?: string | undefined;
656
+ }, {
657
+ enabled?: boolean | undefined;
658
+ scope?: string | undefined;
659
+ audience?: string | undefined;
660
+ issuer?: string | undefined;
661
+ jwksUri?: string | undefined;
662
+ }>>;
663
+ }, "strip", z.ZodTypeAny, {
664
+ apiKey?: {
665
+ enabled: boolean;
666
+ } | undefined;
667
+ oidc?: {
668
+ enabled: boolean;
669
+ scope?: string | undefined;
670
+ audience?: string | undefined;
671
+ issuer?: string | undefined;
672
+ jwksUri?: string | undefined;
673
+ } | undefined;
674
+ }, {
675
+ apiKey?: {
676
+ enabled?: boolean | undefined;
677
+ } | undefined;
678
+ oidc?: {
679
+ enabled?: boolean | undefined;
680
+ scope?: string | undefined;
681
+ audience?: string | undefined;
682
+ issuer?: string | undefined;
683
+ jwksUri?: string | undefined;
684
+ } | undefined;
685
+ }>>;
686
+ }, "strip", z.ZodTypeAny, {
687
+ auth?: {
688
+ apiKey?: {
689
+ enabled: boolean;
690
+ } | undefined;
691
+ oidc?: {
692
+ enabled: boolean;
693
+ scope?: string | undefined;
694
+ audience?: string | undefined;
695
+ issuer?: string | undefined;
696
+ jwksUri?: string | undefined;
697
+ } | undefined;
698
+ } | undefined;
699
+ }, {
700
+ auth?: {
701
+ apiKey?: {
702
+ enabled?: boolean | undefined;
703
+ } | undefined;
704
+ oidc?: {
705
+ enabled?: boolean | undefined;
706
+ scope?: string | undefined;
707
+ audience?: string | undefined;
708
+ issuer?: string | undefined;
709
+ jwksUri?: string | undefined;
710
+ } | undefined;
711
+ } | undefined;
712
+ }>>;
471
713
  }, "strip", z.ZodTypeAny, {
472
714
  disableBuilder: boolean;
473
715
  capabilities: AgentCapabilities[];
@@ -485,6 +727,20 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
485
727
  recursionLimit?: number | undefined;
486
728
  maxRecursionLimit?: number | undefined;
487
729
  allowedProviders?: string[] | undefined;
730
+ remoteApi?: {
731
+ auth?: {
732
+ apiKey?: {
733
+ enabled: boolean;
734
+ } | undefined;
735
+ oidc?: {
736
+ enabled: boolean;
737
+ scope?: string | undefined;
738
+ audience?: string | undefined;
739
+ issuer?: string | undefined;
740
+ jwksUri?: string | undefined;
741
+ } | undefined;
742
+ } | undefined;
743
+ } | undefined;
488
744
  }, {
489
745
  streamRate?: number | undefined;
490
746
  titlePrompt?: string | undefined;
@@ -502,6 +758,20 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
502
758
  maxCitationsPerFile?: number | undefined;
503
759
  minRelevanceScore?: number | undefined;
504
760
  allowedProviders?: string[] | undefined;
761
+ remoteApi?: {
762
+ auth?: {
763
+ apiKey?: {
764
+ enabled?: boolean | undefined;
765
+ } | undefined;
766
+ oidc?: {
767
+ enabled?: boolean | undefined;
768
+ scope?: string | undefined;
769
+ audience?: string | undefined;
770
+ issuer?: string | undefined;
771
+ jwksUri?: string | undefined;
772
+ } | undefined;
773
+ } | undefined;
774
+ } | undefined;
505
775
  }>>;
506
776
  export type TAgentsEndpoint = z.infer<typeof agentsEndpointSchema>;
507
777
  export declare const paramDefinitionSchema: z.ZodObject<{
@@ -1541,6 +1811,10 @@ declare const mcpServersSchema: z.ZodOptional<z.ZodObject<{
1541
1811
  } | undefined;
1542
1812
  }>>;
1543
1813
  export type TMcpServersConfig = z.infer<typeof mcpServersSchema>;
1814
+ export declare enum RetentionMode {
1815
+ ALL = "all",
1816
+ TEMPORARY = "temporary"
1817
+ }
1544
1818
  export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
1545
1819
  privacyPolicy: z.ZodOptional<z.ZodObject<{
1546
1820
  externalUrl: z.ZodOptional<z.ZodString>;
@@ -1649,6 +1923,8 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
1649
1923
  }>]>>;
1650
1924
  temporaryChat: z.ZodOptional<z.ZodBoolean>;
1651
1925
  temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
1926
+ autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
1927
+ retentionMode: z.ZodDefault<z.ZodNativeEnum<typeof RetentionMode>>;
1652
1928
  runCode: z.ZodOptional<z.ZodBoolean>;
1653
1929
  webSearch: z.ZodOptional<z.ZodBoolean>;
1654
1930
  peoplePicker: z.ZodOptional<z.ZodObject<{
@@ -1673,6 +1949,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
1673
1949
  }>>;
1674
1950
  fileSearch: z.ZodOptional<z.ZodBoolean>;
1675
1951
  fileCitations: z.ZodOptional<z.ZodBoolean>;
1952
+ buildInfo: z.ZodOptional<z.ZodBoolean>;
1676
1953
  remoteAgents: z.ZodOptional<z.ZodObject<{
1677
1954
  use: z.ZodOptional<z.ZodBoolean>;
1678
1955
  create: z.ZodOptional<z.ZodBoolean>;
@@ -1689,7 +1966,34 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
1689
1966
  share?: boolean | undefined;
1690
1967
  public?: boolean | undefined;
1691
1968
  }>>;
1969
+ skills: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
1970
+ use: z.ZodOptional<z.ZodBoolean>;
1971
+ create: z.ZodOptional<z.ZodBoolean>;
1972
+ share: z.ZodOptional<z.ZodBoolean>;
1973
+ public: z.ZodOptional<z.ZodBoolean>;
1974
+ defaultActiveOnShare: z.ZodOptional<z.ZodBoolean>;
1975
+ }, "strip", z.ZodTypeAny, {
1976
+ use?: boolean | undefined;
1977
+ create?: boolean | undefined;
1978
+ share?: boolean | undefined;
1979
+ public?: boolean | undefined;
1980
+ defaultActiveOnShare?: boolean | undefined;
1981
+ }, {
1982
+ use?: boolean | undefined;
1983
+ create?: boolean | undefined;
1984
+ share?: boolean | undefined;
1985
+ public?: boolean | undefined;
1986
+ defaultActiveOnShare?: boolean | undefined;
1987
+ }>]>>;
1692
1988
  }, "strip", z.ZodTypeAny, {
1989
+ retentionMode: RetentionMode;
1990
+ skills?: boolean | {
1991
+ use?: boolean | undefined;
1992
+ create?: boolean | undefined;
1993
+ share?: boolean | undefined;
1994
+ public?: boolean | undefined;
1995
+ defaultActiveOnShare?: boolean | undefined;
1996
+ } | undefined;
1693
1997
  webSearch?: boolean | undefined;
1694
1998
  parameters?: boolean | undefined;
1695
1999
  mcpServers?: {
@@ -1734,6 +2038,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
1734
2038
  } | undefined;
1735
2039
  temporaryChat?: boolean | undefined;
1736
2040
  temporaryChatRetention?: number | undefined;
2041
+ autoSubmitFromUrl?: boolean | undefined;
1737
2042
  runCode?: boolean | undefined;
1738
2043
  peoplePicker?: {
1739
2044
  users?: boolean | undefined;
@@ -1745,6 +2050,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
1745
2050
  } | undefined;
1746
2051
  fileSearch?: boolean | undefined;
1747
2052
  fileCitations?: boolean | undefined;
2053
+ buildInfo?: boolean | undefined;
1748
2054
  remoteAgents?: {
1749
2055
  use?: boolean | undefined;
1750
2056
  create?: boolean | undefined;
@@ -1752,6 +2058,13 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
1752
2058
  public?: boolean | undefined;
1753
2059
  } | undefined;
1754
2060
  }, {
2061
+ skills?: boolean | {
2062
+ use?: boolean | undefined;
2063
+ create?: boolean | undefined;
2064
+ share?: boolean | undefined;
2065
+ public?: boolean | undefined;
2066
+ defaultActiveOnShare?: boolean | undefined;
2067
+ } | undefined;
1755
2068
  webSearch?: boolean | undefined;
1756
2069
  parameters?: boolean | undefined;
1757
2070
  mcpServers?: {
@@ -1796,6 +2109,8 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
1796
2109
  } | undefined;
1797
2110
  temporaryChat?: boolean | undefined;
1798
2111
  temporaryChatRetention?: number | undefined;
2112
+ autoSubmitFromUrl?: boolean | undefined;
2113
+ retentionMode?: RetentionMode | undefined;
1799
2114
  runCode?: boolean | undefined;
1800
2115
  peoplePicker?: {
1801
2116
  users?: boolean | undefined;
@@ -1807,6 +2122,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
1807
2122
  } | undefined;
1808
2123
  fileSearch?: boolean | undefined;
1809
2124
  fileCitations?: boolean | undefined;
2125
+ buildInfo?: boolean | undefined;
1810
2126
  remoteAgents?: {
1811
2127
  use?: boolean | undefined;
1812
2128
  create?: boolean | undefined;
@@ -1853,6 +2169,21 @@ export declare const turnstileSchema: z.ZodObject<{
1853
2169
  } | undefined;
1854
2170
  }>;
1855
2171
  export type TTurnstileConfig = z.infer<typeof turnstileSchema>;
2172
+ export type TRumConfig = {
2173
+ provider: 'hyperdx';
2174
+ enabled: boolean;
2175
+ url: string;
2176
+ serviceName: string;
2177
+ authMode: 'publicToken';
2178
+ publicToken?: string;
2179
+ tracePropagationTargets?: string[];
2180
+ consoleCapture?: boolean;
2181
+ disableReplay?: boolean;
2182
+ advancedNetworkCapture?: boolean;
2183
+ sampleRate?: number;
2184
+ environment?: string;
2185
+ };
2186
+ export type StartupConfigContext = 'share';
1856
2187
  export type TStartupConfig = {
1857
2188
  appTitle: string;
1858
2189
  socialLogins?: string[];
@@ -1893,6 +2224,7 @@ export type TStartupConfig = {
1893
2224
  sharedLinksEnabled: boolean;
1894
2225
  publicSharedLinksEnabled: boolean;
1895
2226
  analyticsGtmId?: string;
2227
+ rum?: TRumConfig;
1896
2228
  bundlerURL?: string;
1897
2229
  staticBundlerURL?: string;
1898
2230
  sharePointFilePickerEnabled?: boolean;
@@ -1907,6 +2239,12 @@ export type TStartupConfig = {
1907
2239
  scraperProvider?: ScraperProviders;
1908
2240
  rerankerType?: RerankerTypes;
1909
2241
  };
2242
+ cloudFront?: {
2243
+ cookieRefresh?: {
2244
+ endpoint: string;
2245
+ domain: string;
2246
+ };
2247
+ };
1910
2248
  mcpServers?: Record<string, {
1911
2249
  customUserVars: Record<string, {
1912
2250
  title: string;
@@ -1919,6 +2257,12 @@ export type TStartupConfig = {
1919
2257
  }>;
1920
2258
  mcpPlaceholder?: string;
1921
2259
  conversationImportMaxFileSize?: number;
2260
+ buildInfo?: {
2261
+ commit?: string | null;
2262
+ commitShort?: string | null;
2263
+ branch?: string | null;
2264
+ buildDate?: string | null;
2265
+ };
1922
2266
  };
1923
2267
  export declare enum OCRStrategy {
1924
2268
  MISTRAL_OCR = "mistral_ocr",
@@ -1934,15 +2278,18 @@ export declare enum SearchCategories {
1934
2278
  }
1935
2279
  export declare enum SearchProviders {
1936
2280
  SERPER = "serper",
1937
- SEARXNG = "searxng"
2281
+ SEARXNG = "searxng",
2282
+ TAVILY = "tavily"
1938
2283
  }
1939
2284
  export declare enum ScraperProviders {
1940
2285
  FIRECRAWL = "firecrawl",
1941
- SERPER = "serper"
2286
+ SERPER = "serper",
2287
+ TAVILY = "tavily"
1942
2288
  }
1943
2289
  export declare enum RerankerTypes {
1944
2290
  JINA = "jina",
1945
- COHERE = "cohere"
2291
+ COHERE = "cohere",
2292
+ NONE = "none"
1946
2293
  }
1947
2294
  export declare enum SafeSearchTypes {
1948
2295
  OFF = 0,
@@ -1956,6 +2303,9 @@ export declare const webSearchSchema: z.ZodObject<{
1956
2303
  firecrawlApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1957
2304
  firecrawlApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1958
2305
  firecrawlVersion: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2306
+ tavilyApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2307
+ tavilySearchUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2308
+ tavilyExtractUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1959
2309
  jinaApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1960
2310
  jinaApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1961
2311
  cohereApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -2059,6 +2409,71 @@ export declare const webSearchSchema: z.ZodObject<{
2059
2409
  tag?: string | null | undefined;
2060
2410
  } | undefined;
2061
2411
  }>>;
2412
+ tavilySearchOptions: z.ZodOptional<z.ZodObject<{
2413
+ searchDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced", "fast", "ultra-fast"]>>;
2414
+ maxResults: z.ZodOptional<z.ZodNumber>;
2415
+ includeImages: z.ZodOptional<z.ZodBoolean>;
2416
+ includeAnswer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["basic", "advanced"]>]>>;
2417
+ includeRawContent: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["markdown", "text"]>]>>;
2418
+ includeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2419
+ excludeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2420
+ topic: z.ZodOptional<z.ZodEnum<["general", "news", "finance"]>>;
2421
+ timeRange: z.ZodOptional<z.ZodEnum<["day", "week", "month", "year", "d", "w", "m", "y"]>>;
2422
+ includeImageDescriptions: z.ZodOptional<z.ZodBoolean>;
2423
+ includeFavicon: z.ZodOptional<z.ZodBoolean>;
2424
+ chunksPerSource: z.ZodOptional<z.ZodNumber>;
2425
+ safeSearch: z.ZodOptional<z.ZodBoolean>;
2426
+ timeout: z.ZodOptional<z.ZodNumber>;
2427
+ }, "strip", z.ZodTypeAny, {
2428
+ safeSearch?: boolean | undefined;
2429
+ timeout?: number | undefined;
2430
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
2431
+ maxResults?: number | undefined;
2432
+ includeImages?: boolean | undefined;
2433
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
2434
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
2435
+ includeDomains?: string[] | undefined;
2436
+ excludeDomains?: string[] | undefined;
2437
+ topic?: "general" | "news" | "finance" | undefined;
2438
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
2439
+ includeImageDescriptions?: boolean | undefined;
2440
+ includeFavicon?: boolean | undefined;
2441
+ chunksPerSource?: number | undefined;
2442
+ }, {
2443
+ safeSearch?: boolean | undefined;
2444
+ timeout?: number | undefined;
2445
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
2446
+ maxResults?: number | undefined;
2447
+ includeImages?: boolean | undefined;
2448
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
2449
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
2450
+ includeDomains?: string[] | undefined;
2451
+ excludeDomains?: string[] | undefined;
2452
+ topic?: "general" | "news" | "finance" | undefined;
2453
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
2454
+ includeImageDescriptions?: boolean | undefined;
2455
+ includeFavicon?: boolean | undefined;
2456
+ chunksPerSource?: number | undefined;
2457
+ }>>;
2458
+ tavilyScraperOptions: z.ZodOptional<z.ZodObject<{
2459
+ extractDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced"]>>;
2460
+ includeImages: z.ZodOptional<z.ZodBoolean>;
2461
+ includeFavicon: z.ZodOptional<z.ZodBoolean>;
2462
+ format: z.ZodOptional<z.ZodEnum<["markdown", "text"]>>;
2463
+ timeout: z.ZodOptional<z.ZodNumber>;
2464
+ }, "strip", z.ZodTypeAny, {
2465
+ timeout?: number | undefined;
2466
+ includeImages?: boolean | undefined;
2467
+ includeFavicon?: boolean | undefined;
2468
+ extractDepth?: "advanced" | "basic" | undefined;
2469
+ format?: "text" | "markdown" | undefined;
2470
+ }, {
2471
+ timeout?: number | undefined;
2472
+ includeImages?: boolean | undefined;
2473
+ includeFavicon?: boolean | undefined;
2474
+ extractDepth?: "advanced" | "basic" | undefined;
2475
+ format?: "text" | "markdown" | undefined;
2476
+ }>>;
2062
2477
  }, "strip", z.ZodTypeAny, {
2063
2478
  serperApiKey: string;
2064
2479
  searxngInstanceUrl: string;
@@ -2066,6 +2481,9 @@ export declare const webSearchSchema: z.ZodObject<{
2066
2481
  firecrawlApiKey: string;
2067
2482
  firecrawlApiUrl: string;
2068
2483
  firecrawlVersion: string;
2484
+ tavilyApiKey: string;
2485
+ tavilySearchUrl: string;
2486
+ tavilyExtractUrl: string;
2069
2487
  jinaApiKey: string;
2070
2488
  jinaApiUrl: string;
2071
2489
  cohereApiKey: string;
@@ -2101,6 +2519,29 @@ export declare const webSearchSchema: z.ZodObject<{
2101
2519
  tag?: string | null | undefined;
2102
2520
  } | undefined;
2103
2521
  } | undefined;
2522
+ tavilySearchOptions?: {
2523
+ safeSearch?: boolean | undefined;
2524
+ timeout?: number | undefined;
2525
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
2526
+ maxResults?: number | undefined;
2527
+ includeImages?: boolean | undefined;
2528
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
2529
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
2530
+ includeDomains?: string[] | undefined;
2531
+ excludeDomains?: string[] | undefined;
2532
+ topic?: "general" | "news" | "finance" | undefined;
2533
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
2534
+ includeImageDescriptions?: boolean | undefined;
2535
+ includeFavicon?: boolean | undefined;
2536
+ chunksPerSource?: number | undefined;
2537
+ } | undefined;
2538
+ tavilyScraperOptions?: {
2539
+ timeout?: number | undefined;
2540
+ includeImages?: boolean | undefined;
2541
+ includeFavicon?: boolean | undefined;
2542
+ extractDepth?: "advanced" | "basic" | undefined;
2543
+ format?: "text" | "markdown" | undefined;
2544
+ } | undefined;
2104
2545
  }, {
2105
2546
  serperApiKey?: string | undefined;
2106
2547
  searxngInstanceUrl?: string | undefined;
@@ -2108,6 +2549,9 @@ export declare const webSearchSchema: z.ZodObject<{
2108
2549
  firecrawlApiKey?: string | undefined;
2109
2550
  firecrawlApiUrl?: string | undefined;
2110
2551
  firecrawlVersion?: string | undefined;
2552
+ tavilyApiKey?: string | undefined;
2553
+ tavilySearchUrl?: string | undefined;
2554
+ tavilyExtractUrl?: string | undefined;
2111
2555
  jinaApiKey?: string | undefined;
2112
2556
  jinaApiUrl?: string | undefined;
2113
2557
  cohereApiKey?: string | undefined;
@@ -2143,6 +2587,29 @@ export declare const webSearchSchema: z.ZodObject<{
2143
2587
  tag?: string | null | undefined;
2144
2588
  } | undefined;
2145
2589
  } | undefined;
2590
+ tavilySearchOptions?: {
2591
+ safeSearch?: boolean | undefined;
2592
+ timeout?: number | undefined;
2593
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
2594
+ maxResults?: number | undefined;
2595
+ includeImages?: boolean | undefined;
2596
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
2597
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
2598
+ includeDomains?: string[] | undefined;
2599
+ excludeDomains?: string[] | undefined;
2600
+ topic?: "general" | "news" | "finance" | undefined;
2601
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
2602
+ includeImageDescriptions?: boolean | undefined;
2603
+ includeFavicon?: boolean | undefined;
2604
+ chunksPerSource?: number | undefined;
2605
+ } | undefined;
2606
+ tavilyScraperOptions?: {
2607
+ timeout?: number | undefined;
2608
+ includeImages?: boolean | undefined;
2609
+ includeFavicon?: boolean | undefined;
2610
+ extractDepth?: "advanced" | "basic" | undefined;
2611
+ format?: "text" | "markdown" | undefined;
2612
+ } | undefined;
2146
2613
  }>;
2147
2614
  export type TWebSearchConfig = DeepPartial<z.infer<typeof webSearchSchema>>;
2148
2615
  export declare const ocrSchema: z.ZodObject<{
@@ -2198,12 +2665,16 @@ export declare const memorySchema: z.ZodObject<{
2198
2665
  personalize: z.ZodDefault<z.ZodBoolean>;
2199
2666
  messageWindowSize: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2200
2667
  agent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2668
+ enabled: z.ZodOptional<z.ZodBoolean>;
2201
2669
  id: z.ZodString;
2202
2670
  }, "strip", z.ZodTypeAny, {
2203
2671
  id: string;
2672
+ enabled?: boolean | undefined;
2204
2673
  }, {
2205
2674
  id: string;
2675
+ enabled?: boolean | undefined;
2206
2676
  }>, z.ZodObject<{
2677
+ enabled: z.ZodOptional<z.ZodBoolean>;
2207
2678
  provider: z.ZodString;
2208
2679
  model: z.ZodString;
2209
2680
  instructions: z.ZodOptional<z.ZodString>;
@@ -2211,11 +2682,13 @@ export declare const memorySchema: z.ZodObject<{
2211
2682
  }, "strip", z.ZodTypeAny, {
2212
2683
  model: string;
2213
2684
  provider: string;
2685
+ enabled?: boolean | undefined;
2214
2686
  instructions?: string | undefined;
2215
2687
  model_parameters?: Record<string, string | number | boolean> | undefined;
2216
2688
  }, {
2217
2689
  model: string;
2218
2690
  provider: string;
2691
+ enabled?: boolean | undefined;
2219
2692
  instructions?: string | undefined;
2220
2693
  model_parameters?: Record<string, string | number | boolean> | undefined;
2221
2694
  }>]>>;
@@ -2228,9 +2701,11 @@ export declare const memorySchema: z.ZodObject<{
2228
2701
  tokenLimit?: number | undefined;
2229
2702
  agent?: {
2230
2703
  id: string;
2704
+ enabled?: boolean | undefined;
2231
2705
  } | {
2232
2706
  model: string;
2233
2707
  provider: string;
2708
+ enabled?: boolean | undefined;
2234
2709
  instructions?: string | undefined;
2235
2710
  model_parameters?: Record<string, string | number | boolean> | undefined;
2236
2711
  } | undefined;
@@ -2243,9 +2718,11 @@ export declare const memorySchema: z.ZodObject<{
2243
2718
  messageWindowSize?: number | undefined;
2244
2719
  agent?: {
2245
2720
  id: string;
2721
+ enabled?: boolean | undefined;
2246
2722
  } | {
2247
2723
  model: string;
2248
2724
  provider: string;
2725
+ enabled?: boolean | undefined;
2249
2726
  instructions?: string | undefined;
2250
2727
  model_parameters?: Record<string, string | number | boolean> | undefined;
2251
2728
  } | undefined;
@@ -2357,8 +2834,8 @@ export declare const summarizationConfigSchema: z.ZodObject<{
2357
2834
  }, "strip", z.ZodTypeAny, {
2358
2835
  model?: string | undefined;
2359
2836
  prompt?: string | undefined;
2360
- provider?: string | undefined;
2361
2837
  enabled?: boolean | undefined;
2838
+ provider?: string | undefined;
2362
2839
  parameters?: Record<string, string | number | boolean | null> | undefined;
2363
2840
  trigger?: {
2364
2841
  value: number;
@@ -2383,8 +2860,8 @@ export declare const summarizationConfigSchema: z.ZodObject<{
2383
2860
  }, {
2384
2861
  model?: string | undefined;
2385
2862
  prompt?: string | undefined;
2386
- provider?: string | undefined;
2387
2863
  enabled?: boolean | undefined;
2864
+ provider?: string | undefined;
2388
2865
  parameters?: Record<string, string | number | boolean | null> | undefined;
2389
2866
  trigger?: {
2390
2867
  value: number;
@@ -2793,6 +3270,9 @@ export declare const configSchema: z.ZodObject<{
2793
3270
  firecrawlApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2794
3271
  firecrawlApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2795
3272
  firecrawlVersion: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3273
+ tavilyApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3274
+ tavilySearchUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3275
+ tavilyExtractUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2796
3276
  jinaApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2797
3277
  jinaApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2798
3278
  cohereApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -2896,6 +3376,71 @@ export declare const configSchema: z.ZodObject<{
2896
3376
  tag?: string | null | undefined;
2897
3377
  } | undefined;
2898
3378
  }>>;
3379
+ tavilySearchOptions: z.ZodOptional<z.ZodObject<{
3380
+ searchDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced", "fast", "ultra-fast"]>>;
3381
+ maxResults: z.ZodOptional<z.ZodNumber>;
3382
+ includeImages: z.ZodOptional<z.ZodBoolean>;
3383
+ includeAnswer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["basic", "advanced"]>]>>;
3384
+ includeRawContent: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["markdown", "text"]>]>>;
3385
+ includeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3386
+ excludeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3387
+ topic: z.ZodOptional<z.ZodEnum<["general", "news", "finance"]>>;
3388
+ timeRange: z.ZodOptional<z.ZodEnum<["day", "week", "month", "year", "d", "w", "m", "y"]>>;
3389
+ includeImageDescriptions: z.ZodOptional<z.ZodBoolean>;
3390
+ includeFavicon: z.ZodOptional<z.ZodBoolean>;
3391
+ chunksPerSource: z.ZodOptional<z.ZodNumber>;
3392
+ safeSearch: z.ZodOptional<z.ZodBoolean>;
3393
+ timeout: z.ZodOptional<z.ZodNumber>;
3394
+ }, "strip", z.ZodTypeAny, {
3395
+ safeSearch?: boolean | undefined;
3396
+ timeout?: number | undefined;
3397
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
3398
+ maxResults?: number | undefined;
3399
+ includeImages?: boolean | undefined;
3400
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
3401
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
3402
+ includeDomains?: string[] | undefined;
3403
+ excludeDomains?: string[] | undefined;
3404
+ topic?: "general" | "news" | "finance" | undefined;
3405
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
3406
+ includeImageDescriptions?: boolean | undefined;
3407
+ includeFavicon?: boolean | undefined;
3408
+ chunksPerSource?: number | undefined;
3409
+ }, {
3410
+ safeSearch?: boolean | undefined;
3411
+ timeout?: number | undefined;
3412
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
3413
+ maxResults?: number | undefined;
3414
+ includeImages?: boolean | undefined;
3415
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
3416
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
3417
+ includeDomains?: string[] | undefined;
3418
+ excludeDomains?: string[] | undefined;
3419
+ topic?: "general" | "news" | "finance" | undefined;
3420
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
3421
+ includeImageDescriptions?: boolean | undefined;
3422
+ includeFavicon?: boolean | undefined;
3423
+ chunksPerSource?: number | undefined;
3424
+ }>>;
3425
+ tavilyScraperOptions: z.ZodOptional<z.ZodObject<{
3426
+ extractDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced"]>>;
3427
+ includeImages: z.ZodOptional<z.ZodBoolean>;
3428
+ includeFavicon: z.ZodOptional<z.ZodBoolean>;
3429
+ format: z.ZodOptional<z.ZodEnum<["markdown", "text"]>>;
3430
+ timeout: z.ZodOptional<z.ZodNumber>;
3431
+ }, "strip", z.ZodTypeAny, {
3432
+ timeout?: number | undefined;
3433
+ includeImages?: boolean | undefined;
3434
+ includeFavicon?: boolean | undefined;
3435
+ extractDepth?: "advanced" | "basic" | undefined;
3436
+ format?: "text" | "markdown" | undefined;
3437
+ }, {
3438
+ timeout?: number | undefined;
3439
+ includeImages?: boolean | undefined;
3440
+ includeFavicon?: boolean | undefined;
3441
+ extractDepth?: "advanced" | "basic" | undefined;
3442
+ format?: "text" | "markdown" | undefined;
3443
+ }>>;
2899
3444
  }, "strip", z.ZodTypeAny, {
2900
3445
  serperApiKey: string;
2901
3446
  searxngInstanceUrl: string;
@@ -2903,6 +3448,9 @@ export declare const configSchema: z.ZodObject<{
2903
3448
  firecrawlApiKey: string;
2904
3449
  firecrawlApiUrl: string;
2905
3450
  firecrawlVersion: string;
3451
+ tavilyApiKey: string;
3452
+ tavilySearchUrl: string;
3453
+ tavilyExtractUrl: string;
2906
3454
  jinaApiKey: string;
2907
3455
  jinaApiUrl: string;
2908
3456
  cohereApiKey: string;
@@ -2938,6 +3486,29 @@ export declare const configSchema: z.ZodObject<{
2938
3486
  tag?: string | null | undefined;
2939
3487
  } | undefined;
2940
3488
  } | undefined;
3489
+ tavilySearchOptions?: {
3490
+ safeSearch?: boolean | undefined;
3491
+ timeout?: number | undefined;
3492
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
3493
+ maxResults?: number | undefined;
3494
+ includeImages?: boolean | undefined;
3495
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
3496
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
3497
+ includeDomains?: string[] | undefined;
3498
+ excludeDomains?: string[] | undefined;
3499
+ topic?: "general" | "news" | "finance" | undefined;
3500
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
3501
+ includeImageDescriptions?: boolean | undefined;
3502
+ includeFavicon?: boolean | undefined;
3503
+ chunksPerSource?: number | undefined;
3504
+ } | undefined;
3505
+ tavilyScraperOptions?: {
3506
+ timeout?: number | undefined;
3507
+ includeImages?: boolean | undefined;
3508
+ includeFavicon?: boolean | undefined;
3509
+ extractDepth?: "advanced" | "basic" | undefined;
3510
+ format?: "text" | "markdown" | undefined;
3511
+ } | undefined;
2941
3512
  }, {
2942
3513
  serperApiKey?: string | undefined;
2943
3514
  searxngInstanceUrl?: string | undefined;
@@ -2945,6 +3516,9 @@ export declare const configSchema: z.ZodObject<{
2945
3516
  firecrawlApiKey?: string | undefined;
2946
3517
  firecrawlApiUrl?: string | undefined;
2947
3518
  firecrawlVersion?: string | undefined;
3519
+ tavilyApiKey?: string | undefined;
3520
+ tavilySearchUrl?: string | undefined;
3521
+ tavilyExtractUrl?: string | undefined;
2948
3522
  jinaApiKey?: string | undefined;
2949
3523
  jinaApiUrl?: string | undefined;
2950
3524
  cohereApiKey?: string | undefined;
@@ -2980,6 +3554,29 @@ export declare const configSchema: z.ZodObject<{
2980
3554
  tag?: string | null | undefined;
2981
3555
  } | undefined;
2982
3556
  } | undefined;
3557
+ tavilySearchOptions?: {
3558
+ safeSearch?: boolean | undefined;
3559
+ timeout?: number | undefined;
3560
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
3561
+ maxResults?: number | undefined;
3562
+ includeImages?: boolean | undefined;
3563
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
3564
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
3565
+ includeDomains?: string[] | undefined;
3566
+ excludeDomains?: string[] | undefined;
3567
+ topic?: "general" | "news" | "finance" | undefined;
3568
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
3569
+ includeImageDescriptions?: boolean | undefined;
3570
+ includeFavicon?: boolean | undefined;
3571
+ chunksPerSource?: number | undefined;
3572
+ } | undefined;
3573
+ tavilyScraperOptions?: {
3574
+ timeout?: number | undefined;
3575
+ includeImages?: boolean | undefined;
3576
+ includeFavicon?: boolean | undefined;
3577
+ extractDepth?: "advanced" | "basic" | undefined;
3578
+ format?: "text" | "markdown" | undefined;
3579
+ } | undefined;
2983
3580
  }>>;
2984
3581
  memory: z.ZodOptional<z.ZodObject<{
2985
3582
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -2989,12 +3586,16 @@ export declare const configSchema: z.ZodObject<{
2989
3586
  personalize: z.ZodDefault<z.ZodBoolean>;
2990
3587
  messageWindowSize: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2991
3588
  agent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3589
+ enabled: z.ZodOptional<z.ZodBoolean>;
2992
3590
  id: z.ZodString;
2993
3591
  }, "strip", z.ZodTypeAny, {
2994
3592
  id: string;
3593
+ enabled?: boolean | undefined;
2995
3594
  }, {
2996
3595
  id: string;
3596
+ enabled?: boolean | undefined;
2997
3597
  }>, z.ZodObject<{
3598
+ enabled: z.ZodOptional<z.ZodBoolean>;
2998
3599
  provider: z.ZodString;
2999
3600
  model: z.ZodString;
3000
3601
  instructions: z.ZodOptional<z.ZodString>;
@@ -3002,11 +3603,13 @@ export declare const configSchema: z.ZodObject<{
3002
3603
  }, "strip", z.ZodTypeAny, {
3003
3604
  model: string;
3004
3605
  provider: string;
3606
+ enabled?: boolean | undefined;
3005
3607
  instructions?: string | undefined;
3006
3608
  model_parameters?: Record<string, string | number | boolean> | undefined;
3007
3609
  }, {
3008
3610
  model: string;
3009
3611
  provider: string;
3612
+ enabled?: boolean | undefined;
3010
3613
  instructions?: string | undefined;
3011
3614
  model_parameters?: Record<string, string | number | boolean> | undefined;
3012
3615
  }>]>>;
@@ -3019,9 +3622,11 @@ export declare const configSchema: z.ZodObject<{
3019
3622
  tokenLimit?: number | undefined;
3020
3623
  agent?: {
3021
3624
  id: string;
3625
+ enabled?: boolean | undefined;
3022
3626
  } | {
3023
3627
  model: string;
3024
3628
  provider: string;
3629
+ enabled?: boolean | undefined;
3025
3630
  instructions?: string | undefined;
3026
3631
  model_parameters?: Record<string, string | number | boolean> | undefined;
3027
3632
  } | undefined;
@@ -3034,9 +3639,11 @@ export declare const configSchema: z.ZodObject<{
3034
3639
  messageWindowSize?: number | undefined;
3035
3640
  agent?: {
3036
3641
  id: string;
3642
+ enabled?: boolean | undefined;
3037
3643
  } | {
3038
3644
  model: string;
3039
3645
  provider: string;
3646
+ enabled?: boolean | undefined;
3040
3647
  instructions?: string | undefined;
3041
3648
  model_parameters?: Record<string, string | number | boolean> | undefined;
3042
3649
  } | undefined;
@@ -3100,8 +3707,8 @@ export declare const configSchema: z.ZodObject<{
3100
3707
  }, "strip", z.ZodTypeAny, {
3101
3708
  model?: string | undefined;
3102
3709
  prompt?: string | undefined;
3103
- provider?: string | undefined;
3104
3710
  enabled?: boolean | undefined;
3711
+ provider?: string | undefined;
3105
3712
  parameters?: Record<string, string | number | boolean | null> | undefined;
3106
3713
  trigger?: {
3107
3714
  value: number;
@@ -3126,8 +3733,8 @@ export declare const configSchema: z.ZodObject<{
3126
3733
  }, {
3127
3734
  model?: string | undefined;
3128
3735
  prompt?: string | undefined;
3129
- provider?: string | undefined;
3130
3736
  enabled?: boolean | undefined;
3737
+ provider?: string | undefined;
3131
3738
  parameters?: Record<string, string | number | boolean | null> | undefined;
3132
3739
  trigger?: {
3133
3740
  value: number;
@@ -3165,7 +3772,7 @@ export declare const configSchema: z.ZodObject<{
3165
3772
  chatMenu: z.ZodOptional<z.ZodBoolean>;
3166
3773
  serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
3167
3774
  requiresOAuth: z.ZodOptional<z.ZodBoolean>;
3168
- oauth: z.ZodOptional<z.ZodObject<{
3775
+ oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
3169
3776
  authorization_url: z.ZodOptional<z.ZodString>;
3170
3777
  token_url: z.ZodOptional<z.ZodString>;
3171
3778
  client_id: z.ZodOptional<z.ZodString>;
@@ -3178,6 +3785,8 @@ export declare const configSchema: z.ZodObject<{
3178
3785
  response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3179
3786
  code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3180
3787
  skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
3788
+ audience: z.ZodOptional<z.ZodString>;
3789
+ forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
3181
3790
  revocation_endpoint: z.ZodOptional<z.ZodString>;
3182
3791
  revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3183
3792
  }, "strip", z.ZodTypeAny, {
@@ -3193,6 +3802,8 @@ export declare const configSchema: z.ZodObject<{
3193
3802
  response_types_supported?: string[] | undefined;
3194
3803
  code_challenge_methods_supported?: string[] | undefined;
3195
3804
  skip_code_challenge_check?: boolean | undefined;
3805
+ audience?: string | undefined;
3806
+ forward_audience_on_refresh?: boolean | undefined;
3196
3807
  revocation_endpoint?: string | undefined;
3197
3808
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3198
3809
  }, {
@@ -3208,6 +3819,42 @@ export declare const configSchema: z.ZodObject<{
3208
3819
  response_types_supported?: string[] | undefined;
3209
3820
  code_challenge_methods_supported?: string[] | undefined;
3210
3821
  skip_code_challenge_check?: boolean | undefined;
3822
+ audience?: string | undefined;
3823
+ forward_audience_on_refresh?: boolean | undefined;
3824
+ revocation_endpoint?: string | undefined;
3825
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
3826
+ }>, {
3827
+ authorization_url?: string | undefined;
3828
+ token_url?: string | undefined;
3829
+ client_id?: string | undefined;
3830
+ client_secret?: string | undefined;
3831
+ scope?: string | undefined;
3832
+ redirect_uri?: string | undefined;
3833
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
3834
+ grant_types_supported?: string[] | undefined;
3835
+ token_endpoint_auth_methods_supported?: string[] | undefined;
3836
+ response_types_supported?: string[] | undefined;
3837
+ code_challenge_methods_supported?: string[] | undefined;
3838
+ skip_code_challenge_check?: boolean | undefined;
3839
+ audience?: string | undefined;
3840
+ forward_audience_on_refresh?: boolean | undefined;
3841
+ revocation_endpoint?: string | undefined;
3842
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
3843
+ }, {
3844
+ authorization_url?: string | undefined;
3845
+ token_url?: string | undefined;
3846
+ client_id?: string | undefined;
3847
+ client_secret?: string | undefined;
3848
+ scope?: string | undefined;
3849
+ redirect_uri?: string | undefined;
3850
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
3851
+ grant_types_supported?: string[] | undefined;
3852
+ token_endpoint_auth_methods_supported?: string[] | undefined;
3853
+ response_types_supported?: string[] | undefined;
3854
+ code_challenge_methods_supported?: string[] | undefined;
3855
+ skip_code_challenge_check?: boolean | undefined;
3856
+ audience?: string | undefined;
3857
+ forward_audience_on_refresh?: boolean | undefined;
3211
3858
  revocation_endpoint?: string | undefined;
3212
3859
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3213
3860
  }>>;
@@ -3219,12 +3866,12 @@ export declare const configSchema: z.ZodObject<{
3219
3866
  custom_header: z.ZodOptional<z.ZodString>;
3220
3867
  }, "strip", z.ZodTypeAny, {
3221
3868
  source: "user" | "admin";
3222
- authorization_type: "custom" | "basic" | "bearer";
3869
+ authorization_type: "basic" | "custom" | "bearer";
3223
3870
  key?: string | undefined;
3224
3871
  custom_header?: string | undefined;
3225
3872
  }, {
3226
3873
  source: "user" | "admin";
3227
- authorization_type: "custom" | "basic" | "bearer";
3874
+ authorization_type: "basic" | "custom" | "bearer";
3228
3875
  key?: string | undefined;
3229
3876
  custom_header?: string | undefined;
3230
3877
  }>>;
@@ -3252,7 +3899,7 @@ export declare const configSchema: z.ZodObject<{
3252
3899
  description?: string | undefined;
3253
3900
  apiKey?: {
3254
3901
  source: "user" | "admin";
3255
- authorization_type: "custom" | "basic" | "bearer";
3902
+ authorization_type: "basic" | "custom" | "bearer";
3256
3903
  key?: string | undefined;
3257
3904
  custom_header?: string | undefined;
3258
3905
  } | undefined;
@@ -3277,6 +3924,8 @@ export declare const configSchema: z.ZodObject<{
3277
3924
  response_types_supported?: string[] | undefined;
3278
3925
  code_challenge_methods_supported?: string[] | undefined;
3279
3926
  skip_code_challenge_check?: boolean | undefined;
3927
+ audience?: string | undefined;
3928
+ forward_audience_on_refresh?: boolean | undefined;
3280
3929
  revocation_endpoint?: string | undefined;
3281
3930
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3282
3931
  } | undefined;
@@ -3295,7 +3944,7 @@ export declare const configSchema: z.ZodObject<{
3295
3944
  description?: string | undefined;
3296
3945
  apiKey?: {
3297
3946
  source: "user" | "admin";
3298
- authorization_type: "custom" | "basic" | "bearer";
3947
+ authorization_type: "basic" | "custom" | "bearer";
3299
3948
  key?: string | undefined;
3300
3949
  custom_header?: string | undefined;
3301
3950
  } | undefined;
@@ -3320,6 +3969,8 @@ export declare const configSchema: z.ZodObject<{
3320
3969
  response_types_supported?: string[] | undefined;
3321
3970
  code_challenge_methods_supported?: string[] | undefined;
3322
3971
  skip_code_challenge_check?: boolean | undefined;
3972
+ audience?: string | undefined;
3973
+ forward_audience_on_refresh?: boolean | undefined;
3323
3974
  revocation_endpoint?: string | undefined;
3324
3975
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3325
3976
  } | undefined;
@@ -3341,7 +3992,7 @@ export declare const configSchema: z.ZodObject<{
3341
3992
  chatMenu: z.ZodOptional<z.ZodBoolean>;
3342
3993
  serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
3343
3994
  requiresOAuth: z.ZodOptional<z.ZodBoolean>;
3344
- oauth: z.ZodOptional<z.ZodObject<{
3995
+ oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
3345
3996
  authorization_url: z.ZodOptional<z.ZodString>;
3346
3997
  token_url: z.ZodOptional<z.ZodString>;
3347
3998
  client_id: z.ZodOptional<z.ZodString>;
@@ -3354,6 +4005,8 @@ export declare const configSchema: z.ZodObject<{
3354
4005
  response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3355
4006
  code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3356
4007
  skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
4008
+ audience: z.ZodOptional<z.ZodString>;
4009
+ forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
3357
4010
  revocation_endpoint: z.ZodOptional<z.ZodString>;
3358
4011
  revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3359
4012
  }, "strip", z.ZodTypeAny, {
@@ -3369,6 +4022,8 @@ export declare const configSchema: z.ZodObject<{
3369
4022
  response_types_supported?: string[] | undefined;
3370
4023
  code_challenge_methods_supported?: string[] | undefined;
3371
4024
  skip_code_challenge_check?: boolean | undefined;
4025
+ audience?: string | undefined;
4026
+ forward_audience_on_refresh?: boolean | undefined;
3372
4027
  revocation_endpoint?: string | undefined;
3373
4028
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3374
4029
  }, {
@@ -3384,6 +4039,42 @@ export declare const configSchema: z.ZodObject<{
3384
4039
  response_types_supported?: string[] | undefined;
3385
4040
  code_challenge_methods_supported?: string[] | undefined;
3386
4041
  skip_code_challenge_check?: boolean | undefined;
4042
+ audience?: string | undefined;
4043
+ forward_audience_on_refresh?: boolean | undefined;
4044
+ revocation_endpoint?: string | undefined;
4045
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
4046
+ }>, {
4047
+ authorization_url?: string | undefined;
4048
+ token_url?: string | undefined;
4049
+ client_id?: string | undefined;
4050
+ client_secret?: string | undefined;
4051
+ scope?: string | undefined;
4052
+ redirect_uri?: string | undefined;
4053
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
4054
+ grant_types_supported?: string[] | undefined;
4055
+ token_endpoint_auth_methods_supported?: string[] | undefined;
4056
+ response_types_supported?: string[] | undefined;
4057
+ code_challenge_methods_supported?: string[] | undefined;
4058
+ skip_code_challenge_check?: boolean | undefined;
4059
+ audience?: string | undefined;
4060
+ forward_audience_on_refresh?: boolean | undefined;
4061
+ revocation_endpoint?: string | undefined;
4062
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
4063
+ }, {
4064
+ authorization_url?: string | undefined;
4065
+ token_url?: string | undefined;
4066
+ client_id?: string | undefined;
4067
+ client_secret?: string | undefined;
4068
+ scope?: string | undefined;
4069
+ redirect_uri?: string | undefined;
4070
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
4071
+ grant_types_supported?: string[] | undefined;
4072
+ token_endpoint_auth_methods_supported?: string[] | undefined;
4073
+ response_types_supported?: string[] | undefined;
4074
+ code_challenge_methods_supported?: string[] | undefined;
4075
+ skip_code_challenge_check?: boolean | undefined;
4076
+ audience?: string | undefined;
4077
+ forward_audience_on_refresh?: boolean | undefined;
3387
4078
  revocation_endpoint?: string | undefined;
3388
4079
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3389
4080
  }>>;
@@ -3395,12 +4086,12 @@ export declare const configSchema: z.ZodObject<{
3395
4086
  custom_header: z.ZodOptional<z.ZodString>;
3396
4087
  }, "strip", z.ZodTypeAny, {
3397
4088
  source: "user" | "admin";
3398
- authorization_type: "custom" | "basic" | "bearer";
4089
+ authorization_type: "basic" | "custom" | "bearer";
3399
4090
  key?: string | undefined;
3400
4091
  custom_header?: string | undefined;
3401
4092
  }, {
3402
4093
  source: "user" | "admin";
3403
- authorization_type: "custom" | "basic" | "bearer";
4094
+ authorization_type: "basic" | "custom" | "bearer";
3404
4095
  key?: string | undefined;
3405
4096
  custom_header?: string | undefined;
3406
4097
  }>>;
@@ -3424,7 +4115,7 @@ export declare const configSchema: z.ZodObject<{
3424
4115
  description?: string | undefined;
3425
4116
  apiKey?: {
3426
4117
  source: "user" | "admin";
3427
- authorization_type: "custom" | "basic" | "bearer";
4118
+ authorization_type: "basic" | "custom" | "bearer";
3428
4119
  key?: string | undefined;
3429
4120
  custom_header?: string | undefined;
3430
4121
  } | undefined;
@@ -3449,6 +4140,8 @@ export declare const configSchema: z.ZodObject<{
3449
4140
  response_types_supported?: string[] | undefined;
3450
4141
  code_challenge_methods_supported?: string[] | undefined;
3451
4142
  skip_code_challenge_check?: boolean | undefined;
4143
+ audience?: string | undefined;
4144
+ forward_audience_on_refresh?: boolean | undefined;
3452
4145
  revocation_endpoint?: string | undefined;
3453
4146
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3454
4147
  } | undefined;
@@ -3464,7 +4157,7 @@ export declare const configSchema: z.ZodObject<{
3464
4157
  description?: string | undefined;
3465
4158
  apiKey?: {
3466
4159
  source: "user" | "admin";
3467
- authorization_type: "custom" | "basic" | "bearer";
4160
+ authorization_type: "basic" | "custom" | "bearer";
3468
4161
  key?: string | undefined;
3469
4162
  custom_header?: string | undefined;
3470
4163
  } | undefined;
@@ -3489,6 +4182,8 @@ export declare const configSchema: z.ZodObject<{
3489
4182
  response_types_supported?: string[] | undefined;
3490
4183
  code_challenge_methods_supported?: string[] | undefined;
3491
4184
  skip_code_challenge_check?: boolean | undefined;
4185
+ audience?: string | undefined;
4186
+ forward_audience_on_refresh?: boolean | undefined;
3492
4187
  revocation_endpoint?: string | undefined;
3493
4188
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3494
4189
  } | undefined;
@@ -3508,7 +4203,7 @@ export declare const configSchema: z.ZodObject<{
3508
4203
  chatMenu: z.ZodOptional<z.ZodBoolean>;
3509
4204
  serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
3510
4205
  requiresOAuth: z.ZodOptional<z.ZodBoolean>;
3511
- oauth: z.ZodOptional<z.ZodObject<{
4206
+ oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
3512
4207
  authorization_url: z.ZodOptional<z.ZodString>;
3513
4208
  token_url: z.ZodOptional<z.ZodString>;
3514
4209
  client_id: z.ZodOptional<z.ZodString>;
@@ -3521,6 +4216,8 @@ export declare const configSchema: z.ZodObject<{
3521
4216
  response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3522
4217
  code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3523
4218
  skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
4219
+ audience: z.ZodOptional<z.ZodString>;
4220
+ forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
3524
4221
  revocation_endpoint: z.ZodOptional<z.ZodString>;
3525
4222
  revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3526
4223
  }, "strip", z.ZodTypeAny, {
@@ -3536,6 +4233,8 @@ export declare const configSchema: z.ZodObject<{
3536
4233
  response_types_supported?: string[] | undefined;
3537
4234
  code_challenge_methods_supported?: string[] | undefined;
3538
4235
  skip_code_challenge_check?: boolean | undefined;
4236
+ audience?: string | undefined;
4237
+ forward_audience_on_refresh?: boolean | undefined;
3539
4238
  revocation_endpoint?: string | undefined;
3540
4239
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3541
4240
  }, {
@@ -3551,6 +4250,42 @@ export declare const configSchema: z.ZodObject<{
3551
4250
  response_types_supported?: string[] | undefined;
3552
4251
  code_challenge_methods_supported?: string[] | undefined;
3553
4252
  skip_code_challenge_check?: boolean | undefined;
4253
+ audience?: string | undefined;
4254
+ forward_audience_on_refresh?: boolean | undefined;
4255
+ revocation_endpoint?: string | undefined;
4256
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
4257
+ }>, {
4258
+ authorization_url?: string | undefined;
4259
+ token_url?: string | undefined;
4260
+ client_id?: string | undefined;
4261
+ client_secret?: string | undefined;
4262
+ scope?: string | undefined;
4263
+ redirect_uri?: string | undefined;
4264
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
4265
+ grant_types_supported?: string[] | undefined;
4266
+ token_endpoint_auth_methods_supported?: string[] | undefined;
4267
+ response_types_supported?: string[] | undefined;
4268
+ code_challenge_methods_supported?: string[] | undefined;
4269
+ skip_code_challenge_check?: boolean | undefined;
4270
+ audience?: string | undefined;
4271
+ forward_audience_on_refresh?: boolean | undefined;
4272
+ revocation_endpoint?: string | undefined;
4273
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
4274
+ }, {
4275
+ authorization_url?: string | undefined;
4276
+ token_url?: string | undefined;
4277
+ client_id?: string | undefined;
4278
+ client_secret?: string | undefined;
4279
+ scope?: string | undefined;
4280
+ redirect_uri?: string | undefined;
4281
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
4282
+ grant_types_supported?: string[] | undefined;
4283
+ token_endpoint_auth_methods_supported?: string[] | undefined;
4284
+ response_types_supported?: string[] | undefined;
4285
+ code_challenge_methods_supported?: string[] | undefined;
4286
+ skip_code_challenge_check?: boolean | undefined;
4287
+ audience?: string | undefined;
4288
+ forward_audience_on_refresh?: boolean | undefined;
3554
4289
  revocation_endpoint?: string | undefined;
3555
4290
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3556
4291
  }>>;
@@ -3562,12 +4297,12 @@ export declare const configSchema: z.ZodObject<{
3562
4297
  custom_header: z.ZodOptional<z.ZodString>;
3563
4298
  }, "strip", z.ZodTypeAny, {
3564
4299
  source: "user" | "admin";
3565
- authorization_type: "custom" | "basic" | "bearer";
4300
+ authorization_type: "basic" | "custom" | "bearer";
3566
4301
  key?: string | undefined;
3567
4302
  custom_header?: string | undefined;
3568
4303
  }, {
3569
4304
  source: "user" | "admin";
3570
- authorization_type: "custom" | "basic" | "bearer";
4305
+ authorization_type: "basic" | "custom" | "bearer";
3571
4306
  key?: string | undefined;
3572
4307
  custom_header?: string | undefined;
3573
4308
  }>>;
@@ -3584,6 +4319,7 @@ export declare const configSchema: z.ZodObject<{
3584
4319
  } & {
3585
4320
  type: z.ZodDefault<z.ZodLiteral<"sse">>;
3586
4321
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4322
+ proxy: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>>;
3587
4323
  url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
3588
4324
  }, "strip", z.ZodTypeAny, {
3589
4325
  type: "sse";
@@ -3592,7 +4328,7 @@ export declare const configSchema: z.ZodObject<{
3592
4328
  description?: string | undefined;
3593
4329
  apiKey?: {
3594
4330
  source: "user" | "admin";
3595
- authorization_type: "custom" | "basic" | "bearer";
4331
+ authorization_type: "basic" | "custom" | "bearer";
3596
4332
  key?: string | undefined;
3597
4333
  custom_header?: string | undefined;
3598
4334
  } | undefined;
@@ -3618,6 +4354,8 @@ export declare const configSchema: z.ZodObject<{
3618
4354
  response_types_supported?: string[] | undefined;
3619
4355
  code_challenge_methods_supported?: string[] | undefined;
3620
4356
  skip_code_challenge_check?: boolean | undefined;
4357
+ audience?: string | undefined;
4358
+ forward_audience_on_refresh?: boolean | undefined;
3621
4359
  revocation_endpoint?: string | undefined;
3622
4360
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3623
4361
  } | undefined;
@@ -3626,6 +4364,7 @@ export declare const configSchema: z.ZodObject<{
3626
4364
  title: string;
3627
4365
  description: string;
3628
4366
  }> | undefined;
4367
+ proxy?: string | undefined;
3629
4368
  }, {
3630
4369
  url: string;
3631
4370
  title?: string | undefined;
@@ -3633,7 +4372,7 @@ export declare const configSchema: z.ZodObject<{
3633
4372
  description?: string | undefined;
3634
4373
  apiKey?: {
3635
4374
  source: "user" | "admin";
3636
- authorization_type: "custom" | "basic" | "bearer";
4375
+ authorization_type: "basic" | "custom" | "bearer";
3637
4376
  key?: string | undefined;
3638
4377
  custom_header?: string | undefined;
3639
4378
  } | undefined;
@@ -3659,6 +4398,8 @@ export declare const configSchema: z.ZodObject<{
3659
4398
  response_types_supported?: string[] | undefined;
3660
4399
  code_challenge_methods_supported?: string[] | undefined;
3661
4400
  skip_code_challenge_check?: boolean | undefined;
4401
+ audience?: string | undefined;
4402
+ forward_audience_on_refresh?: boolean | undefined;
3662
4403
  revocation_endpoint?: string | undefined;
3663
4404
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3664
4405
  } | undefined;
@@ -3667,6 +4408,7 @@ export declare const configSchema: z.ZodObject<{
3667
4408
  title: string;
3668
4409
  description: string;
3669
4410
  }> | undefined;
4411
+ proxy?: string | undefined;
3670
4412
  }>, z.ZodObject<{
3671
4413
  title: z.ZodOptional<z.ZodString>;
3672
4414
  description: z.ZodOptional<z.ZodString>;
@@ -3678,7 +4420,7 @@ export declare const configSchema: z.ZodObject<{
3678
4420
  chatMenu: z.ZodOptional<z.ZodBoolean>;
3679
4421
  serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
3680
4422
  requiresOAuth: z.ZodOptional<z.ZodBoolean>;
3681
- oauth: z.ZodOptional<z.ZodObject<{
4423
+ oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
3682
4424
  authorization_url: z.ZodOptional<z.ZodString>;
3683
4425
  token_url: z.ZodOptional<z.ZodString>;
3684
4426
  client_id: z.ZodOptional<z.ZodString>;
@@ -3691,6 +4433,8 @@ export declare const configSchema: z.ZodObject<{
3691
4433
  response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3692
4434
  code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3693
4435
  skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
4436
+ audience: z.ZodOptional<z.ZodString>;
4437
+ forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
3694
4438
  revocation_endpoint: z.ZodOptional<z.ZodString>;
3695
4439
  revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3696
4440
  }, "strip", z.ZodTypeAny, {
@@ -3706,6 +4450,42 @@ export declare const configSchema: z.ZodObject<{
3706
4450
  response_types_supported?: string[] | undefined;
3707
4451
  code_challenge_methods_supported?: string[] | undefined;
3708
4452
  skip_code_challenge_check?: boolean | undefined;
4453
+ audience?: string | undefined;
4454
+ forward_audience_on_refresh?: boolean | undefined;
4455
+ revocation_endpoint?: string | undefined;
4456
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
4457
+ }, {
4458
+ authorization_url?: string | undefined;
4459
+ token_url?: string | undefined;
4460
+ client_id?: string | undefined;
4461
+ client_secret?: string | undefined;
4462
+ scope?: string | undefined;
4463
+ redirect_uri?: string | undefined;
4464
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
4465
+ grant_types_supported?: string[] | undefined;
4466
+ token_endpoint_auth_methods_supported?: string[] | undefined;
4467
+ response_types_supported?: string[] | undefined;
4468
+ code_challenge_methods_supported?: string[] | undefined;
4469
+ skip_code_challenge_check?: boolean | undefined;
4470
+ audience?: string | undefined;
4471
+ forward_audience_on_refresh?: boolean | undefined;
4472
+ revocation_endpoint?: string | undefined;
4473
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
4474
+ }>, {
4475
+ authorization_url?: string | undefined;
4476
+ token_url?: string | undefined;
4477
+ client_id?: string | undefined;
4478
+ client_secret?: string | undefined;
4479
+ scope?: string | undefined;
4480
+ redirect_uri?: string | undefined;
4481
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
4482
+ grant_types_supported?: string[] | undefined;
4483
+ token_endpoint_auth_methods_supported?: string[] | undefined;
4484
+ response_types_supported?: string[] | undefined;
4485
+ code_challenge_methods_supported?: string[] | undefined;
4486
+ skip_code_challenge_check?: boolean | undefined;
4487
+ audience?: string | undefined;
4488
+ forward_audience_on_refresh?: boolean | undefined;
3709
4489
  revocation_endpoint?: string | undefined;
3710
4490
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3711
4491
  }, {
@@ -3721,6 +4501,8 @@ export declare const configSchema: z.ZodObject<{
3721
4501
  response_types_supported?: string[] | undefined;
3722
4502
  code_challenge_methods_supported?: string[] | undefined;
3723
4503
  skip_code_challenge_check?: boolean | undefined;
4504
+ audience?: string | undefined;
4505
+ forward_audience_on_refresh?: boolean | undefined;
3724
4506
  revocation_endpoint?: string | undefined;
3725
4507
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3726
4508
  }>>;
@@ -3732,12 +4514,12 @@ export declare const configSchema: z.ZodObject<{
3732
4514
  custom_header: z.ZodOptional<z.ZodString>;
3733
4515
  }, "strip", z.ZodTypeAny, {
3734
4516
  source: "user" | "admin";
3735
- authorization_type: "custom" | "basic" | "bearer";
4517
+ authorization_type: "basic" | "custom" | "bearer";
3736
4518
  key?: string | undefined;
3737
4519
  custom_header?: string | undefined;
3738
4520
  }, {
3739
4521
  source: "user" | "admin";
3740
- authorization_type: "custom" | "basic" | "bearer";
4522
+ authorization_type: "basic" | "custom" | "bearer";
3741
4523
  key?: string | undefined;
3742
4524
  custom_header?: string | undefined;
3743
4525
  }>>;
@@ -3754,6 +4536,7 @@ export declare const configSchema: z.ZodObject<{
3754
4536
  } & {
3755
4537
  type: z.ZodUnion<[z.ZodLiteral<"streamable-http">, z.ZodLiteral<"http">]>;
3756
4538
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4539
+ proxy: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>>;
3757
4540
  url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
3758
4541
  }, "strip", z.ZodTypeAny, {
3759
4542
  type: "streamable-http" | "http";
@@ -3762,7 +4545,7 @@ export declare const configSchema: z.ZodObject<{
3762
4545
  description?: string | undefined;
3763
4546
  apiKey?: {
3764
4547
  source: "user" | "admin";
3765
- authorization_type: "custom" | "basic" | "bearer";
4548
+ authorization_type: "basic" | "custom" | "bearer";
3766
4549
  key?: string | undefined;
3767
4550
  custom_header?: string | undefined;
3768
4551
  } | undefined;
@@ -3788,6 +4571,8 @@ export declare const configSchema: z.ZodObject<{
3788
4571
  response_types_supported?: string[] | undefined;
3789
4572
  code_challenge_methods_supported?: string[] | undefined;
3790
4573
  skip_code_challenge_check?: boolean | undefined;
4574
+ audience?: string | undefined;
4575
+ forward_audience_on_refresh?: boolean | undefined;
3791
4576
  revocation_endpoint?: string | undefined;
3792
4577
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3793
4578
  } | undefined;
@@ -3796,6 +4581,7 @@ export declare const configSchema: z.ZodObject<{
3796
4581
  title: string;
3797
4582
  description: string;
3798
4583
  }> | undefined;
4584
+ proxy?: string | undefined;
3799
4585
  }, {
3800
4586
  type: "streamable-http" | "http";
3801
4587
  url: string;
@@ -3803,7 +4589,7 @@ export declare const configSchema: z.ZodObject<{
3803
4589
  description?: string | undefined;
3804
4590
  apiKey?: {
3805
4591
  source: "user" | "admin";
3806
- authorization_type: "custom" | "basic" | "bearer";
4592
+ authorization_type: "basic" | "custom" | "bearer";
3807
4593
  key?: string | undefined;
3808
4594
  custom_header?: string | undefined;
3809
4595
  } | undefined;
@@ -3829,6 +4615,8 @@ export declare const configSchema: z.ZodObject<{
3829
4615
  response_types_supported?: string[] | undefined;
3830
4616
  code_challenge_methods_supported?: string[] | undefined;
3831
4617
  skip_code_challenge_check?: boolean | undefined;
4618
+ audience?: string | undefined;
4619
+ forward_audience_on_refresh?: boolean | undefined;
3832
4620
  revocation_endpoint?: string | undefined;
3833
4621
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
3834
4622
  } | undefined;
@@ -3837,13 +4625,17 @@ export declare const configSchema: z.ZodObject<{
3837
4625
  title: string;
3838
4626
  description: string;
3839
4627
  }> | undefined;
4628
+ proxy?: string | undefined;
3840
4629
  }>]>>>;
3841
4630
  mcpSettings: z.ZodOptional<z.ZodObject<{
3842
4631
  allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4632
+ 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
4633
  }, "strip", z.ZodTypeAny, {
3844
4634
  allowedDomains?: string[] | undefined;
4635
+ allowedAddresses?: string[] | undefined;
3845
4636
  }, {
3846
4637
  allowedDomains?: string[] | undefined;
4638
+ allowedAddresses?: string[] | undefined;
3847
4639
  }>>;
3848
4640
  interface: z.ZodDefault<z.ZodObject<{
3849
4641
  privacyPolicy: z.ZodOptional<z.ZodObject<{
@@ -3953,6 +4745,8 @@ export declare const configSchema: z.ZodObject<{
3953
4745
  }>]>>;
3954
4746
  temporaryChat: z.ZodOptional<z.ZodBoolean>;
3955
4747
  temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
4748
+ autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
4749
+ retentionMode: z.ZodDefault<z.ZodNativeEnum<typeof RetentionMode>>;
3956
4750
  runCode: z.ZodOptional<z.ZodBoolean>;
3957
4751
  webSearch: z.ZodOptional<z.ZodBoolean>;
3958
4752
  peoplePicker: z.ZodOptional<z.ZodObject<{
@@ -3977,6 +4771,7 @@ export declare const configSchema: z.ZodObject<{
3977
4771
  }>>;
3978
4772
  fileSearch: z.ZodOptional<z.ZodBoolean>;
3979
4773
  fileCitations: z.ZodOptional<z.ZodBoolean>;
4774
+ buildInfo: z.ZodOptional<z.ZodBoolean>;
3980
4775
  remoteAgents: z.ZodOptional<z.ZodObject<{
3981
4776
  use: z.ZodOptional<z.ZodBoolean>;
3982
4777
  create: z.ZodOptional<z.ZodBoolean>;
@@ -3993,7 +4788,34 @@ export declare const configSchema: z.ZodObject<{
3993
4788
  share?: boolean | undefined;
3994
4789
  public?: boolean | undefined;
3995
4790
  }>>;
4791
+ skills: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
4792
+ use: z.ZodOptional<z.ZodBoolean>;
4793
+ create: z.ZodOptional<z.ZodBoolean>;
4794
+ share: z.ZodOptional<z.ZodBoolean>;
4795
+ public: z.ZodOptional<z.ZodBoolean>;
4796
+ defaultActiveOnShare: z.ZodOptional<z.ZodBoolean>;
4797
+ }, "strip", z.ZodTypeAny, {
4798
+ use?: boolean | undefined;
4799
+ create?: boolean | undefined;
4800
+ share?: boolean | undefined;
4801
+ public?: boolean | undefined;
4802
+ defaultActiveOnShare?: boolean | undefined;
4803
+ }, {
4804
+ use?: boolean | undefined;
4805
+ create?: boolean | undefined;
4806
+ share?: boolean | undefined;
4807
+ public?: boolean | undefined;
4808
+ defaultActiveOnShare?: boolean | undefined;
4809
+ }>]>>;
3996
4810
  }, "strip", z.ZodTypeAny, {
4811
+ retentionMode: RetentionMode;
4812
+ skills?: boolean | {
4813
+ use?: boolean | undefined;
4814
+ create?: boolean | undefined;
4815
+ share?: boolean | undefined;
4816
+ public?: boolean | undefined;
4817
+ defaultActiveOnShare?: boolean | undefined;
4818
+ } | undefined;
3997
4819
  webSearch?: boolean | undefined;
3998
4820
  parameters?: boolean | undefined;
3999
4821
  mcpServers?: {
@@ -4038,6 +4860,7 @@ export declare const configSchema: z.ZodObject<{
4038
4860
  } | undefined;
4039
4861
  temporaryChat?: boolean | undefined;
4040
4862
  temporaryChatRetention?: number | undefined;
4863
+ autoSubmitFromUrl?: boolean | undefined;
4041
4864
  runCode?: boolean | undefined;
4042
4865
  peoplePicker?: {
4043
4866
  users?: boolean | undefined;
@@ -4049,6 +4872,7 @@ export declare const configSchema: z.ZodObject<{
4049
4872
  } | undefined;
4050
4873
  fileSearch?: boolean | undefined;
4051
4874
  fileCitations?: boolean | undefined;
4875
+ buildInfo?: boolean | undefined;
4052
4876
  remoteAgents?: {
4053
4877
  use?: boolean | undefined;
4054
4878
  create?: boolean | undefined;
@@ -4056,6 +4880,13 @@ export declare const configSchema: z.ZodObject<{
4056
4880
  public?: boolean | undefined;
4057
4881
  } | undefined;
4058
4882
  }, {
4883
+ skills?: boolean | {
4884
+ use?: boolean | undefined;
4885
+ create?: boolean | undefined;
4886
+ share?: boolean | undefined;
4887
+ public?: boolean | undefined;
4888
+ defaultActiveOnShare?: boolean | undefined;
4889
+ } | undefined;
4059
4890
  webSearch?: boolean | undefined;
4060
4891
  parameters?: boolean | undefined;
4061
4892
  mcpServers?: {
@@ -4100,6 +4931,8 @@ export declare const configSchema: z.ZodObject<{
4100
4931
  } | undefined;
4101
4932
  temporaryChat?: boolean | undefined;
4102
4933
  temporaryChatRetention?: number | undefined;
4934
+ autoSubmitFromUrl?: boolean | undefined;
4935
+ retentionMode?: RetentionMode | undefined;
4103
4936
  runCode?: boolean | undefined;
4104
4937
  peoplePicker?: {
4105
4938
  users?: boolean | undefined;
@@ -4111,6 +4944,7 @@ export declare const configSchema: z.ZodObject<{
4111
4944
  } | undefined;
4112
4945
  fileSearch?: boolean | undefined;
4113
4946
  fileCitations?: boolean | undefined;
4947
+ buildInfo?: boolean | undefined;
4114
4948
  remoteAgents?: {
4115
4949
  use?: boolean | undefined;
4116
4950
  create?: boolean | undefined;
@@ -4143,29 +4977,135 @@ export declare const configSchema: z.ZodObject<{
4143
4977
  size?: "normal" | "compact" | "flexible" | "invisible" | undefined;
4144
4978
  } | undefined;
4145
4979
  }>>;
4146
- fileStrategy: z.ZodDefault<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
4980
+ fileStrategy: z.ZodDefault<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
4147
4981
  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]>>;
4982
+ default: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
4983
+ avatar: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
4984
+ image: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
4985
+ document: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
4986
+ skills: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
4152
4987
  }, "strip", z.ZodTypeAny, {
4153
- default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
4154
- avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
4155
- image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
4156
- document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
4988
+ default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
4989
+ avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
4990
+ image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
4991
+ document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
4992
+ skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
4157
4993
  }, {
4158
- default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
4159
- avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
4160
- image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
4161
- document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
4994
+ default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
4995
+ avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
4996
+ image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
4997
+ document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
4998
+ skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
4999
+ }>>;
5000
+ cloudfront: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
5001
+ domain: z.ZodString;
5002
+ distributionId: z.ZodOptional<z.ZodString>;
5003
+ invalidateOnDelete: z.ZodDefault<z.ZodBoolean>;
5004
+ imageSigning: z.ZodDefault<z.ZodEnum<["none", "cookies", "url"]>>;
5005
+ urlExpiry: z.ZodDefault<z.ZodNumber>;
5006
+ cookieExpiry: z.ZodDefault<z.ZodNumber>;
5007
+ cookieDomain: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
5008
+ storageRegion: z.ZodOptional<z.ZodString>;
5009
+ includeRegionInPath: z.ZodDefault<z.ZodBoolean>;
5010
+ requireSignedAccess: z.ZodDefault<z.ZodBoolean>;
5011
+ }, "strip", z.ZodTypeAny, {
5012
+ domain: string;
5013
+ invalidateOnDelete: boolean;
5014
+ imageSigning: "none" | "cookies" | "url";
5015
+ urlExpiry: number;
5016
+ cookieExpiry: number;
5017
+ includeRegionInPath: boolean;
5018
+ requireSignedAccess: boolean;
5019
+ distributionId?: string | undefined;
5020
+ cookieDomain?: string | undefined;
5021
+ storageRegion?: string | undefined;
5022
+ }, {
5023
+ domain: string;
5024
+ distributionId?: string | undefined;
5025
+ invalidateOnDelete?: boolean | undefined;
5026
+ imageSigning?: "none" | "cookies" | "url" | undefined;
5027
+ urlExpiry?: number | undefined;
5028
+ cookieExpiry?: number | undefined;
5029
+ cookieDomain?: string | undefined;
5030
+ storageRegion?: string | undefined;
5031
+ includeRegionInPath?: boolean | undefined;
5032
+ requireSignedAccess?: boolean | undefined;
5033
+ }>, {
5034
+ domain: string;
5035
+ invalidateOnDelete: boolean;
5036
+ imageSigning: "none" | "cookies" | "url";
5037
+ urlExpiry: number;
5038
+ cookieExpiry: number;
5039
+ includeRegionInPath: boolean;
5040
+ requireSignedAccess: boolean;
5041
+ distributionId?: string | undefined;
5042
+ cookieDomain?: string | undefined;
5043
+ storageRegion?: string | undefined;
5044
+ }, {
5045
+ domain: string;
5046
+ distributionId?: string | undefined;
5047
+ invalidateOnDelete?: boolean | undefined;
5048
+ imageSigning?: "none" | "cookies" | "url" | undefined;
5049
+ urlExpiry?: number | undefined;
5050
+ cookieExpiry?: number | undefined;
5051
+ cookieDomain?: string | undefined;
5052
+ storageRegion?: string | undefined;
5053
+ includeRegionInPath?: boolean | undefined;
5054
+ requireSignedAccess?: boolean | undefined;
5055
+ }>, {
5056
+ domain: string;
5057
+ invalidateOnDelete: boolean;
5058
+ imageSigning: "none" | "cookies" | "url";
5059
+ urlExpiry: number;
5060
+ cookieExpiry: number;
5061
+ includeRegionInPath: boolean;
5062
+ requireSignedAccess: boolean;
5063
+ distributionId?: string | undefined;
5064
+ cookieDomain?: string | undefined;
5065
+ storageRegion?: string | undefined;
5066
+ }, {
5067
+ domain: string;
5068
+ distributionId?: string | undefined;
5069
+ invalidateOnDelete?: boolean | undefined;
5070
+ imageSigning?: "none" | "cookies" | "url" | undefined;
5071
+ urlExpiry?: number | undefined;
5072
+ cookieExpiry?: number | undefined;
5073
+ cookieDomain?: string | undefined;
5074
+ storageRegion?: string | undefined;
5075
+ includeRegionInPath?: boolean | undefined;
5076
+ requireSignedAccess?: boolean | undefined;
5077
+ }>, {
5078
+ domain: string;
5079
+ invalidateOnDelete: boolean;
5080
+ imageSigning: "none" | "cookies" | "url";
5081
+ urlExpiry: number;
5082
+ cookieExpiry: number;
5083
+ includeRegionInPath: boolean;
5084
+ requireSignedAccess: boolean;
5085
+ distributionId?: string | undefined;
5086
+ cookieDomain?: string | undefined;
5087
+ storageRegion?: string | undefined;
5088
+ }, {
5089
+ domain: string;
5090
+ distributionId?: string | undefined;
5091
+ invalidateOnDelete?: boolean | undefined;
5092
+ imageSigning?: "none" | "cookies" | "url" | undefined;
5093
+ urlExpiry?: number | undefined;
5094
+ cookieExpiry?: number | undefined;
5095
+ cookieDomain?: string | undefined;
5096
+ storageRegion?: string | undefined;
5097
+ includeRegionInPath?: boolean | undefined;
5098
+ requireSignedAccess?: boolean | undefined;
4162
5099
  }>>;
4163
5100
  actions: z.ZodOptional<z.ZodObject<{
4164
5101
  allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5102
+ 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
5103
  }, "strip", z.ZodTypeAny, {
4166
5104
  allowedDomains?: string[] | undefined;
5105
+ allowedAddresses?: string[] | undefined;
4167
5106
  }, {
4168
5107
  allowedDomains?: string[] | undefined;
5108
+ allowedAddresses?: string[] | undefined;
4169
5109
  }>>;
4170
5110
  registration: z.ZodDefault<z.ZodObject<{
4171
5111
  socialLogins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -4796,6 +5736,13 @@ export declare const configSchema: z.ZodObject<{
4796
5736
  totalSizeLimit?: number | undefined;
4797
5737
  supportedMimeTypes?: string[] | undefined;
4798
5738
  }>>>;
5739
+ skills: z.ZodOptional<z.ZodObject<{
5740
+ fileSizeLimit: z.ZodOptional<z.ZodNumber>;
5741
+ }, "strip", z.ZodTypeAny, {
5742
+ fileSizeLimit?: number | undefined;
5743
+ }, {
5744
+ fileSizeLimit?: number | undefined;
5745
+ }>>;
4799
5746
  serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
4800
5747
  avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
4801
5748
  fileTokenLimit: z.ZodOptional<z.ZodNumber>;
@@ -4843,6 +5790,9 @@ export declare const configSchema: z.ZodObject<{
4843
5790
  text?: {
4844
5791
  supportedMimeTypes?: string[] | undefined;
4845
5792
  } | undefined;
5793
+ skills?: {
5794
+ fileSizeLimit?: number | undefined;
5795
+ } | undefined;
4846
5796
  ocr?: {
4847
5797
  supportedMimeTypes?: string[] | undefined;
4848
5798
  } | undefined;
@@ -4870,6 +5820,9 @@ export declare const configSchema: z.ZodObject<{
4870
5820
  text?: {
4871
5821
  supportedMimeTypes?: string[] | undefined;
4872
5822
  } | undefined;
5823
+ skills?: {
5824
+ fileSizeLimit?: number | undefined;
5825
+ } | undefined;
4873
5826
  ocr?: {
4874
5827
  supportedMimeTypes?: string[] | undefined;
4875
5828
  } | undefined;
@@ -4897,7 +5850,7 @@ export declare const configSchema: z.ZodObject<{
4897
5850
  modelSpecs: z.ZodOptional<z.ZodObject<{
4898
5851
  enforce: z.ZodDefault<z.ZodBoolean>;
4899
5852
  prioritize: z.ZodDefault<z.ZodBoolean>;
4900
- list: z.ZodArray<z.ZodObject<{
5853
+ list: z.ZodDefault<z.ZodArray<z.ZodObject<{
4901
5854
  name: z.ZodString;
4902
5855
  label: z.ZodString;
4903
5856
  preset: z.ZodObject<Omit<{
@@ -4905,6 +5858,7 @@ export declare const configSchema: z.ZodObject<{
4905
5858
  greeting: z.ZodOptional<z.ZodString>;
4906
5859
  endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
4907
5860
  expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5861
+ isTemporary: z.ZodOptional<z.ZodBoolean>;
4908
5862
  messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4909
5863
  isArchived: z.ZodOptional<z.ZodBoolean>;
4910
5864
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -5097,9 +6051,12 @@ export declare const configSchema: z.ZodObject<{
5097
6051
  defaultPreset: z.ZodOptional<z.ZodBoolean>;
5098
6052
  order: z.ZodOptional<z.ZodNumber>;
5099
6053
  endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
5100
- }, "conversationId" | "title" | "iconURL" | "greeting" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
6054
+ }, "conversationId" | "title" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
5101
6055
  endpoint: string | null;
6056
+ iconURL?: string | null | undefined;
6057
+ greeting?: string | undefined;
5102
6058
  endpointType?: EModelEndpoint | null | undefined;
6059
+ isTemporary?: boolean | undefined;
5103
6060
  tools?: string[] | {
5104
6061
  name: string;
5105
6062
  pluginKey: string;
@@ -5191,7 +6148,10 @@ export declare const configSchema: z.ZodObject<{
5191
6148
  stop?: string[] | undefined;
5192
6149
  }, {
5193
6150
  endpoint: string | null;
6151
+ iconURL?: string | null | undefined;
6152
+ greeting?: string | undefined;
5194
6153
  endpointType?: EModelEndpoint | null | undefined;
6154
+ isTemporary?: boolean | undefined;
5195
6155
  tools?: string[] | {
5196
6156
  name: string;
5197
6157
  pluginKey: string;
@@ -5291,6 +6251,7 @@ export declare const configSchema: z.ZodObject<{
5291
6251
  showIconInHeader: z.ZodOptional<z.ZodBoolean>;
5292
6252
  iconURL: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>>;
5293
6253
  authType: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").AuthType>>;
6254
+ hideBadgeRow: z.ZodOptional<z.ZodBoolean>;
5294
6255
  webSearch: z.ZodOptional<z.ZodBoolean>;
5295
6256
  fileSearch: z.ZodOptional<z.ZodBoolean>;
5296
6257
  executeCode: z.ZodOptional<z.ZodBoolean>;
@@ -5301,7 +6262,10 @@ export declare const configSchema: z.ZodObject<{
5301
6262
  name: string;
5302
6263
  preset: {
5303
6264
  endpoint: string | null;
6265
+ iconURL?: string | null | undefined;
6266
+ greeting?: string | undefined;
5304
6267
  endpointType?: EModelEndpoint | null | undefined;
6268
+ isTemporary?: boolean | undefined;
5305
6269
  tools?: string[] | {
5306
6270
  name: string;
5307
6271
  pluginKey: string;
@@ -5405,13 +6369,17 @@ export declare const configSchema: z.ZodObject<{
5405
6369
  showIconInMenu?: boolean | undefined;
5406
6370
  showIconInHeader?: boolean | undefined;
5407
6371
  authType?: import("./schemas").AuthType | undefined;
6372
+ hideBadgeRow?: boolean | undefined;
5408
6373
  executeCode?: boolean | undefined;
5409
6374
  }, {
5410
6375
  label: string;
5411
6376
  name: string;
5412
6377
  preset: {
5413
6378
  endpoint: string | null;
6379
+ iconURL?: string | null | undefined;
6380
+ greeting?: string | undefined;
5414
6381
  endpointType?: EModelEndpoint | null | undefined;
6382
+ isTemporary?: boolean | undefined;
5415
6383
  tools?: string[] | {
5416
6384
  name: string;
5417
6385
  pluginKey: string;
@@ -5515,8 +6483,9 @@ export declare const configSchema: z.ZodObject<{
5515
6483
  showIconInMenu?: boolean | undefined;
5516
6484
  showIconInHeader?: boolean | undefined;
5517
6485
  authType?: import("./schemas").AuthType | undefined;
6486
+ hideBadgeRow?: boolean | undefined;
5518
6487
  executeCode?: boolean | undefined;
5519
- }>, "many">;
6488
+ }>, "many">>;
5520
6489
  addedEndpoints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
5521
6490
  }, "strip", z.ZodTypeAny, {
5522
6491
  enforce: boolean;
@@ -5526,7 +6495,10 @@ export declare const configSchema: z.ZodObject<{
5526
6495
  name: string;
5527
6496
  preset: {
5528
6497
  endpoint: string | null;
6498
+ iconURL?: string | null | undefined;
6499
+ greeting?: string | undefined;
5529
6500
  endpointType?: EModelEndpoint | null | undefined;
6501
+ isTemporary?: boolean | undefined;
5530
6502
  tools?: string[] | {
5531
6503
  name: string;
5532
6504
  pluginKey: string;
@@ -5630,16 +6602,22 @@ export declare const configSchema: z.ZodObject<{
5630
6602
  showIconInMenu?: boolean | undefined;
5631
6603
  showIconInHeader?: boolean | undefined;
5632
6604
  authType?: import("./schemas").AuthType | undefined;
6605
+ hideBadgeRow?: boolean | undefined;
5633
6606
  executeCode?: boolean | undefined;
5634
6607
  }[];
5635
6608
  addedEndpoints?: string[] | undefined;
5636
6609
  }, {
5637
- list: {
6610
+ enforce?: boolean | undefined;
6611
+ prioritize?: boolean | undefined;
6612
+ list?: {
5638
6613
  label: string;
5639
6614
  name: string;
5640
6615
  preset: {
5641
6616
  endpoint: string | null;
6617
+ iconURL?: string | null | undefined;
6618
+ greeting?: string | undefined;
5642
6619
  endpointType?: EModelEndpoint | null | undefined;
6620
+ isTemporary?: boolean | undefined;
5643
6621
  tools?: string[] | {
5644
6622
  name: string;
5645
6623
  pluginKey: string;
@@ -5743,13 +6721,13 @@ export declare const configSchema: z.ZodObject<{
5743
6721
  showIconInMenu?: boolean | undefined;
5744
6722
  showIconInHeader?: boolean | undefined;
5745
6723
  authType?: import("./schemas").AuthType | undefined;
6724
+ hideBadgeRow?: boolean | undefined;
5746
6725
  executeCode?: boolean | undefined;
5747
- }[];
5748
- enforce?: boolean | undefined;
5749
- prioritize?: boolean | undefined;
6726
+ }[] | undefined;
5750
6727
  addedEndpoints?: string[] | undefined;
5751
6728
  }>>;
5752
6729
  endpoints: z.ZodOptional<z.ZodEffects<z.ZodObject<{
6730
+ 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
6731
  all: z.ZodOptional<z.ZodObject<Omit<{
5754
6732
  streamRate: z.ZodOptional<z.ZodNumber>;
5755
6733
  baseURL: z.ZodOptional<z.ZodString>;
@@ -6310,6 +7288,96 @@ export declare const configSchema: z.ZodObject<{
6310
7288
  minRelevanceScore: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
6311
7289
  allowedProviders: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
6312
7290
  capabilities: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof AgentCapabilities>, "many">>>;
7291
+ remoteApi: z.ZodOptional<z.ZodObject<{
7292
+ auth: z.ZodOptional<z.ZodObject<{
7293
+ apiKey: z.ZodOptional<z.ZodObject<{
7294
+ enabled: z.ZodDefault<z.ZodBoolean>;
7295
+ }, "strip", z.ZodTypeAny, {
7296
+ enabled: boolean;
7297
+ }, {
7298
+ enabled?: boolean | undefined;
7299
+ }>>;
7300
+ oidc: z.ZodOptional<z.ZodEffects<z.ZodObject<{
7301
+ enabled: z.ZodDefault<z.ZodBoolean>;
7302
+ issuer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
7303
+ audience: z.ZodOptional<z.ZodString>;
7304
+ jwksUri: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
7305
+ scope: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
7306
+ }, "strip", z.ZodTypeAny, {
7307
+ enabled: boolean;
7308
+ scope?: string | undefined;
7309
+ audience?: string | undefined;
7310
+ issuer?: string | undefined;
7311
+ jwksUri?: string | undefined;
7312
+ }, {
7313
+ enabled?: boolean | undefined;
7314
+ scope?: string | undefined;
7315
+ audience?: string | undefined;
7316
+ issuer?: string | undefined;
7317
+ jwksUri?: string | undefined;
7318
+ }>, {
7319
+ enabled: boolean;
7320
+ scope?: string | undefined;
7321
+ audience?: string | undefined;
7322
+ issuer?: string | undefined;
7323
+ jwksUri?: string | undefined;
7324
+ }, {
7325
+ enabled?: boolean | undefined;
7326
+ scope?: string | undefined;
7327
+ audience?: string | undefined;
7328
+ issuer?: string | undefined;
7329
+ jwksUri?: string | undefined;
7330
+ }>>;
7331
+ }, "strip", z.ZodTypeAny, {
7332
+ apiKey?: {
7333
+ enabled: boolean;
7334
+ } | undefined;
7335
+ oidc?: {
7336
+ enabled: boolean;
7337
+ scope?: string | undefined;
7338
+ audience?: string | undefined;
7339
+ issuer?: string | undefined;
7340
+ jwksUri?: string | undefined;
7341
+ } | undefined;
7342
+ }, {
7343
+ apiKey?: {
7344
+ enabled?: boolean | undefined;
7345
+ } | undefined;
7346
+ oidc?: {
7347
+ enabled?: boolean | undefined;
7348
+ scope?: string | undefined;
7349
+ audience?: string | undefined;
7350
+ issuer?: string | undefined;
7351
+ jwksUri?: string | undefined;
7352
+ } | undefined;
7353
+ }>>;
7354
+ }, "strip", z.ZodTypeAny, {
7355
+ auth?: {
7356
+ apiKey?: {
7357
+ enabled: boolean;
7358
+ } | undefined;
7359
+ oidc?: {
7360
+ enabled: boolean;
7361
+ scope?: string | undefined;
7362
+ audience?: string | undefined;
7363
+ issuer?: string | undefined;
7364
+ jwksUri?: string | undefined;
7365
+ } | undefined;
7366
+ } | undefined;
7367
+ }, {
7368
+ auth?: {
7369
+ apiKey?: {
7370
+ enabled?: boolean | undefined;
7371
+ } | undefined;
7372
+ oidc?: {
7373
+ enabled?: boolean | undefined;
7374
+ scope?: string | undefined;
7375
+ audience?: string | undefined;
7376
+ issuer?: string | undefined;
7377
+ jwksUri?: string | undefined;
7378
+ } | undefined;
7379
+ } | undefined;
7380
+ }>>;
6313
7381
  }, "strip", z.ZodTypeAny, {
6314
7382
  disableBuilder: boolean;
6315
7383
  capabilities: AgentCapabilities[];
@@ -6327,6 +7395,20 @@ export declare const configSchema: z.ZodObject<{
6327
7395
  recursionLimit?: number | undefined;
6328
7396
  maxRecursionLimit?: number | undefined;
6329
7397
  allowedProviders?: string[] | undefined;
7398
+ remoteApi?: {
7399
+ auth?: {
7400
+ apiKey?: {
7401
+ enabled: boolean;
7402
+ } | undefined;
7403
+ oidc?: {
7404
+ enabled: boolean;
7405
+ scope?: string | undefined;
7406
+ audience?: string | undefined;
7407
+ issuer?: string | undefined;
7408
+ jwksUri?: string | undefined;
7409
+ } | undefined;
7410
+ } | undefined;
7411
+ } | undefined;
6330
7412
  }, {
6331
7413
  streamRate?: number | undefined;
6332
7414
  titlePrompt?: string | undefined;
@@ -6344,6 +7426,20 @@ export declare const configSchema: z.ZodObject<{
6344
7426
  maxCitationsPerFile?: number | undefined;
6345
7427
  minRelevanceScore?: number | undefined;
6346
7428
  allowedProviders?: string[] | undefined;
7429
+ remoteApi?: {
7430
+ auth?: {
7431
+ apiKey?: {
7432
+ enabled?: boolean | undefined;
7433
+ } | undefined;
7434
+ oidc?: {
7435
+ enabled?: boolean | undefined;
7436
+ scope?: string | undefined;
7437
+ audience?: string | undefined;
7438
+ issuer?: string | undefined;
7439
+ jwksUri?: string | undefined;
7440
+ } | undefined;
7441
+ } | undefined;
7442
+ } | undefined;
6347
7443
  }>>>;
6348
7444
  custom: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
6349
7445
  streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -6718,6 +7814,22 @@ export declare const configSchema: z.ZodObject<{
6718
7814
  } & {
6719
7815
  availableRegions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6720
7816
  models: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7817
+ guardrailConfig: z.ZodOptional<z.ZodObject<{
7818
+ guardrailIdentifier: z.ZodString;
7819
+ guardrailVersion: z.ZodString;
7820
+ trace: z.ZodOptional<z.ZodEnum<["enabled", "disabled", "enabled_full"]>>;
7821
+ streamProcessingMode: z.ZodOptional<z.ZodEnum<["sync", "async"]>>;
7822
+ }, "strip", z.ZodTypeAny, {
7823
+ guardrailIdentifier: string;
7824
+ guardrailVersion: string;
7825
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
7826
+ streamProcessingMode?: "async" | "sync" | undefined;
7827
+ }, {
7828
+ guardrailIdentifier: string;
7829
+ guardrailVersion: string;
7830
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
7831
+ streamProcessingMode?: "async" | "sync" | undefined;
7832
+ }>>;
6721
7833
  inferenceProfiles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
6722
7834
  }, "strip", z.ZodTypeAny, {
6723
7835
  baseURL?: string | undefined;
@@ -6731,6 +7843,12 @@ export declare const configSchema: z.ZodObject<{
6731
7843
  maxToolResultChars?: number | undefined;
6732
7844
  models?: string[] | undefined;
6733
7845
  availableRegions?: string[] | undefined;
7846
+ guardrailConfig?: {
7847
+ guardrailIdentifier: string;
7848
+ guardrailVersion: string;
7849
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
7850
+ streamProcessingMode?: "async" | "sync" | undefined;
7851
+ } | undefined;
6734
7852
  inferenceProfiles?: Record<string, string> | undefined;
6735
7853
  }, {
6736
7854
  baseURL?: string | undefined;
@@ -6744,9 +7862,16 @@ export declare const configSchema: z.ZodObject<{
6744
7862
  maxToolResultChars?: number | undefined;
6745
7863
  models?: string[] | undefined;
6746
7864
  availableRegions?: string[] | undefined;
7865
+ guardrailConfig?: {
7866
+ guardrailIdentifier: string;
7867
+ guardrailVersion: string;
7868
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
7869
+ streamProcessingMode?: "async" | "sync" | undefined;
7870
+ } | undefined;
6747
7871
  inferenceProfiles?: Record<string, string> | undefined;
6748
7872
  }>>;
6749
7873
  }, "strict", z.ZodTypeAny, {
7874
+ allowedAddresses?: string[] | undefined;
6750
7875
  azureOpenAI?: ({
6751
7876
  groups: ({
6752
7877
  group: string;
@@ -6897,6 +8022,20 @@ export declare const configSchema: z.ZodObject<{
6897
8022
  recursionLimit?: number | undefined;
6898
8023
  maxRecursionLimit?: number | undefined;
6899
8024
  allowedProviders?: string[] | undefined;
8025
+ remoteApi?: {
8026
+ auth?: {
8027
+ apiKey?: {
8028
+ enabled: boolean;
8029
+ } | undefined;
8030
+ oidc?: {
8031
+ enabled: boolean;
8032
+ scope?: string | undefined;
8033
+ audience?: string | undefined;
8034
+ issuer?: string | undefined;
8035
+ jwksUri?: string | undefined;
8036
+ } | undefined;
8037
+ } | undefined;
8038
+ } | undefined;
6900
8039
  } | undefined;
6901
8040
  custom?: {
6902
8041
  iconURL?: string | undefined;
@@ -6975,6 +8114,12 @@ export declare const configSchema: z.ZodObject<{
6975
8114
  maxToolResultChars?: number | undefined;
6976
8115
  models?: string[] | undefined;
6977
8116
  availableRegions?: string[] | undefined;
8117
+ guardrailConfig?: {
8118
+ guardrailIdentifier: string;
8119
+ guardrailVersion: string;
8120
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
8121
+ streamProcessingMode?: "async" | "sync" | undefined;
8122
+ } | undefined;
6978
8123
  inferenceProfiles?: Record<string, string> | undefined;
6979
8124
  } | undefined;
6980
8125
  all?: {
@@ -6988,6 +8133,7 @@ export declare const configSchema: z.ZodObject<{
6988
8133
  maxToolResultChars?: number | undefined;
6989
8134
  } | undefined;
6990
8135
  }, {
8136
+ allowedAddresses?: string[] | undefined;
6991
8137
  azureOpenAI?: ({
6992
8138
  groups: ({
6993
8139
  group: string;
@@ -7138,6 +8284,20 @@ export declare const configSchema: z.ZodObject<{
7138
8284
  maxCitationsPerFile?: number | undefined;
7139
8285
  minRelevanceScore?: number | undefined;
7140
8286
  allowedProviders?: string[] | undefined;
8287
+ remoteApi?: {
8288
+ auth?: {
8289
+ apiKey?: {
8290
+ enabled?: boolean | undefined;
8291
+ } | undefined;
8292
+ oidc?: {
8293
+ enabled?: boolean | undefined;
8294
+ scope?: string | undefined;
8295
+ audience?: string | undefined;
8296
+ issuer?: string | undefined;
8297
+ jwksUri?: string | undefined;
8298
+ } | undefined;
8299
+ } | undefined;
8300
+ } | undefined;
7141
8301
  } | undefined;
7142
8302
  custom?: {
7143
8303
  iconURL?: string | undefined;
@@ -7216,6 +8376,12 @@ export declare const configSchema: z.ZodObject<{
7216
8376
  maxToolResultChars?: number | undefined;
7217
8377
  models?: string[] | undefined;
7218
8378
  availableRegions?: string[] | undefined;
8379
+ guardrailConfig?: {
8380
+ guardrailIdentifier: string;
8381
+ guardrailVersion: string;
8382
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
8383
+ streamProcessingMode?: "async" | "sync" | undefined;
8384
+ } | undefined;
7219
8385
  inferenceProfiles?: Record<string, string> | undefined;
7220
8386
  } | undefined;
7221
8387
  all?: {
@@ -7229,6 +8395,7 @@ export declare const configSchema: z.ZodObject<{
7229
8395
  maxToolResultChars?: number | undefined;
7230
8396
  } | undefined;
7231
8397
  }>, {
8398
+ allowedAddresses?: string[] | undefined;
7232
8399
  azureOpenAI?: ({
7233
8400
  groups: ({
7234
8401
  group: string;
@@ -7379,6 +8546,20 @@ export declare const configSchema: z.ZodObject<{
7379
8546
  recursionLimit?: number | undefined;
7380
8547
  maxRecursionLimit?: number | undefined;
7381
8548
  allowedProviders?: string[] | undefined;
8549
+ remoteApi?: {
8550
+ auth?: {
8551
+ apiKey?: {
8552
+ enabled: boolean;
8553
+ } | undefined;
8554
+ oidc?: {
8555
+ enabled: boolean;
8556
+ scope?: string | undefined;
8557
+ audience?: string | undefined;
8558
+ issuer?: string | undefined;
8559
+ jwksUri?: string | undefined;
8560
+ } | undefined;
8561
+ } | undefined;
8562
+ } | undefined;
7382
8563
  } | undefined;
7383
8564
  custom?: {
7384
8565
  iconURL?: string | undefined;
@@ -7457,6 +8638,12 @@ export declare const configSchema: z.ZodObject<{
7457
8638
  maxToolResultChars?: number | undefined;
7458
8639
  models?: string[] | undefined;
7459
8640
  availableRegions?: string[] | undefined;
8641
+ guardrailConfig?: {
8642
+ guardrailIdentifier: string;
8643
+ guardrailVersion: string;
8644
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
8645
+ streamProcessingMode?: "async" | "sync" | undefined;
8646
+ } | undefined;
7460
8647
  inferenceProfiles?: Record<string, string> | undefined;
7461
8648
  } | undefined;
7462
8649
  all?: {
@@ -7470,6 +8657,7 @@ export declare const configSchema: z.ZodObject<{
7470
8657
  maxToolResultChars?: number | undefined;
7471
8658
  } | undefined;
7472
8659
  }, {
8660
+ allowedAddresses?: string[] | undefined;
7473
8661
  azureOpenAI?: ({
7474
8662
  groups: ({
7475
8663
  group: string;
@@ -7620,6 +8808,20 @@ export declare const configSchema: z.ZodObject<{
7620
8808
  maxCitationsPerFile?: number | undefined;
7621
8809
  minRelevanceScore?: number | undefined;
7622
8810
  allowedProviders?: string[] | undefined;
8811
+ remoteApi?: {
8812
+ auth?: {
8813
+ apiKey?: {
8814
+ enabled?: boolean | undefined;
8815
+ } | undefined;
8816
+ oidc?: {
8817
+ enabled?: boolean | undefined;
8818
+ scope?: string | undefined;
8819
+ audience?: string | undefined;
8820
+ issuer?: string | undefined;
8821
+ jwksUri?: string | undefined;
8822
+ } | undefined;
8823
+ } | undefined;
8824
+ } | undefined;
7623
8825
  } | undefined;
7624
8826
  custom?: {
7625
8827
  iconURL?: string | undefined;
@@ -7698,6 +8900,12 @@ export declare const configSchema: z.ZodObject<{
7698
8900
  maxToolResultChars?: number | undefined;
7699
8901
  models?: string[] | undefined;
7700
8902
  availableRegions?: string[] | undefined;
8903
+ guardrailConfig?: {
8904
+ guardrailIdentifier: string;
8905
+ guardrailVersion: string;
8906
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
8907
+ streamProcessingMode?: "async" | "sync" | undefined;
8908
+ } | undefined;
7701
8909
  inferenceProfiles?: Record<string, string> | undefined;
7702
8910
  } | undefined;
7703
8911
  all?: {
@@ -7716,6 +8924,14 @@ export declare const configSchema: z.ZodObject<{
7716
8924
  cache: boolean;
7717
8925
  imageOutputType: EImageOutputType;
7718
8926
  interface: {
8927
+ retentionMode: RetentionMode;
8928
+ skills?: boolean | {
8929
+ use?: boolean | undefined;
8930
+ create?: boolean | undefined;
8931
+ share?: boolean | undefined;
8932
+ public?: boolean | undefined;
8933
+ defaultActiveOnShare?: boolean | undefined;
8934
+ } | undefined;
7719
8935
  webSearch?: boolean | undefined;
7720
8936
  parameters?: boolean | undefined;
7721
8937
  mcpServers?: {
@@ -7760,6 +8976,7 @@ export declare const configSchema: z.ZodObject<{
7760
8976
  } | undefined;
7761
8977
  temporaryChat?: boolean | undefined;
7762
8978
  temporaryChatRetention?: number | undefined;
8979
+ autoSubmitFromUrl?: boolean | undefined;
7763
8980
  runCode?: boolean | undefined;
7764
8981
  peoplePicker?: {
7765
8982
  users?: boolean | undefined;
@@ -7771,6 +8988,7 @@ export declare const configSchema: z.ZodObject<{
7771
8988
  } | undefined;
7772
8989
  fileSearch?: boolean | undefined;
7773
8990
  fileCitations?: boolean | undefined;
8991
+ buildInfo?: boolean | undefined;
7774
8992
  remoteAgents?: {
7775
8993
  use?: boolean | undefined;
7776
8994
  create?: boolean | undefined;
@@ -7778,11 +8996,23 @@ export declare const configSchema: z.ZodObject<{
7778
8996
  public?: boolean | undefined;
7779
8997
  } | undefined;
7780
8998
  };
7781
- fileStrategy: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3;
8999
+ fileStrategy: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront;
7782
9000
  registration: {
7783
9001
  allowedDomains?: string[] | undefined;
7784
9002
  socialLogins?: string[] | undefined;
7785
9003
  };
9004
+ cloudfront?: {
9005
+ domain: string;
9006
+ invalidateOnDelete: boolean;
9007
+ imageSigning: "none" | "cookies" | "url";
9008
+ urlExpiry: number;
9009
+ cookieExpiry: number;
9010
+ includeRegionInPath: boolean;
9011
+ requireSignedAccess: boolean;
9012
+ distributionId?: string | undefined;
9013
+ cookieDomain?: string | undefined;
9014
+ storageRegion?: string | undefined;
9015
+ } | undefined;
7786
9016
  ocr?: {
7787
9017
  apiKey: string;
7788
9018
  baseURL: string;
@@ -7796,6 +9026,9 @@ export declare const configSchema: z.ZodObject<{
7796
9026
  firecrawlApiKey: string;
7797
9027
  firecrawlApiUrl: string;
7798
9028
  firecrawlVersion: string;
9029
+ tavilyApiKey: string;
9030
+ tavilySearchUrl: string;
9031
+ tavilyExtractUrl: string;
7799
9032
  jinaApiKey: string;
7800
9033
  jinaApiUrl: string;
7801
9034
  cohereApiKey: string;
@@ -7831,6 +9064,29 @@ export declare const configSchema: z.ZodObject<{
7831
9064
  tag?: string | null | undefined;
7832
9065
  } | undefined;
7833
9066
  } | undefined;
9067
+ tavilySearchOptions?: {
9068
+ safeSearch?: boolean | undefined;
9069
+ timeout?: number | undefined;
9070
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
9071
+ maxResults?: number | undefined;
9072
+ includeImages?: boolean | undefined;
9073
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
9074
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
9075
+ includeDomains?: string[] | undefined;
9076
+ excludeDomains?: string[] | undefined;
9077
+ topic?: "general" | "news" | "finance" | undefined;
9078
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
9079
+ includeImageDescriptions?: boolean | undefined;
9080
+ includeFavicon?: boolean | undefined;
9081
+ chunksPerSource?: number | undefined;
9082
+ } | undefined;
9083
+ tavilyScraperOptions?: {
9084
+ timeout?: number | undefined;
9085
+ includeImages?: boolean | undefined;
9086
+ includeFavicon?: boolean | undefined;
9087
+ extractDepth?: "advanced" | "basic" | undefined;
9088
+ format?: "text" | "markdown" | undefined;
9089
+ } | undefined;
7834
9090
  } | undefined;
7835
9091
  memory?: {
7836
9092
  charLimit: number;
@@ -7841,9 +9097,11 @@ export declare const configSchema: z.ZodObject<{
7841
9097
  tokenLimit?: number | undefined;
7842
9098
  agent?: {
7843
9099
  id: string;
9100
+ enabled?: boolean | undefined;
7844
9101
  } | {
7845
9102
  model: string;
7846
9103
  provider: string;
9104
+ enabled?: boolean | undefined;
7847
9105
  instructions?: string | undefined;
7848
9106
  model_parameters?: Record<string, string | number | boolean> | undefined;
7849
9107
  } | undefined;
@@ -7851,8 +9109,8 @@ export declare const configSchema: z.ZodObject<{
7851
9109
  summarization?: {
7852
9110
  model?: string | undefined;
7853
9111
  prompt?: string | undefined;
7854
- provider?: string | undefined;
7855
9112
  enabled?: boolean | undefined;
9113
+ provider?: string | undefined;
7856
9114
  parameters?: Record<string, string | number | boolean | null> | undefined;
7857
9115
  trigger?: {
7858
9116
  value: number;
@@ -7886,7 +9144,7 @@ export declare const configSchema: z.ZodObject<{
7886
9144
  description?: string | undefined;
7887
9145
  apiKey?: {
7888
9146
  source: "user" | "admin";
7889
- authorization_type: "custom" | "basic" | "bearer";
9147
+ authorization_type: "basic" | "custom" | "bearer";
7890
9148
  key?: string | undefined;
7891
9149
  custom_header?: string | undefined;
7892
9150
  } | undefined;
@@ -7911,6 +9169,8 @@ export declare const configSchema: z.ZodObject<{
7911
9169
  response_types_supported?: string[] | undefined;
7912
9170
  code_challenge_methods_supported?: string[] | undefined;
7913
9171
  skip_code_challenge_check?: boolean | undefined;
9172
+ audience?: string | undefined;
9173
+ forward_audience_on_refresh?: boolean | undefined;
7914
9174
  revocation_endpoint?: string | undefined;
7915
9175
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
7916
9176
  } | undefined;
@@ -7928,7 +9188,7 @@ export declare const configSchema: z.ZodObject<{
7928
9188
  description?: string | undefined;
7929
9189
  apiKey?: {
7930
9190
  source: "user" | "admin";
7931
- authorization_type: "custom" | "basic" | "bearer";
9191
+ authorization_type: "basic" | "custom" | "bearer";
7932
9192
  key?: string | undefined;
7933
9193
  custom_header?: string | undefined;
7934
9194
  } | undefined;
@@ -7953,6 +9213,8 @@ export declare const configSchema: z.ZodObject<{
7953
9213
  response_types_supported?: string[] | undefined;
7954
9214
  code_challenge_methods_supported?: string[] | undefined;
7955
9215
  skip_code_challenge_check?: boolean | undefined;
9216
+ audience?: string | undefined;
9217
+ forward_audience_on_refresh?: boolean | undefined;
7956
9218
  revocation_endpoint?: string | undefined;
7957
9219
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
7958
9220
  } | undefined;
@@ -7968,7 +9230,7 @@ export declare const configSchema: z.ZodObject<{
7968
9230
  description?: string | undefined;
7969
9231
  apiKey?: {
7970
9232
  source: "user" | "admin";
7971
- authorization_type: "custom" | "basic" | "bearer";
9233
+ authorization_type: "basic" | "custom" | "bearer";
7972
9234
  key?: string | undefined;
7973
9235
  custom_header?: string | undefined;
7974
9236
  } | undefined;
@@ -7994,6 +9256,8 @@ export declare const configSchema: z.ZodObject<{
7994
9256
  response_types_supported?: string[] | undefined;
7995
9257
  code_challenge_methods_supported?: string[] | undefined;
7996
9258
  skip_code_challenge_check?: boolean | undefined;
9259
+ audience?: string | undefined;
9260
+ forward_audience_on_refresh?: boolean | undefined;
7997
9261
  revocation_endpoint?: string | undefined;
7998
9262
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
7999
9263
  } | undefined;
@@ -8002,6 +9266,7 @@ export declare const configSchema: z.ZodObject<{
8002
9266
  title: string;
8003
9267
  description: string;
8004
9268
  }> | undefined;
9269
+ proxy?: string | undefined;
8005
9270
  } | {
8006
9271
  type: "streamable-http" | "http";
8007
9272
  url: string;
@@ -8009,7 +9274,7 @@ export declare const configSchema: z.ZodObject<{
8009
9274
  description?: string | undefined;
8010
9275
  apiKey?: {
8011
9276
  source: "user" | "admin";
8012
- authorization_type: "custom" | "basic" | "bearer";
9277
+ authorization_type: "basic" | "custom" | "bearer";
8013
9278
  key?: string | undefined;
8014
9279
  custom_header?: string | undefined;
8015
9280
  } | undefined;
@@ -8035,6 +9300,8 @@ export declare const configSchema: z.ZodObject<{
8035
9300
  response_types_supported?: string[] | undefined;
8036
9301
  code_challenge_methods_supported?: string[] | undefined;
8037
9302
  skip_code_challenge_check?: boolean | undefined;
9303
+ audience?: string | undefined;
9304
+ forward_audience_on_refresh?: boolean | undefined;
8038
9305
  revocation_endpoint?: string | undefined;
8039
9306
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
8040
9307
  } | undefined;
@@ -8043,9 +9310,11 @@ export declare const configSchema: z.ZodObject<{
8043
9310
  title: string;
8044
9311
  description: string;
8045
9312
  }> | undefined;
9313
+ proxy?: string | undefined;
8046
9314
  }> | undefined;
8047
9315
  mcpSettings?: {
8048
9316
  allowedDomains?: string[] | undefined;
9317
+ allowedAddresses?: string[] | undefined;
8049
9318
  } | undefined;
8050
9319
  turnstile?: {
8051
9320
  siteKey: string;
@@ -8055,13 +9324,15 @@ export declare const configSchema: z.ZodObject<{
8055
9324
  } | undefined;
8056
9325
  } | undefined;
8057
9326
  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;
9327
+ default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
9328
+ avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
9329
+ image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
9330
+ document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
9331
+ skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
8062
9332
  } | undefined;
8063
9333
  actions?: {
8064
9334
  allowedDomains?: string[] | undefined;
9335
+ allowedAddresses?: string[] | undefined;
8065
9336
  } | undefined;
8066
9337
  balance?: {
8067
9338
  enabled: boolean;
@@ -8171,6 +9442,7 @@ export declare const configSchema: z.ZodObject<{
8171
9442
  } | undefined;
8172
9443
  } | undefined;
8173
9444
  endpoints?: {
9445
+ allowedAddresses?: string[] | undefined;
8174
9446
  azureOpenAI?: ({
8175
9447
  groups: ({
8176
9448
  group: string;
@@ -8321,6 +9593,20 @@ export declare const configSchema: z.ZodObject<{
8321
9593
  recursionLimit?: number | undefined;
8322
9594
  maxRecursionLimit?: number | undefined;
8323
9595
  allowedProviders?: string[] | undefined;
9596
+ remoteApi?: {
9597
+ auth?: {
9598
+ apiKey?: {
9599
+ enabled: boolean;
9600
+ } | undefined;
9601
+ oidc?: {
9602
+ enabled: boolean;
9603
+ scope?: string | undefined;
9604
+ audience?: string | undefined;
9605
+ issuer?: string | undefined;
9606
+ jwksUri?: string | undefined;
9607
+ } | undefined;
9608
+ } | undefined;
9609
+ } | undefined;
8324
9610
  } | undefined;
8325
9611
  custom?: {
8326
9612
  iconURL?: string | undefined;
@@ -8399,6 +9685,12 @@ export declare const configSchema: z.ZodObject<{
8399
9685
  maxToolResultChars?: number | undefined;
8400
9686
  models?: string[] | undefined;
8401
9687
  availableRegions?: string[] | undefined;
9688
+ guardrailConfig?: {
9689
+ guardrailIdentifier: string;
9690
+ guardrailVersion: string;
9691
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
9692
+ streamProcessingMode?: "async" | "sync" | undefined;
9693
+ } | undefined;
8402
9694
  inferenceProfiles?: Record<string, string> | undefined;
8403
9695
  } | undefined;
8404
9696
  all?: {
@@ -8416,6 +9708,9 @@ export declare const configSchema: z.ZodObject<{
8416
9708
  text?: {
8417
9709
  supportedMimeTypes?: string[] | undefined;
8418
9710
  } | undefined;
9711
+ skills?: {
9712
+ fileSizeLimit?: number | undefined;
9713
+ } | undefined;
8419
9714
  ocr?: {
8420
9715
  supportedMimeTypes?: string[] | undefined;
8421
9716
  } | undefined;
@@ -8448,7 +9743,10 @@ export declare const configSchema: z.ZodObject<{
8448
9743
  name: string;
8449
9744
  preset: {
8450
9745
  endpoint: string | null;
9746
+ iconURL?: string | null | undefined;
9747
+ greeting?: string | undefined;
8451
9748
  endpointType?: EModelEndpoint | null | undefined;
9749
+ isTemporary?: boolean | undefined;
8452
9750
  tools?: string[] | {
8453
9751
  name: string;
8454
9752
  pluginKey: string;
@@ -8552,12 +9850,25 @@ export declare const configSchema: z.ZodObject<{
8552
9850
  showIconInMenu?: boolean | undefined;
8553
9851
  showIconInHeader?: boolean | undefined;
8554
9852
  authType?: import("./schemas").AuthType | undefined;
9853
+ hideBadgeRow?: boolean | undefined;
8555
9854
  executeCode?: boolean | undefined;
8556
9855
  }[];
8557
9856
  addedEndpoints?: string[] | undefined;
8558
9857
  } | undefined;
8559
9858
  }, {
8560
9859
  version: string;
9860
+ cloudfront?: {
9861
+ domain: string;
9862
+ distributionId?: string | undefined;
9863
+ invalidateOnDelete?: boolean | undefined;
9864
+ imageSigning?: "none" | "cookies" | "url" | undefined;
9865
+ urlExpiry?: number | undefined;
9866
+ cookieExpiry?: number | undefined;
9867
+ cookieDomain?: string | undefined;
9868
+ storageRegion?: string | undefined;
9869
+ includeRegionInPath?: boolean | undefined;
9870
+ requireSignedAccess?: boolean | undefined;
9871
+ } | undefined;
8561
9872
  cache?: boolean | undefined;
8562
9873
  ocr?: {
8563
9874
  mistralModel?: string | undefined;
@@ -8572,6 +9883,9 @@ export declare const configSchema: z.ZodObject<{
8572
9883
  firecrawlApiKey?: string | undefined;
8573
9884
  firecrawlApiUrl?: string | undefined;
8574
9885
  firecrawlVersion?: string | undefined;
9886
+ tavilyApiKey?: string | undefined;
9887
+ tavilySearchUrl?: string | undefined;
9888
+ tavilyExtractUrl?: string | undefined;
8575
9889
  jinaApiKey?: string | undefined;
8576
9890
  jinaApiUrl?: string | undefined;
8577
9891
  cohereApiKey?: string | undefined;
@@ -8607,6 +9921,29 @@ export declare const configSchema: z.ZodObject<{
8607
9921
  tag?: string | null | undefined;
8608
9922
  } | undefined;
8609
9923
  } | undefined;
9924
+ tavilySearchOptions?: {
9925
+ safeSearch?: boolean | undefined;
9926
+ timeout?: number | undefined;
9927
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
9928
+ maxResults?: number | undefined;
9929
+ includeImages?: boolean | undefined;
9930
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
9931
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
9932
+ includeDomains?: string[] | undefined;
9933
+ excludeDomains?: string[] | undefined;
9934
+ topic?: "general" | "news" | "finance" | undefined;
9935
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
9936
+ includeImageDescriptions?: boolean | undefined;
9937
+ includeFavicon?: boolean | undefined;
9938
+ chunksPerSource?: number | undefined;
9939
+ } | undefined;
9940
+ tavilyScraperOptions?: {
9941
+ timeout?: number | undefined;
9942
+ includeImages?: boolean | undefined;
9943
+ includeFavicon?: boolean | undefined;
9944
+ extractDepth?: "advanced" | "basic" | undefined;
9945
+ format?: "text" | "markdown" | undefined;
9946
+ } | undefined;
8610
9947
  } | undefined;
8611
9948
  memory?: {
8612
9949
  disabled?: boolean | undefined;
@@ -8617,9 +9954,11 @@ export declare const configSchema: z.ZodObject<{
8617
9954
  messageWindowSize?: number | undefined;
8618
9955
  agent?: {
8619
9956
  id: string;
9957
+ enabled?: boolean | undefined;
8620
9958
  } | {
8621
9959
  model: string;
8622
9960
  provider: string;
9961
+ enabled?: boolean | undefined;
8623
9962
  instructions?: string | undefined;
8624
9963
  model_parameters?: Record<string, string | number | boolean> | undefined;
8625
9964
  } | undefined;
@@ -8627,8 +9966,8 @@ export declare const configSchema: z.ZodObject<{
8627
9966
  summarization?: {
8628
9967
  model?: string | undefined;
8629
9968
  prompt?: string | undefined;
8630
- provider?: string | undefined;
8631
9969
  enabled?: boolean | undefined;
9970
+ provider?: string | undefined;
8632
9971
  parameters?: Record<string, string | number | boolean | null> | undefined;
8633
9972
  trigger?: {
8634
9973
  value: number;
@@ -8663,7 +10002,7 @@ export declare const configSchema: z.ZodObject<{
8663
10002
  description?: string | undefined;
8664
10003
  apiKey?: {
8665
10004
  source: "user" | "admin";
8666
- authorization_type: "custom" | "basic" | "bearer";
10005
+ authorization_type: "basic" | "custom" | "bearer";
8667
10006
  key?: string | undefined;
8668
10007
  custom_header?: string | undefined;
8669
10008
  } | undefined;
@@ -8688,6 +10027,8 @@ export declare const configSchema: z.ZodObject<{
8688
10027
  response_types_supported?: string[] | undefined;
8689
10028
  code_challenge_methods_supported?: string[] | undefined;
8690
10029
  skip_code_challenge_check?: boolean | undefined;
10030
+ audience?: string | undefined;
10031
+ forward_audience_on_refresh?: boolean | undefined;
8691
10032
  revocation_endpoint?: string | undefined;
8692
10033
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
8693
10034
  } | undefined;
@@ -8705,7 +10046,7 @@ export declare const configSchema: z.ZodObject<{
8705
10046
  description?: string | undefined;
8706
10047
  apiKey?: {
8707
10048
  source: "user" | "admin";
8708
- authorization_type: "custom" | "basic" | "bearer";
10049
+ authorization_type: "basic" | "custom" | "bearer";
8709
10050
  key?: string | undefined;
8710
10051
  custom_header?: string | undefined;
8711
10052
  } | undefined;
@@ -8730,6 +10071,8 @@ export declare const configSchema: z.ZodObject<{
8730
10071
  response_types_supported?: string[] | undefined;
8731
10072
  code_challenge_methods_supported?: string[] | undefined;
8732
10073
  skip_code_challenge_check?: boolean | undefined;
10074
+ audience?: string | undefined;
10075
+ forward_audience_on_refresh?: boolean | undefined;
8733
10076
  revocation_endpoint?: string | undefined;
8734
10077
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
8735
10078
  } | undefined;
@@ -8745,7 +10088,7 @@ export declare const configSchema: z.ZodObject<{
8745
10088
  description?: string | undefined;
8746
10089
  apiKey?: {
8747
10090
  source: "user" | "admin";
8748
- authorization_type: "custom" | "basic" | "bearer";
10091
+ authorization_type: "basic" | "custom" | "bearer";
8749
10092
  key?: string | undefined;
8750
10093
  custom_header?: string | undefined;
8751
10094
  } | undefined;
@@ -8771,6 +10114,8 @@ export declare const configSchema: z.ZodObject<{
8771
10114
  response_types_supported?: string[] | undefined;
8772
10115
  code_challenge_methods_supported?: string[] | undefined;
8773
10116
  skip_code_challenge_check?: boolean | undefined;
10117
+ audience?: string | undefined;
10118
+ forward_audience_on_refresh?: boolean | undefined;
8774
10119
  revocation_endpoint?: string | undefined;
8775
10120
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
8776
10121
  } | undefined;
@@ -8779,6 +10124,7 @@ export declare const configSchema: z.ZodObject<{
8779
10124
  title: string;
8780
10125
  description: string;
8781
10126
  }> | undefined;
10127
+ proxy?: string | undefined;
8782
10128
  } | {
8783
10129
  type: "streamable-http" | "http";
8784
10130
  url: string;
@@ -8786,7 +10132,7 @@ export declare const configSchema: z.ZodObject<{
8786
10132
  description?: string | undefined;
8787
10133
  apiKey?: {
8788
10134
  source: "user" | "admin";
8789
- authorization_type: "custom" | "basic" | "bearer";
10135
+ authorization_type: "basic" | "custom" | "bearer";
8790
10136
  key?: string | undefined;
8791
10137
  custom_header?: string | undefined;
8792
10138
  } | undefined;
@@ -8812,6 +10158,8 @@ export declare const configSchema: z.ZodObject<{
8812
10158
  response_types_supported?: string[] | undefined;
8813
10159
  code_challenge_methods_supported?: string[] | undefined;
8814
10160
  skip_code_challenge_check?: boolean | undefined;
10161
+ audience?: string | undefined;
10162
+ forward_audience_on_refresh?: boolean | undefined;
8815
10163
  revocation_endpoint?: string | undefined;
8816
10164
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
8817
10165
  } | undefined;
@@ -8820,11 +10168,20 @@ export declare const configSchema: z.ZodObject<{
8820
10168
  title: string;
8821
10169
  description: string;
8822
10170
  }> | undefined;
10171
+ proxy?: string | undefined;
8823
10172
  }> | undefined;
8824
10173
  mcpSettings?: {
8825
10174
  allowedDomains?: string[] | undefined;
10175
+ allowedAddresses?: string[] | undefined;
8826
10176
  } | undefined;
8827
10177
  interface?: {
10178
+ skills?: boolean | {
10179
+ use?: boolean | undefined;
10180
+ create?: boolean | undefined;
10181
+ share?: boolean | undefined;
10182
+ public?: boolean | undefined;
10183
+ defaultActiveOnShare?: boolean | undefined;
10184
+ } | undefined;
8828
10185
  webSearch?: boolean | undefined;
8829
10186
  parameters?: boolean | undefined;
8830
10187
  mcpServers?: {
@@ -8869,6 +10226,8 @@ export declare const configSchema: z.ZodObject<{
8869
10226
  } | undefined;
8870
10227
  temporaryChat?: boolean | undefined;
8871
10228
  temporaryChatRetention?: number | undefined;
10229
+ autoSubmitFromUrl?: boolean | undefined;
10230
+ retentionMode?: RetentionMode | undefined;
8872
10231
  runCode?: boolean | undefined;
8873
10232
  peoplePicker?: {
8874
10233
  users?: boolean | undefined;
@@ -8880,6 +10239,7 @@ export declare const configSchema: z.ZodObject<{
8880
10239
  } | undefined;
8881
10240
  fileSearch?: boolean | undefined;
8882
10241
  fileCitations?: boolean | undefined;
10242
+ buildInfo?: boolean | undefined;
8883
10243
  remoteAgents?: {
8884
10244
  use?: boolean | undefined;
8885
10245
  create?: boolean | undefined;
@@ -8894,15 +10254,17 @@ export declare const configSchema: z.ZodObject<{
8894
10254
  size?: "normal" | "compact" | "flexible" | "invisible" | undefined;
8895
10255
  } | undefined;
8896
10256
  } | undefined;
8897
- fileStrategy?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | undefined;
10257
+ fileStrategy?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
8898
10258
  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;
10259
+ default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
10260
+ avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
10261
+ image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
10262
+ document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
10263
+ skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
8903
10264
  } | undefined;
8904
10265
  actions?: {
8905
10266
  allowedDomains?: string[] | undefined;
10267
+ allowedAddresses?: string[] | undefined;
8906
10268
  } | undefined;
8907
10269
  registration?: {
8908
10270
  allowedDomains?: string[] | undefined;
@@ -9016,6 +10378,7 @@ export declare const configSchema: z.ZodObject<{
9016
10378
  } | undefined;
9017
10379
  } | undefined;
9018
10380
  endpoints?: {
10381
+ allowedAddresses?: string[] | undefined;
9019
10382
  azureOpenAI?: ({
9020
10383
  groups: ({
9021
10384
  group: string;
@@ -9166,6 +10529,20 @@ export declare const configSchema: z.ZodObject<{
9166
10529
  maxCitationsPerFile?: number | undefined;
9167
10530
  minRelevanceScore?: number | undefined;
9168
10531
  allowedProviders?: string[] | undefined;
10532
+ remoteApi?: {
10533
+ auth?: {
10534
+ apiKey?: {
10535
+ enabled?: boolean | undefined;
10536
+ } | undefined;
10537
+ oidc?: {
10538
+ enabled?: boolean | undefined;
10539
+ scope?: string | undefined;
10540
+ audience?: string | undefined;
10541
+ issuer?: string | undefined;
10542
+ jwksUri?: string | undefined;
10543
+ } | undefined;
10544
+ } | undefined;
10545
+ } | undefined;
9169
10546
  } | undefined;
9170
10547
  custom?: {
9171
10548
  iconURL?: string | undefined;
@@ -9244,6 +10621,12 @@ export declare const configSchema: z.ZodObject<{
9244
10621
  maxToolResultChars?: number | undefined;
9245
10622
  models?: string[] | undefined;
9246
10623
  availableRegions?: string[] | undefined;
10624
+ guardrailConfig?: {
10625
+ guardrailIdentifier: string;
10626
+ guardrailVersion: string;
10627
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
10628
+ streamProcessingMode?: "async" | "sync" | undefined;
10629
+ } | undefined;
9247
10630
  inferenceProfiles?: Record<string, string> | undefined;
9248
10631
  } | undefined;
9249
10632
  all?: {
@@ -9261,6 +10644,9 @@ export declare const configSchema: z.ZodObject<{
9261
10644
  text?: {
9262
10645
  supportedMimeTypes?: string[] | undefined;
9263
10646
  } | undefined;
10647
+ skills?: {
10648
+ fileSizeLimit?: number | undefined;
10649
+ } | undefined;
9264
10650
  ocr?: {
9265
10651
  supportedMimeTypes?: string[] | undefined;
9266
10652
  } | undefined;
@@ -9286,12 +10672,17 @@ export declare const configSchema: z.ZodObject<{
9286
10672
  } | undefined;
9287
10673
  } | undefined;
9288
10674
  modelSpecs?: {
9289
- list: {
10675
+ enforce?: boolean | undefined;
10676
+ prioritize?: boolean | undefined;
10677
+ list?: {
9290
10678
  label: string;
9291
10679
  name: string;
9292
10680
  preset: {
9293
10681
  endpoint: string | null;
10682
+ iconURL?: string | null | undefined;
10683
+ greeting?: string | undefined;
9294
10684
  endpointType?: EModelEndpoint | null | undefined;
10685
+ isTemporary?: boolean | undefined;
9295
10686
  tools?: string[] | {
9296
10687
  name: string;
9297
10688
  pluginKey: string;
@@ -9395,10 +10786,9 @@ export declare const configSchema: z.ZodObject<{
9395
10786
  showIconInMenu?: boolean | undefined;
9396
10787
  showIconInHeader?: boolean | undefined;
9397
10788
  authType?: import("./schemas").AuthType | undefined;
10789
+ hideBadgeRow?: boolean | undefined;
9398
10790
  executeCode?: boolean | undefined;
9399
- }[];
9400
- enforce?: boolean | undefined;
9401
- prioritize?: boolean | undefined;
10791
+ }[] | undefined;
9402
10792
  addedEndpoints?: string[] | undefined;
9403
10793
  } | undefined;
9404
10794
  }>;
@@ -9435,6 +10825,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9435
10825
  firecrawlApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9436
10826
  firecrawlApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9437
10827
  firecrawlVersion: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10828
+ tavilyApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10829
+ tavilySearchUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10830
+ tavilyExtractUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9438
10831
  jinaApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9439
10832
  jinaApiUrl: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9440
10833
  cohereApiKey: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -9538,6 +10931,71 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9538
10931
  tag?: string | null | undefined;
9539
10932
  } | undefined;
9540
10933
  }>>;
10934
+ tavilySearchOptions: z.ZodOptional<z.ZodObject<{
10935
+ searchDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced", "fast", "ultra-fast"]>>;
10936
+ maxResults: z.ZodOptional<z.ZodNumber>;
10937
+ includeImages: z.ZodOptional<z.ZodBoolean>;
10938
+ includeAnswer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["basic", "advanced"]>]>>;
10939
+ includeRawContent: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEnum<["markdown", "text"]>]>>;
10940
+ includeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10941
+ excludeDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10942
+ topic: z.ZodOptional<z.ZodEnum<["general", "news", "finance"]>>;
10943
+ timeRange: z.ZodOptional<z.ZodEnum<["day", "week", "month", "year", "d", "w", "m", "y"]>>;
10944
+ includeImageDescriptions: z.ZodOptional<z.ZodBoolean>;
10945
+ includeFavicon: z.ZodOptional<z.ZodBoolean>;
10946
+ chunksPerSource: z.ZodOptional<z.ZodNumber>;
10947
+ safeSearch: z.ZodOptional<z.ZodBoolean>;
10948
+ timeout: z.ZodOptional<z.ZodNumber>;
10949
+ }, "strip", z.ZodTypeAny, {
10950
+ safeSearch?: boolean | undefined;
10951
+ timeout?: number | undefined;
10952
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
10953
+ maxResults?: number | undefined;
10954
+ includeImages?: boolean | undefined;
10955
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
10956
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
10957
+ includeDomains?: string[] | undefined;
10958
+ excludeDomains?: string[] | undefined;
10959
+ topic?: "general" | "news" | "finance" | undefined;
10960
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
10961
+ includeImageDescriptions?: boolean | undefined;
10962
+ includeFavicon?: boolean | undefined;
10963
+ chunksPerSource?: number | undefined;
10964
+ }, {
10965
+ safeSearch?: boolean | undefined;
10966
+ timeout?: number | undefined;
10967
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
10968
+ maxResults?: number | undefined;
10969
+ includeImages?: boolean | undefined;
10970
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
10971
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
10972
+ includeDomains?: string[] | undefined;
10973
+ excludeDomains?: string[] | undefined;
10974
+ topic?: "general" | "news" | "finance" | undefined;
10975
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
10976
+ includeImageDescriptions?: boolean | undefined;
10977
+ includeFavicon?: boolean | undefined;
10978
+ chunksPerSource?: number | undefined;
10979
+ }>>;
10980
+ tavilyScraperOptions: z.ZodOptional<z.ZodObject<{
10981
+ extractDepth: z.ZodOptional<z.ZodEnum<["basic", "advanced"]>>;
10982
+ includeImages: z.ZodOptional<z.ZodBoolean>;
10983
+ includeFavicon: z.ZodOptional<z.ZodBoolean>;
10984
+ format: z.ZodOptional<z.ZodEnum<["markdown", "text"]>>;
10985
+ timeout: z.ZodOptional<z.ZodNumber>;
10986
+ }, "strip", z.ZodTypeAny, {
10987
+ timeout?: number | undefined;
10988
+ includeImages?: boolean | undefined;
10989
+ includeFavicon?: boolean | undefined;
10990
+ extractDepth?: "advanced" | "basic" | undefined;
10991
+ format?: "text" | "markdown" | undefined;
10992
+ }, {
10993
+ timeout?: number | undefined;
10994
+ includeImages?: boolean | undefined;
10995
+ includeFavicon?: boolean | undefined;
10996
+ extractDepth?: "advanced" | "basic" | undefined;
10997
+ format?: "text" | "markdown" | undefined;
10998
+ }>>;
9541
10999
  }, "strip", z.ZodTypeAny, {
9542
11000
  serperApiKey: string;
9543
11001
  searxngInstanceUrl: string;
@@ -9545,6 +11003,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9545
11003
  firecrawlApiKey: string;
9546
11004
  firecrawlApiUrl: string;
9547
11005
  firecrawlVersion: string;
11006
+ tavilyApiKey: string;
11007
+ tavilySearchUrl: string;
11008
+ tavilyExtractUrl: string;
9548
11009
  jinaApiKey: string;
9549
11010
  jinaApiUrl: string;
9550
11011
  cohereApiKey: string;
@@ -9580,6 +11041,29 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9580
11041
  tag?: string | null | undefined;
9581
11042
  } | undefined;
9582
11043
  } | undefined;
11044
+ tavilySearchOptions?: {
11045
+ safeSearch?: boolean | undefined;
11046
+ timeout?: number | undefined;
11047
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
11048
+ maxResults?: number | undefined;
11049
+ includeImages?: boolean | undefined;
11050
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
11051
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
11052
+ includeDomains?: string[] | undefined;
11053
+ excludeDomains?: string[] | undefined;
11054
+ topic?: "general" | "news" | "finance" | undefined;
11055
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
11056
+ includeImageDescriptions?: boolean | undefined;
11057
+ includeFavicon?: boolean | undefined;
11058
+ chunksPerSource?: number | undefined;
11059
+ } | undefined;
11060
+ tavilyScraperOptions?: {
11061
+ timeout?: number | undefined;
11062
+ includeImages?: boolean | undefined;
11063
+ includeFavicon?: boolean | undefined;
11064
+ extractDepth?: "advanced" | "basic" | undefined;
11065
+ format?: "text" | "markdown" | undefined;
11066
+ } | undefined;
9583
11067
  }, {
9584
11068
  serperApiKey?: string | undefined;
9585
11069
  searxngInstanceUrl?: string | undefined;
@@ -9587,6 +11071,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9587
11071
  firecrawlApiKey?: string | undefined;
9588
11072
  firecrawlApiUrl?: string | undefined;
9589
11073
  firecrawlVersion?: string | undefined;
11074
+ tavilyApiKey?: string | undefined;
11075
+ tavilySearchUrl?: string | undefined;
11076
+ tavilyExtractUrl?: string | undefined;
9590
11077
  jinaApiKey?: string | undefined;
9591
11078
  jinaApiUrl?: string | undefined;
9592
11079
  cohereApiKey?: string | undefined;
@@ -9622,6 +11109,29 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9622
11109
  tag?: string | null | undefined;
9623
11110
  } | undefined;
9624
11111
  } | undefined;
11112
+ tavilySearchOptions?: {
11113
+ safeSearch?: boolean | undefined;
11114
+ timeout?: number | undefined;
11115
+ searchDepth?: "advanced" | "basic" | "fast" | "ultra-fast" | undefined;
11116
+ maxResults?: number | undefined;
11117
+ includeImages?: boolean | undefined;
11118
+ includeAnswer?: boolean | "advanced" | "basic" | undefined;
11119
+ includeRawContent?: boolean | "text" | "markdown" | undefined;
11120
+ includeDomains?: string[] | undefined;
11121
+ excludeDomains?: string[] | undefined;
11122
+ topic?: "general" | "news" | "finance" | undefined;
11123
+ timeRange?: "day" | "week" | "month" | "year" | "d" | "w" | "m" | "y" | undefined;
11124
+ includeImageDescriptions?: boolean | undefined;
11125
+ includeFavicon?: boolean | undefined;
11126
+ chunksPerSource?: number | undefined;
11127
+ } | undefined;
11128
+ tavilyScraperOptions?: {
11129
+ timeout?: number | undefined;
11130
+ includeImages?: boolean | undefined;
11131
+ includeFavicon?: boolean | undefined;
11132
+ extractDepth?: "advanced" | "basic" | undefined;
11133
+ format?: "text" | "markdown" | undefined;
11134
+ } | undefined;
9625
11135
  }>>;
9626
11136
  memory: z.ZodOptional<z.ZodObject<{
9627
11137
  disabled: z.ZodOptional<z.ZodBoolean>;
@@ -9631,12 +11141,16 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9631
11141
  personalize: z.ZodDefault<z.ZodBoolean>;
9632
11142
  messageWindowSize: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
9633
11143
  agent: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
11144
+ enabled: z.ZodOptional<z.ZodBoolean>;
9634
11145
  id: z.ZodString;
9635
11146
  }, "strip", z.ZodTypeAny, {
9636
11147
  id: string;
11148
+ enabled?: boolean | undefined;
9637
11149
  }, {
9638
11150
  id: string;
11151
+ enabled?: boolean | undefined;
9639
11152
  }>, z.ZodObject<{
11153
+ enabled: z.ZodOptional<z.ZodBoolean>;
9640
11154
  provider: z.ZodString;
9641
11155
  model: z.ZodString;
9642
11156
  instructions: z.ZodOptional<z.ZodString>;
@@ -9644,11 +11158,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9644
11158
  }, "strip", z.ZodTypeAny, {
9645
11159
  model: string;
9646
11160
  provider: string;
11161
+ enabled?: boolean | undefined;
9647
11162
  instructions?: string | undefined;
9648
11163
  model_parameters?: Record<string, string | number | boolean> | undefined;
9649
11164
  }, {
9650
11165
  model: string;
9651
11166
  provider: string;
11167
+ enabled?: boolean | undefined;
9652
11168
  instructions?: string | undefined;
9653
11169
  model_parameters?: Record<string, string | number | boolean> | undefined;
9654
11170
  }>]>>;
@@ -9661,9 +11177,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9661
11177
  tokenLimit?: number | undefined;
9662
11178
  agent?: {
9663
11179
  id: string;
11180
+ enabled?: boolean | undefined;
9664
11181
  } | {
9665
11182
  model: string;
9666
11183
  provider: string;
11184
+ enabled?: boolean | undefined;
9667
11185
  instructions?: string | undefined;
9668
11186
  model_parameters?: Record<string, string | number | boolean> | undefined;
9669
11187
  } | undefined;
@@ -9676,9 +11194,11 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9676
11194
  messageWindowSize?: number | undefined;
9677
11195
  agent?: {
9678
11196
  id: string;
11197
+ enabled?: boolean | undefined;
9679
11198
  } | {
9680
11199
  model: string;
9681
11200
  provider: string;
11201
+ enabled?: boolean | undefined;
9682
11202
  instructions?: string | undefined;
9683
11203
  model_parameters?: Record<string, string | number | boolean> | undefined;
9684
11204
  } | undefined;
@@ -9742,8 +11262,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9742
11262
  }, "strip", z.ZodTypeAny, {
9743
11263
  model?: string | undefined;
9744
11264
  prompt?: string | undefined;
9745
- provider?: string | undefined;
9746
11265
  enabled?: boolean | undefined;
11266
+ provider?: string | undefined;
9747
11267
  parameters?: Record<string, string | number | boolean | null> | undefined;
9748
11268
  trigger?: {
9749
11269
  value: number;
@@ -9768,8 +11288,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9768
11288
  }, {
9769
11289
  model?: string | undefined;
9770
11290
  prompt?: string | undefined;
9771
- provider?: string | undefined;
9772
11291
  enabled?: boolean | undefined;
11292
+ provider?: string | undefined;
9773
11293
  parameters?: Record<string, string | number | boolean | null> | undefined;
9774
11294
  trigger?: {
9775
11295
  value: number;
@@ -9807,7 +11327,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9807
11327
  chatMenu: z.ZodOptional<z.ZodBoolean>;
9808
11328
  serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
9809
11329
  requiresOAuth: z.ZodOptional<z.ZodBoolean>;
9810
- oauth: z.ZodOptional<z.ZodObject<{
11330
+ oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
9811
11331
  authorization_url: z.ZodOptional<z.ZodString>;
9812
11332
  token_url: z.ZodOptional<z.ZodString>;
9813
11333
  client_id: z.ZodOptional<z.ZodString>;
@@ -9820,6 +11340,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9820
11340
  response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9821
11341
  code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9822
11342
  skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
11343
+ audience: z.ZodOptional<z.ZodString>;
11344
+ forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
9823
11345
  revocation_endpoint: z.ZodOptional<z.ZodString>;
9824
11346
  revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9825
11347
  }, "strip", z.ZodTypeAny, {
@@ -9835,6 +11357,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9835
11357
  response_types_supported?: string[] | undefined;
9836
11358
  code_challenge_methods_supported?: string[] | undefined;
9837
11359
  skip_code_challenge_check?: boolean | undefined;
11360
+ audience?: string | undefined;
11361
+ forward_audience_on_refresh?: boolean | undefined;
11362
+ revocation_endpoint?: string | undefined;
11363
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
11364
+ }, {
11365
+ authorization_url?: string | undefined;
11366
+ token_url?: string | undefined;
11367
+ client_id?: string | undefined;
11368
+ client_secret?: string | undefined;
11369
+ scope?: string | undefined;
11370
+ redirect_uri?: string | undefined;
11371
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
11372
+ grant_types_supported?: string[] | undefined;
11373
+ token_endpoint_auth_methods_supported?: string[] | undefined;
11374
+ response_types_supported?: string[] | undefined;
11375
+ code_challenge_methods_supported?: string[] | undefined;
11376
+ skip_code_challenge_check?: boolean | undefined;
11377
+ audience?: string | undefined;
11378
+ forward_audience_on_refresh?: boolean | undefined;
11379
+ revocation_endpoint?: string | undefined;
11380
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
11381
+ }>, {
11382
+ authorization_url?: string | undefined;
11383
+ token_url?: string | undefined;
11384
+ client_id?: string | undefined;
11385
+ client_secret?: string | undefined;
11386
+ scope?: string | undefined;
11387
+ redirect_uri?: string | undefined;
11388
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
11389
+ grant_types_supported?: string[] | undefined;
11390
+ token_endpoint_auth_methods_supported?: string[] | undefined;
11391
+ response_types_supported?: string[] | undefined;
11392
+ code_challenge_methods_supported?: string[] | undefined;
11393
+ skip_code_challenge_check?: boolean | undefined;
11394
+ audience?: string | undefined;
11395
+ forward_audience_on_refresh?: boolean | undefined;
9838
11396
  revocation_endpoint?: string | undefined;
9839
11397
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
9840
11398
  }, {
@@ -9850,6 +11408,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9850
11408
  response_types_supported?: string[] | undefined;
9851
11409
  code_challenge_methods_supported?: string[] | undefined;
9852
11410
  skip_code_challenge_check?: boolean | undefined;
11411
+ audience?: string | undefined;
11412
+ forward_audience_on_refresh?: boolean | undefined;
9853
11413
  revocation_endpoint?: string | undefined;
9854
11414
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
9855
11415
  }>>;
@@ -9861,12 +11421,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9861
11421
  custom_header: z.ZodOptional<z.ZodString>;
9862
11422
  }, "strip", z.ZodTypeAny, {
9863
11423
  source: "user" | "admin";
9864
- authorization_type: "custom" | "basic" | "bearer";
11424
+ authorization_type: "basic" | "custom" | "bearer";
9865
11425
  key?: string | undefined;
9866
11426
  custom_header?: string | undefined;
9867
11427
  }, {
9868
11428
  source: "user" | "admin";
9869
- authorization_type: "custom" | "basic" | "bearer";
11429
+ authorization_type: "basic" | "custom" | "bearer";
9870
11430
  key?: string | undefined;
9871
11431
  custom_header?: string | undefined;
9872
11432
  }>>;
@@ -9894,7 +11454,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9894
11454
  description?: string | undefined;
9895
11455
  apiKey?: {
9896
11456
  source: "user" | "admin";
9897
- authorization_type: "custom" | "basic" | "bearer";
11457
+ authorization_type: "basic" | "custom" | "bearer";
9898
11458
  key?: string | undefined;
9899
11459
  custom_header?: string | undefined;
9900
11460
  } | undefined;
@@ -9919,6 +11479,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9919
11479
  response_types_supported?: string[] | undefined;
9920
11480
  code_challenge_methods_supported?: string[] | undefined;
9921
11481
  skip_code_challenge_check?: boolean | undefined;
11482
+ audience?: string | undefined;
11483
+ forward_audience_on_refresh?: boolean | undefined;
9922
11484
  revocation_endpoint?: string | undefined;
9923
11485
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
9924
11486
  } | undefined;
@@ -9937,7 +11499,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9937
11499
  description?: string | undefined;
9938
11500
  apiKey?: {
9939
11501
  source: "user" | "admin";
9940
- authorization_type: "custom" | "basic" | "bearer";
11502
+ authorization_type: "basic" | "custom" | "bearer";
9941
11503
  key?: string | undefined;
9942
11504
  custom_header?: string | undefined;
9943
11505
  } | undefined;
@@ -9962,6 +11524,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9962
11524
  response_types_supported?: string[] | undefined;
9963
11525
  code_challenge_methods_supported?: string[] | undefined;
9964
11526
  skip_code_challenge_check?: boolean | undefined;
11527
+ audience?: string | undefined;
11528
+ forward_audience_on_refresh?: boolean | undefined;
9965
11529
  revocation_endpoint?: string | undefined;
9966
11530
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
9967
11531
  } | undefined;
@@ -9983,7 +11547,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9983
11547
  chatMenu: z.ZodOptional<z.ZodBoolean>;
9984
11548
  serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
9985
11549
  requiresOAuth: z.ZodOptional<z.ZodBoolean>;
9986
- oauth: z.ZodOptional<z.ZodObject<{
11550
+ oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
9987
11551
  authorization_url: z.ZodOptional<z.ZodString>;
9988
11552
  token_url: z.ZodOptional<z.ZodString>;
9989
11553
  client_id: z.ZodOptional<z.ZodString>;
@@ -9996,6 +11560,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
9996
11560
  response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9997
11561
  code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9998
11562
  skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
11563
+ audience: z.ZodOptional<z.ZodString>;
11564
+ forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
9999
11565
  revocation_endpoint: z.ZodOptional<z.ZodString>;
10000
11566
  revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10001
11567
  }, "strip", z.ZodTypeAny, {
@@ -10011,6 +11577,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10011
11577
  response_types_supported?: string[] | undefined;
10012
11578
  code_challenge_methods_supported?: string[] | undefined;
10013
11579
  skip_code_challenge_check?: boolean | undefined;
11580
+ audience?: string | undefined;
11581
+ forward_audience_on_refresh?: boolean | undefined;
11582
+ revocation_endpoint?: string | undefined;
11583
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
11584
+ }, {
11585
+ authorization_url?: string | undefined;
11586
+ token_url?: string | undefined;
11587
+ client_id?: string | undefined;
11588
+ client_secret?: string | undefined;
11589
+ scope?: string | undefined;
11590
+ redirect_uri?: string | undefined;
11591
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
11592
+ grant_types_supported?: string[] | undefined;
11593
+ token_endpoint_auth_methods_supported?: string[] | undefined;
11594
+ response_types_supported?: string[] | undefined;
11595
+ code_challenge_methods_supported?: string[] | undefined;
11596
+ skip_code_challenge_check?: boolean | undefined;
11597
+ audience?: string | undefined;
11598
+ forward_audience_on_refresh?: boolean | undefined;
11599
+ revocation_endpoint?: string | undefined;
11600
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
11601
+ }>, {
11602
+ authorization_url?: string | undefined;
11603
+ token_url?: string | undefined;
11604
+ client_id?: string | undefined;
11605
+ client_secret?: string | undefined;
11606
+ scope?: string | undefined;
11607
+ redirect_uri?: string | undefined;
11608
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
11609
+ grant_types_supported?: string[] | undefined;
11610
+ token_endpoint_auth_methods_supported?: string[] | undefined;
11611
+ response_types_supported?: string[] | undefined;
11612
+ code_challenge_methods_supported?: string[] | undefined;
11613
+ skip_code_challenge_check?: boolean | undefined;
11614
+ audience?: string | undefined;
11615
+ forward_audience_on_refresh?: boolean | undefined;
10014
11616
  revocation_endpoint?: string | undefined;
10015
11617
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10016
11618
  }, {
@@ -10026,6 +11628,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10026
11628
  response_types_supported?: string[] | undefined;
10027
11629
  code_challenge_methods_supported?: string[] | undefined;
10028
11630
  skip_code_challenge_check?: boolean | undefined;
11631
+ audience?: string | undefined;
11632
+ forward_audience_on_refresh?: boolean | undefined;
10029
11633
  revocation_endpoint?: string | undefined;
10030
11634
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10031
11635
  }>>;
@@ -10037,12 +11641,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10037
11641
  custom_header: z.ZodOptional<z.ZodString>;
10038
11642
  }, "strip", z.ZodTypeAny, {
10039
11643
  source: "user" | "admin";
10040
- authorization_type: "custom" | "basic" | "bearer";
11644
+ authorization_type: "basic" | "custom" | "bearer";
10041
11645
  key?: string | undefined;
10042
11646
  custom_header?: string | undefined;
10043
11647
  }, {
10044
11648
  source: "user" | "admin";
10045
- authorization_type: "custom" | "basic" | "bearer";
11649
+ authorization_type: "basic" | "custom" | "bearer";
10046
11650
  key?: string | undefined;
10047
11651
  custom_header?: string | undefined;
10048
11652
  }>>;
@@ -10066,7 +11670,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10066
11670
  description?: string | undefined;
10067
11671
  apiKey?: {
10068
11672
  source: "user" | "admin";
10069
- authorization_type: "custom" | "basic" | "bearer";
11673
+ authorization_type: "basic" | "custom" | "bearer";
10070
11674
  key?: string | undefined;
10071
11675
  custom_header?: string | undefined;
10072
11676
  } | undefined;
@@ -10091,6 +11695,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10091
11695
  response_types_supported?: string[] | undefined;
10092
11696
  code_challenge_methods_supported?: string[] | undefined;
10093
11697
  skip_code_challenge_check?: boolean | undefined;
11698
+ audience?: string | undefined;
11699
+ forward_audience_on_refresh?: boolean | undefined;
10094
11700
  revocation_endpoint?: string | undefined;
10095
11701
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10096
11702
  } | undefined;
@@ -10106,7 +11712,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10106
11712
  description?: string | undefined;
10107
11713
  apiKey?: {
10108
11714
  source: "user" | "admin";
10109
- authorization_type: "custom" | "basic" | "bearer";
11715
+ authorization_type: "basic" | "custom" | "bearer";
10110
11716
  key?: string | undefined;
10111
11717
  custom_header?: string | undefined;
10112
11718
  } | undefined;
@@ -10131,6 +11737,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10131
11737
  response_types_supported?: string[] | undefined;
10132
11738
  code_challenge_methods_supported?: string[] | undefined;
10133
11739
  skip_code_challenge_check?: boolean | undefined;
11740
+ audience?: string | undefined;
11741
+ forward_audience_on_refresh?: boolean | undefined;
10134
11742
  revocation_endpoint?: string | undefined;
10135
11743
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10136
11744
  } | undefined;
@@ -10150,7 +11758,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10150
11758
  chatMenu: z.ZodOptional<z.ZodBoolean>;
10151
11759
  serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
10152
11760
  requiresOAuth: z.ZodOptional<z.ZodBoolean>;
10153
- oauth: z.ZodOptional<z.ZodObject<{
11761
+ oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
10154
11762
  authorization_url: z.ZodOptional<z.ZodString>;
10155
11763
  token_url: z.ZodOptional<z.ZodString>;
10156
11764
  client_id: z.ZodOptional<z.ZodString>;
@@ -10163,6 +11771,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10163
11771
  response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10164
11772
  code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10165
11773
  skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
11774
+ audience: z.ZodOptional<z.ZodString>;
11775
+ forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
10166
11776
  revocation_endpoint: z.ZodOptional<z.ZodString>;
10167
11777
  revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10168
11778
  }, "strip", z.ZodTypeAny, {
@@ -10178,6 +11788,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10178
11788
  response_types_supported?: string[] | undefined;
10179
11789
  code_challenge_methods_supported?: string[] | undefined;
10180
11790
  skip_code_challenge_check?: boolean | undefined;
11791
+ audience?: string | undefined;
11792
+ forward_audience_on_refresh?: boolean | undefined;
11793
+ revocation_endpoint?: string | undefined;
11794
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
11795
+ }, {
11796
+ authorization_url?: string | undefined;
11797
+ token_url?: string | undefined;
11798
+ client_id?: string | undefined;
11799
+ client_secret?: string | undefined;
11800
+ scope?: string | undefined;
11801
+ redirect_uri?: string | undefined;
11802
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
11803
+ grant_types_supported?: string[] | undefined;
11804
+ token_endpoint_auth_methods_supported?: string[] | undefined;
11805
+ response_types_supported?: string[] | undefined;
11806
+ code_challenge_methods_supported?: string[] | undefined;
11807
+ skip_code_challenge_check?: boolean | undefined;
11808
+ audience?: string | undefined;
11809
+ forward_audience_on_refresh?: boolean | undefined;
11810
+ revocation_endpoint?: string | undefined;
11811
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
11812
+ }>, {
11813
+ authorization_url?: string | undefined;
11814
+ token_url?: string | undefined;
11815
+ client_id?: string | undefined;
11816
+ client_secret?: string | undefined;
11817
+ scope?: string | undefined;
11818
+ redirect_uri?: string | undefined;
11819
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
11820
+ grant_types_supported?: string[] | undefined;
11821
+ token_endpoint_auth_methods_supported?: string[] | undefined;
11822
+ response_types_supported?: string[] | undefined;
11823
+ code_challenge_methods_supported?: string[] | undefined;
11824
+ skip_code_challenge_check?: boolean | undefined;
11825
+ audience?: string | undefined;
11826
+ forward_audience_on_refresh?: boolean | undefined;
10181
11827
  revocation_endpoint?: string | undefined;
10182
11828
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10183
11829
  }, {
@@ -10193,6 +11839,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10193
11839
  response_types_supported?: string[] | undefined;
10194
11840
  code_challenge_methods_supported?: string[] | undefined;
10195
11841
  skip_code_challenge_check?: boolean | undefined;
11842
+ audience?: string | undefined;
11843
+ forward_audience_on_refresh?: boolean | undefined;
10196
11844
  revocation_endpoint?: string | undefined;
10197
11845
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10198
11846
  }>>;
@@ -10204,12 +11852,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10204
11852
  custom_header: z.ZodOptional<z.ZodString>;
10205
11853
  }, "strip", z.ZodTypeAny, {
10206
11854
  source: "user" | "admin";
10207
- authorization_type: "custom" | "basic" | "bearer";
11855
+ authorization_type: "basic" | "custom" | "bearer";
10208
11856
  key?: string | undefined;
10209
11857
  custom_header?: string | undefined;
10210
11858
  }, {
10211
11859
  source: "user" | "admin";
10212
- authorization_type: "custom" | "basic" | "bearer";
11860
+ authorization_type: "basic" | "custom" | "bearer";
10213
11861
  key?: string | undefined;
10214
11862
  custom_header?: string | undefined;
10215
11863
  }>>;
@@ -10226,6 +11874,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10226
11874
  } & {
10227
11875
  type: z.ZodDefault<z.ZodLiteral<"sse">>;
10228
11876
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
11877
+ proxy: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>>;
10229
11878
  url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
10230
11879
  }, "strip", z.ZodTypeAny, {
10231
11880
  type: "sse";
@@ -10234,7 +11883,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10234
11883
  description?: string | undefined;
10235
11884
  apiKey?: {
10236
11885
  source: "user" | "admin";
10237
- authorization_type: "custom" | "basic" | "bearer";
11886
+ authorization_type: "basic" | "custom" | "bearer";
10238
11887
  key?: string | undefined;
10239
11888
  custom_header?: string | undefined;
10240
11889
  } | undefined;
@@ -10260,6 +11909,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10260
11909
  response_types_supported?: string[] | undefined;
10261
11910
  code_challenge_methods_supported?: string[] | undefined;
10262
11911
  skip_code_challenge_check?: boolean | undefined;
11912
+ audience?: string | undefined;
11913
+ forward_audience_on_refresh?: boolean | undefined;
10263
11914
  revocation_endpoint?: string | undefined;
10264
11915
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10265
11916
  } | undefined;
@@ -10268,6 +11919,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10268
11919
  title: string;
10269
11920
  description: string;
10270
11921
  }> | undefined;
11922
+ proxy?: string | undefined;
10271
11923
  }, {
10272
11924
  url: string;
10273
11925
  title?: string | undefined;
@@ -10275,7 +11927,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10275
11927
  description?: string | undefined;
10276
11928
  apiKey?: {
10277
11929
  source: "user" | "admin";
10278
- authorization_type: "custom" | "basic" | "bearer";
11930
+ authorization_type: "basic" | "custom" | "bearer";
10279
11931
  key?: string | undefined;
10280
11932
  custom_header?: string | undefined;
10281
11933
  } | undefined;
@@ -10301,6 +11953,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10301
11953
  response_types_supported?: string[] | undefined;
10302
11954
  code_challenge_methods_supported?: string[] | undefined;
10303
11955
  skip_code_challenge_check?: boolean | undefined;
11956
+ audience?: string | undefined;
11957
+ forward_audience_on_refresh?: boolean | undefined;
10304
11958
  revocation_endpoint?: string | undefined;
10305
11959
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10306
11960
  } | undefined;
@@ -10309,6 +11963,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10309
11963
  title: string;
10310
11964
  description: string;
10311
11965
  }> | undefined;
11966
+ proxy?: string | undefined;
10312
11967
  }>, z.ZodObject<{
10313
11968
  title: z.ZodOptional<z.ZodString>;
10314
11969
  description: z.ZodOptional<z.ZodString>;
@@ -10320,7 +11975,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10320
11975
  chatMenu: z.ZodOptional<z.ZodBoolean>;
10321
11976
  serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
10322
11977
  requiresOAuth: z.ZodOptional<z.ZodBoolean>;
10323
- oauth: z.ZodOptional<z.ZodObject<{
11978
+ oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
10324
11979
  authorization_url: z.ZodOptional<z.ZodString>;
10325
11980
  token_url: z.ZodOptional<z.ZodString>;
10326
11981
  client_id: z.ZodOptional<z.ZodString>;
@@ -10333,6 +11988,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10333
11988
  response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10334
11989
  code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10335
11990
  skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
11991
+ audience: z.ZodOptional<z.ZodString>;
11992
+ forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
10336
11993
  revocation_endpoint: z.ZodOptional<z.ZodString>;
10337
11994
  revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10338
11995
  }, "strip", z.ZodTypeAny, {
@@ -10348,6 +12005,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10348
12005
  response_types_supported?: string[] | undefined;
10349
12006
  code_challenge_methods_supported?: string[] | undefined;
10350
12007
  skip_code_challenge_check?: boolean | undefined;
12008
+ audience?: string | undefined;
12009
+ forward_audience_on_refresh?: boolean | undefined;
12010
+ revocation_endpoint?: string | undefined;
12011
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
12012
+ }, {
12013
+ authorization_url?: string | undefined;
12014
+ token_url?: string | undefined;
12015
+ client_id?: string | undefined;
12016
+ client_secret?: string | undefined;
12017
+ scope?: string | undefined;
12018
+ redirect_uri?: string | undefined;
12019
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
12020
+ grant_types_supported?: string[] | undefined;
12021
+ token_endpoint_auth_methods_supported?: string[] | undefined;
12022
+ response_types_supported?: string[] | undefined;
12023
+ code_challenge_methods_supported?: string[] | undefined;
12024
+ skip_code_challenge_check?: boolean | undefined;
12025
+ audience?: string | undefined;
12026
+ forward_audience_on_refresh?: boolean | undefined;
12027
+ revocation_endpoint?: string | undefined;
12028
+ revocation_endpoint_auth_methods_supported?: string[] | undefined;
12029
+ }>, {
12030
+ authorization_url?: string | undefined;
12031
+ token_url?: string | undefined;
12032
+ client_id?: string | undefined;
12033
+ client_secret?: string | undefined;
12034
+ scope?: string | undefined;
12035
+ redirect_uri?: string | undefined;
12036
+ token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
12037
+ grant_types_supported?: string[] | undefined;
12038
+ token_endpoint_auth_methods_supported?: string[] | undefined;
12039
+ response_types_supported?: string[] | undefined;
12040
+ code_challenge_methods_supported?: string[] | undefined;
12041
+ skip_code_challenge_check?: boolean | undefined;
12042
+ audience?: string | undefined;
12043
+ forward_audience_on_refresh?: boolean | undefined;
10351
12044
  revocation_endpoint?: string | undefined;
10352
12045
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10353
12046
  }, {
@@ -10363,6 +12056,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10363
12056
  response_types_supported?: string[] | undefined;
10364
12057
  code_challenge_methods_supported?: string[] | undefined;
10365
12058
  skip_code_challenge_check?: boolean | undefined;
12059
+ audience?: string | undefined;
12060
+ forward_audience_on_refresh?: boolean | undefined;
10366
12061
  revocation_endpoint?: string | undefined;
10367
12062
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10368
12063
  }>>;
@@ -10374,12 +12069,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10374
12069
  custom_header: z.ZodOptional<z.ZodString>;
10375
12070
  }, "strip", z.ZodTypeAny, {
10376
12071
  source: "user" | "admin";
10377
- authorization_type: "custom" | "basic" | "bearer";
12072
+ authorization_type: "basic" | "custom" | "bearer";
10378
12073
  key?: string | undefined;
10379
12074
  custom_header?: string | undefined;
10380
12075
  }, {
10381
12076
  source: "user" | "admin";
10382
- authorization_type: "custom" | "basic" | "bearer";
12077
+ authorization_type: "basic" | "custom" | "bearer";
10383
12078
  key?: string | undefined;
10384
12079
  custom_header?: string | undefined;
10385
12080
  }>>;
@@ -10396,6 +12091,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10396
12091
  } & {
10397
12092
  type: z.ZodUnion<[z.ZodLiteral<"streamable-http">, z.ZodLiteral<"http">]>;
10398
12093
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
12094
+ proxy: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>>;
10399
12095
  url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
10400
12096
  }, "strip", z.ZodTypeAny, {
10401
12097
  type: "streamable-http" | "http";
@@ -10404,7 +12100,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10404
12100
  description?: string | undefined;
10405
12101
  apiKey?: {
10406
12102
  source: "user" | "admin";
10407
- authorization_type: "custom" | "basic" | "bearer";
12103
+ authorization_type: "basic" | "custom" | "bearer";
10408
12104
  key?: string | undefined;
10409
12105
  custom_header?: string | undefined;
10410
12106
  } | undefined;
@@ -10430,6 +12126,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10430
12126
  response_types_supported?: string[] | undefined;
10431
12127
  code_challenge_methods_supported?: string[] | undefined;
10432
12128
  skip_code_challenge_check?: boolean | undefined;
12129
+ audience?: string | undefined;
12130
+ forward_audience_on_refresh?: boolean | undefined;
10433
12131
  revocation_endpoint?: string | undefined;
10434
12132
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10435
12133
  } | undefined;
@@ -10438,6 +12136,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10438
12136
  title: string;
10439
12137
  description: string;
10440
12138
  }> | undefined;
12139
+ proxy?: string | undefined;
10441
12140
  }, {
10442
12141
  type: "streamable-http" | "http";
10443
12142
  url: string;
@@ -10445,7 +12144,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10445
12144
  description?: string | undefined;
10446
12145
  apiKey?: {
10447
12146
  source: "user" | "admin";
10448
- authorization_type: "custom" | "basic" | "bearer";
12147
+ authorization_type: "basic" | "custom" | "bearer";
10449
12148
  key?: string | undefined;
10450
12149
  custom_header?: string | undefined;
10451
12150
  } | undefined;
@@ -10471,6 +12170,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10471
12170
  response_types_supported?: string[] | undefined;
10472
12171
  code_challenge_methods_supported?: string[] | undefined;
10473
12172
  skip_code_challenge_check?: boolean | undefined;
12173
+ audience?: string | undefined;
12174
+ forward_audience_on_refresh?: boolean | undefined;
10474
12175
  revocation_endpoint?: string | undefined;
10475
12176
  revocation_endpoint_auth_methods_supported?: string[] | undefined;
10476
12177
  } | undefined;
@@ -10479,13 +12180,17 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10479
12180
  title: string;
10480
12181
  description: string;
10481
12182
  }> | undefined;
12183
+ proxy?: string | undefined;
10482
12184
  }>]>>>;
10483
12185
  mcpSettings: z.ZodOptional<z.ZodObject<{
10484
12186
  allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12187
+ 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
12188
  }, "strip", z.ZodTypeAny, {
10486
12189
  allowedDomains?: string[] | undefined;
12190
+ allowedAddresses?: string[] | undefined;
10487
12191
  }, {
10488
12192
  allowedDomains?: string[] | undefined;
12193
+ allowedAddresses?: string[] | undefined;
10489
12194
  }>>;
10490
12195
  interface: z.ZodDefault<z.ZodObject<{
10491
12196
  privacyPolicy: z.ZodOptional<z.ZodObject<{
@@ -10595,6 +12300,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10595
12300
  }>]>>;
10596
12301
  temporaryChat: z.ZodOptional<z.ZodBoolean>;
10597
12302
  temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
12303
+ autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
12304
+ retentionMode: z.ZodDefault<z.ZodNativeEnum<typeof RetentionMode>>;
10598
12305
  runCode: z.ZodOptional<z.ZodBoolean>;
10599
12306
  webSearch: z.ZodOptional<z.ZodBoolean>;
10600
12307
  peoplePicker: z.ZodOptional<z.ZodObject<{
@@ -10619,6 +12326,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10619
12326
  }>>;
10620
12327
  fileSearch: z.ZodOptional<z.ZodBoolean>;
10621
12328
  fileCitations: z.ZodOptional<z.ZodBoolean>;
12329
+ buildInfo: z.ZodOptional<z.ZodBoolean>;
10622
12330
  remoteAgents: z.ZodOptional<z.ZodObject<{
10623
12331
  use: z.ZodOptional<z.ZodBoolean>;
10624
12332
  create: z.ZodOptional<z.ZodBoolean>;
@@ -10635,7 +12343,34 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10635
12343
  share?: boolean | undefined;
10636
12344
  public?: boolean | undefined;
10637
12345
  }>>;
12346
+ skills: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
12347
+ use: z.ZodOptional<z.ZodBoolean>;
12348
+ create: z.ZodOptional<z.ZodBoolean>;
12349
+ share: z.ZodOptional<z.ZodBoolean>;
12350
+ public: z.ZodOptional<z.ZodBoolean>;
12351
+ defaultActiveOnShare: z.ZodOptional<z.ZodBoolean>;
12352
+ }, "strip", z.ZodTypeAny, {
12353
+ use?: boolean | undefined;
12354
+ create?: boolean | undefined;
12355
+ share?: boolean | undefined;
12356
+ public?: boolean | undefined;
12357
+ defaultActiveOnShare?: boolean | undefined;
12358
+ }, {
12359
+ use?: boolean | undefined;
12360
+ create?: boolean | undefined;
12361
+ share?: boolean | undefined;
12362
+ public?: boolean | undefined;
12363
+ defaultActiveOnShare?: boolean | undefined;
12364
+ }>]>>;
10638
12365
  }, "strip", z.ZodTypeAny, {
12366
+ retentionMode: RetentionMode;
12367
+ skills?: boolean | {
12368
+ use?: boolean | undefined;
12369
+ create?: boolean | undefined;
12370
+ share?: boolean | undefined;
12371
+ public?: boolean | undefined;
12372
+ defaultActiveOnShare?: boolean | undefined;
12373
+ } | undefined;
10639
12374
  webSearch?: boolean | undefined;
10640
12375
  parameters?: boolean | undefined;
10641
12376
  mcpServers?: {
@@ -10680,6 +12415,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10680
12415
  } | undefined;
10681
12416
  temporaryChat?: boolean | undefined;
10682
12417
  temporaryChatRetention?: number | undefined;
12418
+ autoSubmitFromUrl?: boolean | undefined;
10683
12419
  runCode?: boolean | undefined;
10684
12420
  peoplePicker?: {
10685
12421
  users?: boolean | undefined;
@@ -10691,6 +12427,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10691
12427
  } | undefined;
10692
12428
  fileSearch?: boolean | undefined;
10693
12429
  fileCitations?: boolean | undefined;
12430
+ buildInfo?: boolean | undefined;
10694
12431
  remoteAgents?: {
10695
12432
  use?: boolean | undefined;
10696
12433
  create?: boolean | undefined;
@@ -10698,6 +12435,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10698
12435
  public?: boolean | undefined;
10699
12436
  } | undefined;
10700
12437
  }, {
12438
+ skills?: boolean | {
12439
+ use?: boolean | undefined;
12440
+ create?: boolean | undefined;
12441
+ share?: boolean | undefined;
12442
+ public?: boolean | undefined;
12443
+ defaultActiveOnShare?: boolean | undefined;
12444
+ } | undefined;
10701
12445
  webSearch?: boolean | undefined;
10702
12446
  parameters?: boolean | undefined;
10703
12447
  mcpServers?: {
@@ -10742,6 +12486,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10742
12486
  } | undefined;
10743
12487
  temporaryChat?: boolean | undefined;
10744
12488
  temporaryChatRetention?: number | undefined;
12489
+ autoSubmitFromUrl?: boolean | undefined;
12490
+ retentionMode?: RetentionMode | undefined;
10745
12491
  runCode?: boolean | undefined;
10746
12492
  peoplePicker?: {
10747
12493
  users?: boolean | undefined;
@@ -10753,6 +12499,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10753
12499
  } | undefined;
10754
12500
  fileSearch?: boolean | undefined;
10755
12501
  fileCitations?: boolean | undefined;
12502
+ buildInfo?: boolean | undefined;
10756
12503
  remoteAgents?: {
10757
12504
  use?: boolean | undefined;
10758
12505
  create?: boolean | undefined;
@@ -10785,29 +12532,135 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
10785
12532
  size?: "normal" | "compact" | "flexible" | "invisible" | undefined;
10786
12533
  } | undefined;
10787
12534
  }>>;
10788
- fileStrategy: z.ZodDefault<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob]>>;
12535
+ fileStrategy: z.ZodDefault<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
10789
12536
  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]>>;
12537
+ default: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
12538
+ avatar: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
12539
+ image: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
12540
+ document: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
12541
+ skills: z.ZodOptional<z.ZodEnum<[FileSources.local, FileSources.firebase, FileSources.s3, FileSources.azure_blob, FileSources.cloudfront]>>;
12542
+ }, "strip", z.ZodTypeAny, {
12543
+ default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
12544
+ avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
12545
+ image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
12546
+ document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
12547
+ skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
12548
+ }, {
12549
+ default?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
12550
+ avatar?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
12551
+ image?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
12552
+ document?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
12553
+ skills?: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront | undefined;
12554
+ }>>;
12555
+ cloudfront: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
12556
+ domain: z.ZodString;
12557
+ distributionId: z.ZodOptional<z.ZodString>;
12558
+ invalidateOnDelete: z.ZodDefault<z.ZodBoolean>;
12559
+ imageSigning: z.ZodDefault<z.ZodEnum<["none", "cookies", "url"]>>;
12560
+ urlExpiry: z.ZodDefault<z.ZodNumber>;
12561
+ cookieExpiry: z.ZodDefault<z.ZodNumber>;
12562
+ cookieDomain: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
12563
+ storageRegion: z.ZodOptional<z.ZodString>;
12564
+ includeRegionInPath: z.ZodDefault<z.ZodBoolean>;
12565
+ requireSignedAccess: z.ZodDefault<z.ZodBoolean>;
10794
12566
  }, "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;
12567
+ domain: string;
12568
+ invalidateOnDelete: boolean;
12569
+ imageSigning: "none" | "cookies" | "url";
12570
+ urlExpiry: number;
12571
+ cookieExpiry: number;
12572
+ includeRegionInPath: boolean;
12573
+ requireSignedAccess: boolean;
12574
+ distributionId?: string | undefined;
12575
+ cookieDomain?: string | undefined;
12576
+ storageRegion?: string | undefined;
12577
+ }, {
12578
+ domain: string;
12579
+ distributionId?: string | undefined;
12580
+ invalidateOnDelete?: boolean | undefined;
12581
+ imageSigning?: "none" | "cookies" | "url" | undefined;
12582
+ urlExpiry?: number | undefined;
12583
+ cookieExpiry?: number | undefined;
12584
+ cookieDomain?: string | undefined;
12585
+ storageRegion?: string | undefined;
12586
+ includeRegionInPath?: boolean | undefined;
12587
+ requireSignedAccess?: boolean | undefined;
12588
+ }>, {
12589
+ domain: string;
12590
+ invalidateOnDelete: boolean;
12591
+ imageSigning: "none" | "cookies" | "url";
12592
+ urlExpiry: number;
12593
+ cookieExpiry: number;
12594
+ includeRegionInPath: boolean;
12595
+ requireSignedAccess: boolean;
12596
+ distributionId?: string | undefined;
12597
+ cookieDomain?: string | undefined;
12598
+ storageRegion?: string | undefined;
12599
+ }, {
12600
+ domain: string;
12601
+ distributionId?: string | undefined;
12602
+ invalidateOnDelete?: boolean | undefined;
12603
+ imageSigning?: "none" | "cookies" | "url" | undefined;
12604
+ urlExpiry?: number | undefined;
12605
+ cookieExpiry?: number | undefined;
12606
+ cookieDomain?: string | undefined;
12607
+ storageRegion?: string | undefined;
12608
+ includeRegionInPath?: boolean | undefined;
12609
+ requireSignedAccess?: boolean | undefined;
12610
+ }>, {
12611
+ domain: string;
12612
+ invalidateOnDelete: boolean;
12613
+ imageSigning: "none" | "cookies" | "url";
12614
+ urlExpiry: number;
12615
+ cookieExpiry: number;
12616
+ includeRegionInPath: boolean;
12617
+ requireSignedAccess: boolean;
12618
+ distributionId?: string | undefined;
12619
+ cookieDomain?: string | undefined;
12620
+ storageRegion?: string | undefined;
10799
12621
  }, {
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;
12622
+ domain: string;
12623
+ distributionId?: string | undefined;
12624
+ invalidateOnDelete?: boolean | undefined;
12625
+ imageSigning?: "none" | "cookies" | "url" | undefined;
12626
+ urlExpiry?: number | undefined;
12627
+ cookieExpiry?: number | undefined;
12628
+ cookieDomain?: string | undefined;
12629
+ storageRegion?: string | undefined;
12630
+ includeRegionInPath?: boolean | undefined;
12631
+ requireSignedAccess?: boolean | undefined;
12632
+ }>, {
12633
+ domain: string;
12634
+ invalidateOnDelete: boolean;
12635
+ imageSigning: "none" | "cookies" | "url";
12636
+ urlExpiry: number;
12637
+ cookieExpiry: number;
12638
+ includeRegionInPath: boolean;
12639
+ requireSignedAccess: boolean;
12640
+ distributionId?: string | undefined;
12641
+ cookieDomain?: string | undefined;
12642
+ storageRegion?: string | undefined;
12643
+ }, {
12644
+ domain: string;
12645
+ distributionId?: string | undefined;
12646
+ invalidateOnDelete?: boolean | undefined;
12647
+ imageSigning?: "none" | "cookies" | "url" | undefined;
12648
+ urlExpiry?: number | undefined;
12649
+ cookieExpiry?: number | undefined;
12650
+ cookieDomain?: string | undefined;
12651
+ storageRegion?: string | undefined;
12652
+ includeRegionInPath?: boolean | undefined;
12653
+ requireSignedAccess?: boolean | undefined;
10804
12654
  }>>;
10805
12655
  actions: z.ZodOptional<z.ZodObject<{
10806
12656
  allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12657
+ 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
12658
  }, "strip", z.ZodTypeAny, {
10808
12659
  allowedDomains?: string[] | undefined;
12660
+ allowedAddresses?: string[] | undefined;
10809
12661
  }, {
10810
12662
  allowedDomains?: string[] | undefined;
12663
+ allowedAddresses?: string[] | undefined;
10811
12664
  }>>;
10812
12665
  registration: z.ZodDefault<z.ZodObject<{
10813
12666
  socialLogins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -11438,6 +13291,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11438
13291
  totalSizeLimit?: number | undefined;
11439
13292
  supportedMimeTypes?: string[] | undefined;
11440
13293
  }>>>;
13294
+ skills: z.ZodOptional<z.ZodObject<{
13295
+ fileSizeLimit: z.ZodOptional<z.ZodNumber>;
13296
+ }, "strip", z.ZodTypeAny, {
13297
+ fileSizeLimit?: number | undefined;
13298
+ }, {
13299
+ fileSizeLimit?: number | undefined;
13300
+ }>>;
11441
13301
  serverFileSizeLimit: z.ZodOptional<z.ZodNumber>;
11442
13302
  avatarSizeLimit: z.ZodOptional<z.ZodNumber>;
11443
13303
  fileTokenLimit: z.ZodOptional<z.ZodNumber>;
@@ -11485,6 +13345,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11485
13345
  text?: {
11486
13346
  supportedMimeTypes?: string[] | undefined;
11487
13347
  } | undefined;
13348
+ skills?: {
13349
+ fileSizeLimit?: number | undefined;
13350
+ } | undefined;
11488
13351
  ocr?: {
11489
13352
  supportedMimeTypes?: string[] | undefined;
11490
13353
  } | undefined;
@@ -11512,6 +13375,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11512
13375
  text?: {
11513
13376
  supportedMimeTypes?: string[] | undefined;
11514
13377
  } | undefined;
13378
+ skills?: {
13379
+ fileSizeLimit?: number | undefined;
13380
+ } | undefined;
11515
13381
  ocr?: {
11516
13382
  supportedMimeTypes?: string[] | undefined;
11517
13383
  } | undefined;
@@ -11539,7 +13405,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11539
13405
  modelSpecs: z.ZodOptional<z.ZodObject<{
11540
13406
  enforce: z.ZodDefault<z.ZodBoolean>;
11541
13407
  prioritize: z.ZodDefault<z.ZodBoolean>;
11542
- list: z.ZodArray<z.ZodObject<{
13408
+ list: z.ZodDefault<z.ZodArray<z.ZodObject<{
11543
13409
  name: z.ZodString;
11544
13410
  label: z.ZodString;
11545
13411
  preset: z.ZodObject<Omit<{
@@ -11547,6 +13413,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11547
13413
  greeting: z.ZodOptional<z.ZodString>;
11548
13414
  endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
11549
13415
  expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13416
+ isTemporary: z.ZodOptional<z.ZodBoolean>;
11550
13417
  messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11551
13418
  isArchived: z.ZodOptional<z.ZodBoolean>;
11552
13419
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -11739,9 +13606,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11739
13606
  defaultPreset: z.ZodOptional<z.ZodBoolean>;
11740
13607
  order: z.ZodOptional<z.ZodNumber>;
11741
13608
  endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
11742
- }, "conversationId" | "title" | "iconURL" | "greeting" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
13609
+ }, "conversationId" | "title" | "expiredAt" | "messages" | "isArchived" | "tags" | "user" | "spec" | "parentMessageId" | "file_ids" | "presetOverride" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
11743
13610
  endpoint: string | null;
13611
+ iconURL?: string | null | undefined;
13612
+ greeting?: string | undefined;
11744
13613
  endpointType?: EModelEndpoint | null | undefined;
13614
+ isTemporary?: boolean | undefined;
11745
13615
  tools?: string[] | {
11746
13616
  name: string;
11747
13617
  pluginKey: string;
@@ -11833,7 +13703,10 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11833
13703
  stop?: string[] | undefined;
11834
13704
  }, {
11835
13705
  endpoint: string | null;
13706
+ iconURL?: string | null | undefined;
13707
+ greeting?: string | undefined;
11836
13708
  endpointType?: EModelEndpoint | null | undefined;
13709
+ isTemporary?: boolean | undefined;
11837
13710
  tools?: string[] | {
11838
13711
  name: string;
11839
13712
  pluginKey: string;
@@ -11933,6 +13806,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11933
13806
  showIconInHeader: z.ZodOptional<z.ZodBoolean>;
11934
13807
  iconURL: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>>;
11935
13808
  authType: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").AuthType>>;
13809
+ hideBadgeRow: z.ZodOptional<z.ZodBoolean>;
11936
13810
  webSearch: z.ZodOptional<z.ZodBoolean>;
11937
13811
  fileSearch: z.ZodOptional<z.ZodBoolean>;
11938
13812
  executeCode: z.ZodOptional<z.ZodBoolean>;
@@ -11943,7 +13817,10 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
11943
13817
  name: string;
11944
13818
  preset: {
11945
13819
  endpoint: string | null;
13820
+ iconURL?: string | null | undefined;
13821
+ greeting?: string | undefined;
11946
13822
  endpointType?: EModelEndpoint | null | undefined;
13823
+ isTemporary?: boolean | undefined;
11947
13824
  tools?: string[] | {
11948
13825
  name: string;
11949
13826
  pluginKey: string;
@@ -12047,13 +13924,17 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12047
13924
  showIconInMenu?: boolean | undefined;
12048
13925
  showIconInHeader?: boolean | undefined;
12049
13926
  authType?: import("./schemas").AuthType | undefined;
13927
+ hideBadgeRow?: boolean | undefined;
12050
13928
  executeCode?: boolean | undefined;
12051
13929
  }, {
12052
13930
  label: string;
12053
13931
  name: string;
12054
13932
  preset: {
12055
13933
  endpoint: string | null;
13934
+ iconURL?: string | null | undefined;
13935
+ greeting?: string | undefined;
12056
13936
  endpointType?: EModelEndpoint | null | undefined;
13937
+ isTemporary?: boolean | undefined;
12057
13938
  tools?: string[] | {
12058
13939
  name: string;
12059
13940
  pluginKey: string;
@@ -12157,8 +14038,9 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12157
14038
  showIconInMenu?: boolean | undefined;
12158
14039
  showIconInHeader?: boolean | undefined;
12159
14040
  authType?: import("./schemas").AuthType | undefined;
14041
+ hideBadgeRow?: boolean | undefined;
12160
14042
  executeCode?: boolean | undefined;
12161
- }>, "many">;
14043
+ }>, "many">>;
12162
14044
  addedEndpoints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
12163
14045
  }, "strip", z.ZodTypeAny, {
12164
14046
  enforce: boolean;
@@ -12168,7 +14050,10 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12168
14050
  name: string;
12169
14051
  preset: {
12170
14052
  endpoint: string | null;
14053
+ iconURL?: string | null | undefined;
14054
+ greeting?: string | undefined;
12171
14055
  endpointType?: EModelEndpoint | null | undefined;
14056
+ isTemporary?: boolean | undefined;
12172
14057
  tools?: string[] | {
12173
14058
  name: string;
12174
14059
  pluginKey: string;
@@ -12272,16 +14157,22 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12272
14157
  showIconInMenu?: boolean | undefined;
12273
14158
  showIconInHeader?: boolean | undefined;
12274
14159
  authType?: import("./schemas").AuthType | undefined;
14160
+ hideBadgeRow?: boolean | undefined;
12275
14161
  executeCode?: boolean | undefined;
12276
14162
  }[];
12277
14163
  addedEndpoints?: string[] | undefined;
12278
14164
  }, {
12279
- list: {
14165
+ enforce?: boolean | undefined;
14166
+ prioritize?: boolean | undefined;
14167
+ list?: {
12280
14168
  label: string;
12281
14169
  name: string;
12282
14170
  preset: {
12283
14171
  endpoint: string | null;
14172
+ iconURL?: string | null | undefined;
14173
+ greeting?: string | undefined;
12284
14174
  endpointType?: EModelEndpoint | null | undefined;
14175
+ isTemporary?: boolean | undefined;
12285
14176
  tools?: string[] | {
12286
14177
  name: string;
12287
14178
  pluginKey: string;
@@ -12385,13 +14276,13 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12385
14276
  showIconInMenu?: boolean | undefined;
12386
14277
  showIconInHeader?: boolean | undefined;
12387
14278
  authType?: import("./schemas").AuthType | undefined;
14279
+ hideBadgeRow?: boolean | undefined;
12388
14280
  executeCode?: boolean | undefined;
12389
- }[];
12390
- enforce?: boolean | undefined;
12391
- prioritize?: boolean | undefined;
14281
+ }[] | undefined;
12392
14282
  addedEndpoints?: string[] | undefined;
12393
14283
  }>>;
12394
14284
  endpoints: z.ZodOptional<z.ZodEffects<z.ZodObject<{
14285
+ 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
14286
  all: z.ZodOptional<z.ZodObject<Omit<{
12396
14287
  streamRate: z.ZodOptional<z.ZodNumber>;
12397
14288
  baseURL: z.ZodOptional<z.ZodString>;
@@ -12952,6 +14843,96 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12952
14843
  minRelevanceScore: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
12953
14844
  allowedProviders: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
12954
14845
  capabilities: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof AgentCapabilities>, "many">>>;
14846
+ remoteApi: z.ZodOptional<z.ZodObject<{
14847
+ auth: z.ZodOptional<z.ZodObject<{
14848
+ apiKey: z.ZodOptional<z.ZodObject<{
14849
+ enabled: z.ZodDefault<z.ZodBoolean>;
14850
+ }, "strip", z.ZodTypeAny, {
14851
+ enabled: boolean;
14852
+ }, {
14853
+ enabled?: boolean | undefined;
14854
+ }>>;
14855
+ oidc: z.ZodOptional<z.ZodEffects<z.ZodObject<{
14856
+ enabled: z.ZodDefault<z.ZodBoolean>;
14857
+ issuer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
14858
+ audience: z.ZodOptional<z.ZodString>;
14859
+ jwksUri: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
14860
+ scope: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
14861
+ }, "strip", z.ZodTypeAny, {
14862
+ enabled: boolean;
14863
+ scope?: string | undefined;
14864
+ audience?: string | undefined;
14865
+ issuer?: string | undefined;
14866
+ jwksUri?: string | undefined;
14867
+ }, {
14868
+ enabled?: boolean | undefined;
14869
+ scope?: string | undefined;
14870
+ audience?: string | undefined;
14871
+ issuer?: string | undefined;
14872
+ jwksUri?: string | undefined;
14873
+ }>, {
14874
+ enabled: boolean;
14875
+ scope?: string | undefined;
14876
+ audience?: string | undefined;
14877
+ issuer?: string | undefined;
14878
+ jwksUri?: string | undefined;
14879
+ }, {
14880
+ enabled?: boolean | undefined;
14881
+ scope?: string | undefined;
14882
+ audience?: string | undefined;
14883
+ issuer?: string | undefined;
14884
+ jwksUri?: string | undefined;
14885
+ }>>;
14886
+ }, "strip", z.ZodTypeAny, {
14887
+ apiKey?: {
14888
+ enabled: boolean;
14889
+ } | undefined;
14890
+ oidc?: {
14891
+ enabled: boolean;
14892
+ scope?: string | undefined;
14893
+ audience?: string | undefined;
14894
+ issuer?: string | undefined;
14895
+ jwksUri?: string | undefined;
14896
+ } | undefined;
14897
+ }, {
14898
+ apiKey?: {
14899
+ enabled?: boolean | undefined;
14900
+ } | undefined;
14901
+ oidc?: {
14902
+ enabled?: boolean | undefined;
14903
+ scope?: string | undefined;
14904
+ audience?: string | undefined;
14905
+ issuer?: string | undefined;
14906
+ jwksUri?: string | undefined;
14907
+ } | undefined;
14908
+ }>>;
14909
+ }, "strip", z.ZodTypeAny, {
14910
+ auth?: {
14911
+ apiKey?: {
14912
+ enabled: boolean;
14913
+ } | undefined;
14914
+ oidc?: {
14915
+ enabled: boolean;
14916
+ scope?: string | undefined;
14917
+ audience?: string | undefined;
14918
+ issuer?: string | undefined;
14919
+ jwksUri?: string | undefined;
14920
+ } | undefined;
14921
+ } | undefined;
14922
+ }, {
14923
+ auth?: {
14924
+ apiKey?: {
14925
+ enabled?: boolean | undefined;
14926
+ } | undefined;
14927
+ oidc?: {
14928
+ enabled?: boolean | undefined;
14929
+ scope?: string | undefined;
14930
+ audience?: string | undefined;
14931
+ issuer?: string | undefined;
14932
+ jwksUri?: string | undefined;
14933
+ } | undefined;
14934
+ } | undefined;
14935
+ }>>;
12955
14936
  }, "strip", z.ZodTypeAny, {
12956
14937
  disableBuilder: boolean;
12957
14938
  capabilities: AgentCapabilities[];
@@ -12969,6 +14950,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12969
14950
  recursionLimit?: number | undefined;
12970
14951
  maxRecursionLimit?: number | undefined;
12971
14952
  allowedProviders?: string[] | undefined;
14953
+ remoteApi?: {
14954
+ auth?: {
14955
+ apiKey?: {
14956
+ enabled: boolean;
14957
+ } | undefined;
14958
+ oidc?: {
14959
+ enabled: boolean;
14960
+ scope?: string | undefined;
14961
+ audience?: string | undefined;
14962
+ issuer?: string | undefined;
14963
+ jwksUri?: string | undefined;
14964
+ } | undefined;
14965
+ } | undefined;
14966
+ } | undefined;
12972
14967
  }, {
12973
14968
  streamRate?: number | undefined;
12974
14969
  titlePrompt?: string | undefined;
@@ -12986,6 +14981,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
12986
14981
  maxCitationsPerFile?: number | undefined;
12987
14982
  minRelevanceScore?: number | undefined;
12988
14983
  allowedProviders?: string[] | undefined;
14984
+ remoteApi?: {
14985
+ auth?: {
14986
+ apiKey?: {
14987
+ enabled?: boolean | undefined;
14988
+ } | undefined;
14989
+ oidc?: {
14990
+ enabled?: boolean | undefined;
14991
+ scope?: string | undefined;
14992
+ audience?: string | undefined;
14993
+ issuer?: string | undefined;
14994
+ jwksUri?: string | undefined;
14995
+ } | undefined;
14996
+ } | undefined;
14997
+ } | undefined;
12989
14998
  }>>>;
12990
14999
  custom: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
12991
15000
  streamRate: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -13360,6 +15369,22 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13360
15369
  } & {
13361
15370
  availableRegions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13362
15371
  models: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
15372
+ guardrailConfig: z.ZodOptional<z.ZodObject<{
15373
+ guardrailIdentifier: z.ZodString;
15374
+ guardrailVersion: z.ZodString;
15375
+ trace: z.ZodOptional<z.ZodEnum<["enabled", "disabled", "enabled_full"]>>;
15376
+ streamProcessingMode: z.ZodOptional<z.ZodEnum<["sync", "async"]>>;
15377
+ }, "strip", z.ZodTypeAny, {
15378
+ guardrailIdentifier: string;
15379
+ guardrailVersion: string;
15380
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
15381
+ streamProcessingMode?: "async" | "sync" | undefined;
15382
+ }, {
15383
+ guardrailIdentifier: string;
15384
+ guardrailVersion: string;
15385
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
15386
+ streamProcessingMode?: "async" | "sync" | undefined;
15387
+ }>>;
13363
15388
  inferenceProfiles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
13364
15389
  }, "strip", z.ZodTypeAny, {
13365
15390
  baseURL?: string | undefined;
@@ -13373,6 +15398,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13373
15398
  maxToolResultChars?: number | undefined;
13374
15399
  models?: string[] | undefined;
13375
15400
  availableRegions?: string[] | undefined;
15401
+ guardrailConfig?: {
15402
+ guardrailIdentifier: string;
15403
+ guardrailVersion: string;
15404
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
15405
+ streamProcessingMode?: "async" | "sync" | undefined;
15406
+ } | undefined;
13376
15407
  inferenceProfiles?: Record<string, string> | undefined;
13377
15408
  }, {
13378
15409
  baseURL?: string | undefined;
@@ -13386,9 +15417,16 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13386
15417
  maxToolResultChars?: number | undefined;
13387
15418
  models?: string[] | undefined;
13388
15419
  availableRegions?: string[] | undefined;
15420
+ guardrailConfig?: {
15421
+ guardrailIdentifier: string;
15422
+ guardrailVersion: string;
15423
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
15424
+ streamProcessingMode?: "async" | "sync" | undefined;
15425
+ } | undefined;
13389
15426
  inferenceProfiles?: Record<string, string> | undefined;
13390
15427
  }>>;
13391
15428
  }, "strict", z.ZodTypeAny, {
15429
+ allowedAddresses?: string[] | undefined;
13392
15430
  azureOpenAI?: ({
13393
15431
  groups: ({
13394
15432
  group: string;
@@ -13539,6 +15577,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13539
15577
  recursionLimit?: number | undefined;
13540
15578
  maxRecursionLimit?: number | undefined;
13541
15579
  allowedProviders?: string[] | undefined;
15580
+ remoteApi?: {
15581
+ auth?: {
15582
+ apiKey?: {
15583
+ enabled: boolean;
15584
+ } | undefined;
15585
+ oidc?: {
15586
+ enabled: boolean;
15587
+ scope?: string | undefined;
15588
+ audience?: string | undefined;
15589
+ issuer?: string | undefined;
15590
+ jwksUri?: string | undefined;
15591
+ } | undefined;
15592
+ } | undefined;
15593
+ } | undefined;
13542
15594
  } | undefined;
13543
15595
  custom?: {
13544
15596
  iconURL?: string | undefined;
@@ -13617,6 +15669,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13617
15669
  maxToolResultChars?: number | undefined;
13618
15670
  models?: string[] | undefined;
13619
15671
  availableRegions?: string[] | undefined;
15672
+ guardrailConfig?: {
15673
+ guardrailIdentifier: string;
15674
+ guardrailVersion: string;
15675
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
15676
+ streamProcessingMode?: "async" | "sync" | undefined;
15677
+ } | undefined;
13620
15678
  inferenceProfiles?: Record<string, string> | undefined;
13621
15679
  } | undefined;
13622
15680
  all?: {
@@ -13630,6 +15688,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13630
15688
  maxToolResultChars?: number | undefined;
13631
15689
  } | undefined;
13632
15690
  }, {
15691
+ allowedAddresses?: string[] | undefined;
13633
15692
  azureOpenAI?: ({
13634
15693
  groups: ({
13635
15694
  group: string;
@@ -13780,6 +15839,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13780
15839
  maxCitationsPerFile?: number | undefined;
13781
15840
  minRelevanceScore?: number | undefined;
13782
15841
  allowedProviders?: string[] | undefined;
15842
+ remoteApi?: {
15843
+ auth?: {
15844
+ apiKey?: {
15845
+ enabled?: boolean | undefined;
15846
+ } | undefined;
15847
+ oidc?: {
15848
+ enabled?: boolean | undefined;
15849
+ scope?: string | undefined;
15850
+ audience?: string | undefined;
15851
+ issuer?: string | undefined;
15852
+ jwksUri?: string | undefined;
15853
+ } | undefined;
15854
+ } | undefined;
15855
+ } | undefined;
13783
15856
  } | undefined;
13784
15857
  custom?: {
13785
15858
  iconURL?: string | undefined;
@@ -13858,6 +15931,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13858
15931
  maxToolResultChars?: number | undefined;
13859
15932
  models?: string[] | undefined;
13860
15933
  availableRegions?: string[] | undefined;
15934
+ guardrailConfig?: {
15935
+ guardrailIdentifier: string;
15936
+ guardrailVersion: string;
15937
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
15938
+ streamProcessingMode?: "async" | "sync" | undefined;
15939
+ } | undefined;
13861
15940
  inferenceProfiles?: Record<string, string> | undefined;
13862
15941
  } | undefined;
13863
15942
  all?: {
@@ -13871,6 +15950,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13871
15950
  maxToolResultChars?: number | undefined;
13872
15951
  } | undefined;
13873
15952
  }>, {
15953
+ allowedAddresses?: string[] | undefined;
13874
15954
  azureOpenAI?: ({
13875
15955
  groups: ({
13876
15956
  group: string;
@@ -14021,6 +16101,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14021
16101
  recursionLimit?: number | undefined;
14022
16102
  maxRecursionLimit?: number | undefined;
14023
16103
  allowedProviders?: string[] | undefined;
16104
+ remoteApi?: {
16105
+ auth?: {
16106
+ apiKey?: {
16107
+ enabled: boolean;
16108
+ } | undefined;
16109
+ oidc?: {
16110
+ enabled: boolean;
16111
+ scope?: string | undefined;
16112
+ audience?: string | undefined;
16113
+ issuer?: string | undefined;
16114
+ jwksUri?: string | undefined;
16115
+ } | undefined;
16116
+ } | undefined;
16117
+ } | undefined;
14024
16118
  } | undefined;
14025
16119
  custom?: {
14026
16120
  iconURL?: string | undefined;
@@ -14099,6 +16193,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14099
16193
  maxToolResultChars?: number | undefined;
14100
16194
  models?: string[] | undefined;
14101
16195
  availableRegions?: string[] | undefined;
16196
+ guardrailConfig?: {
16197
+ guardrailIdentifier: string;
16198
+ guardrailVersion: string;
16199
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
16200
+ streamProcessingMode?: "async" | "sync" | undefined;
16201
+ } | undefined;
14102
16202
  inferenceProfiles?: Record<string, string> | undefined;
14103
16203
  } | undefined;
14104
16204
  all?: {
@@ -14112,6 +16212,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14112
16212
  maxToolResultChars?: number | undefined;
14113
16213
  } | undefined;
14114
16214
  }, {
16215
+ allowedAddresses?: string[] | undefined;
14115
16216
  azureOpenAI?: ({
14116
16217
  groups: ({
14117
16218
  group: string;
@@ -14262,6 +16363,20 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14262
16363
  maxCitationsPerFile?: number | undefined;
14263
16364
  minRelevanceScore?: number | undefined;
14264
16365
  allowedProviders?: string[] | undefined;
16366
+ remoteApi?: {
16367
+ auth?: {
16368
+ apiKey?: {
16369
+ enabled?: boolean | undefined;
16370
+ } | undefined;
16371
+ oidc?: {
16372
+ enabled?: boolean | undefined;
16373
+ scope?: string | undefined;
16374
+ audience?: string | undefined;
16375
+ issuer?: string | undefined;
16376
+ jwksUri?: string | undefined;
16377
+ } | undefined;
16378
+ } | undefined;
16379
+ } | undefined;
14265
16380
  } | undefined;
14266
16381
  custom?: {
14267
16382
  iconURL?: string | undefined;
@@ -14340,6 +16455,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14340
16455
  maxToolResultChars?: number | undefined;
14341
16456
  models?: string[] | undefined;
14342
16457
  availableRegions?: string[] | undefined;
16458
+ guardrailConfig?: {
16459
+ guardrailIdentifier: string;
16460
+ guardrailVersion: string;
16461
+ trace?: "disabled" | "enabled" | "enabled_full" | undefined;
16462
+ streamProcessingMode?: "async" | "sync" | undefined;
16463
+ } | undefined;
14343
16464
  inferenceProfiles?: Record<string, string> | undefined;
14344
16465
  } | undefined;
14345
16466
  all?: {
@@ -14798,7 +16919,11 @@ export declare enum SettingsTabValues {
14798
16919
  /**
14799
16920
  * Tab for Personalization Settings
14800
16921
  */
14801
- PERSONALIZATION = "personalization"
16922
+ PERSONALIZATION = "personalization",
16923
+ /**
16924
+ * Tab for About / Build Info
16925
+ */
16926
+ ABOUT = "about"
14802
16927
  }
14803
16928
  export declare enum STTProviders {
14804
16929
  /**
@@ -14830,10 +16955,18 @@ export declare enum TTSProviders {
14830
16955
  }
14831
16956
  /** Enum for app-wide constants */
14832
16957
  export declare enum Constants {
14833
- /** Key for the app's version. */
14834
- VERSION = "v0.8.5",
16958
+ /**
16959
+ * Key for the app's version. The placeholder `v0.8.6` is
16960
+ * swapped in by `@rollup/plugin-replace` during `npm run build:data-provider`
16961
+ * using the value of the root `package.json`'s `version` field. Consumers
16962
+ * always import this via the built dist bundle (see `main` field in
16963
+ * `packages/data-provider/package.json`), so production and UI code get the
16964
+ * substituted value. Only tests that import the TypeScript source directly
16965
+ * would observe the raw placeholder.
16966
+ */
16967
+ VERSION = "v0.8.6",
14835
16968
  /** Key for the Custom Config's version (librechat.yaml). */
14836
- CONFIG_VERSION = "1.3.9",
16969
+ CONFIG_VERSION = "1.3.12",
14837
16970
  /** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */
14838
16971
  NO_PARENT = "00000000-0000-0000-0000-000000000000",
14839
16972
  /** Standard value to use whatever the submission prelim. `responseMessageId` is */
@@ -14880,8 +17013,20 @@ export declare enum Constants {
14880
17013
  /** Placeholder Agent ID for Ephemeral Agents */
14881
17014
  EPHEMERAL_AGENT_ID = "ephemeral",
14882
17015
  /** Programmatic Tool Calling tool name */
14883
- PROGRAMMATIC_TOOL_CALLING = "run_tools_with_code"
17016
+ PROGRAMMATIC_TOOL_CALLING = "run_tools_with_code",
17017
+ /** Bash Programmatic Tool Calling tool name */
17018
+ BASH_PROGRAMMATIC_TOOL_CALLING = "run_tools_with_bash",
17019
+ /** Subagent spawn tool name (must match `@librechat/agents` `Constants.SUBAGENT`). */
17020
+ SUBAGENT = "subagent"
14884
17021
  }
17022
+ /** Maximum number of explicit subagents per parent agent. UI + Zod schema share this. */
17023
+ export declare const MAX_SUBAGENTS = 10;
17024
+ /** Maximum explicit subagent hops allowed from any root agent at runtime. */
17025
+ export declare const MAX_SUBAGENT_DEPTH = 5;
17026
+ /** Maximum unique explicit subagent targets that may be loaded at runtime. */
17027
+ export declare const MAX_SUBAGENT_GRAPH_NODES = 50;
17028
+ /** Maximum expanded SubagentConfig entries embedded into one run request. */
17029
+ export declare const MAX_SUBAGENT_RUN_CONFIGS = 100;
14885
17030
  export declare enum LocalStorageKeys {
14886
17031
  /** Key for the admin defined App Title */
14887
17032
  APP_TITLE = "appTitle",
@@ -14925,6 +17070,8 @@ export declare enum LocalStorageKeys {
14925
17070
  LAST_FILE_SEARCH_TOGGLE_ = "LAST_FILE_SEARCH_TOGGLE_",
14926
17071
  /** Last checked toggle for Artifacts per conversation ID */
14927
17072
  LAST_ARTIFACTS_TOGGLE_ = "LAST_ARTIFACTS_TOGGLE_",
17073
+ /** Last checked toggle for Skills per conversation ID */
17074
+ LAST_SKILLS_TOGGLE_ = "LAST_SKILLS_TOGGLE_",
14928
17075
  /** Key for the last selected agent provider */
14929
17076
  LAST_AGENT_PROVIDER = "lastAgentProvider",
14930
17077
  /** Key for the last selected agent model */