librechat-data-provider 0.8.507 → 0.8.509

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.
@@ -1220,6 +1220,10 @@ export declare const endpointSchema: z.ZodObject<{
1220
1220
  defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
1221
1221
  reasoningFormat: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ReasoningParameterFormat>>;
1222
1222
  reasoningKey: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ReasoningResponseKey>>;
1223
+ /** Replays `reasoning_content` within a run's tool-call turns (e.g. Xiaomi MiMo, Kimi). */
1224
+ includeReasoningContent: z.ZodOptional<z.ZodBoolean>;
1225
+ /** Also reconstructs `reasoning_content` from persisted history across turns (implies `includeReasoningContent`). */
1226
+ includeReasoningHistory: z.ZodOptional<z.ZodBoolean>;
1223
1227
  paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1224
1228
  key: z.ZodString;
1225
1229
  description: z.ZodOptional<z.ZodString>;
@@ -1332,6 +1336,8 @@ export declare const endpointSchema: z.ZodObject<{
1332
1336
  defaultParamsEndpoint: string;
1333
1337
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
1334
1338
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
1339
+ includeReasoningContent?: boolean | undefined;
1340
+ includeReasoningHistory?: boolean | undefined;
1335
1341
  paramDefinitions?: {
1336
1342
  key: string;
1337
1343
  type?: SettingTypes | undefined;
@@ -1370,6 +1376,8 @@ export declare const endpointSchema: z.ZodObject<{
1370
1376
  defaultParamsEndpoint?: string | undefined;
1371
1377
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
1372
1378
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
1379
+ includeReasoningContent?: boolean | undefined;
1380
+ includeReasoningHistory?: boolean | undefined;
1373
1381
  paramDefinitions?: {
1374
1382
  key: string;
1375
1383
  type?: SettingTypes | undefined;
@@ -1457,6 +1465,8 @@ export declare const endpointSchema: z.ZodObject<{
1457
1465
  defaultParamsEndpoint: string;
1458
1466
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
1459
1467
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
1468
+ includeReasoningContent?: boolean | undefined;
1469
+ includeReasoningHistory?: boolean | undefined;
1460
1470
  paramDefinitions?: {
1461
1471
  key: string;
1462
1472
  type?: SettingTypes | undefined;
@@ -1532,6 +1542,8 @@ export declare const endpointSchema: z.ZodObject<{
1532
1542
  defaultParamsEndpoint?: string | undefined;
1533
1543
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
1534
1544
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
1545
+ includeReasoningContent?: boolean | undefined;
1546
+ includeReasoningHistory?: boolean | undefined;
1535
1547
  paramDefinitions?: {
1536
1548
  key: string;
1537
1549
  type?: SettingTypes | undefined;
@@ -2326,6 +2338,8 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
2326
2338
  }>>;
2327
2339
  fileSearch: z.ZodOptional<z.ZodBoolean>;
2328
2340
  fileCitations: z.ZodOptional<z.ZodBoolean>;
2341
+ /** Tool keys (and `'mcp'` or an MCP server name) pinned to the prompt bar by default */
2342
+ defaultPinnedTools: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2329
2343
  buildInfo: z.ZodOptional<z.ZodBoolean>;
2330
2344
  remoteAgents: z.ZodOptional<z.ZodObject<{
2331
2345
  use: z.ZodOptional<z.ZodBoolean>;
@@ -2366,14 +2380,17 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
2366
2380
  create: z.ZodOptional<z.ZodBoolean>;
2367
2381
  share: z.ZodOptional<z.ZodBoolean>;
2368
2382
  public: z.ZodOptional<z.ZodBoolean>;
2383
+ snapshotFiles: z.ZodOptional<z.ZodBoolean>;
2369
2384
  }, "strip", z.ZodTypeAny, {
2370
2385
  public?: boolean | undefined;
2371
2386
  share?: boolean | undefined;
2372
2387
  create?: boolean | undefined;
2388
+ snapshotFiles?: boolean | undefined;
2373
2389
  }, {
2374
2390
  public?: boolean | undefined;
2375
2391
  share?: boolean | undefined;
2376
2392
  create?: boolean | undefined;
2393
+ snapshotFiles?: boolean | undefined;
2377
2394
  }>]>>;
2378
2395
  }, "strip", z.ZodTypeAny, {
2379
2396
  retentionMode: RetentionMode;
@@ -2448,6 +2465,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
2448
2465
  use?: boolean | undefined;
2449
2466
  } | undefined;
2450
2467
  fileCitations?: boolean | undefined;
2468
+ defaultPinnedTools?: string[] | undefined;
2451
2469
  buildInfo?: boolean | undefined;
2452
2470
  remoteAgents?: {
2453
2471
  public?: boolean | undefined;
@@ -2459,6 +2477,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
2459
2477
  public?: boolean | undefined;
2460
2478
  share?: boolean | undefined;
2461
2479
  create?: boolean | undefined;
2480
+ snapshotFiles?: boolean | undefined;
2462
2481
  } | undefined;
2463
2482
  }, {
2464
2483
  agents?: boolean | {
@@ -2533,6 +2552,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
2533
2552
  use?: boolean | undefined;
2534
2553
  } | undefined;
2535
2554
  fileCitations?: boolean | undefined;
2555
+ defaultPinnedTools?: string[] | undefined;
2536
2556
  buildInfo?: boolean | undefined;
2537
2557
  remoteAgents?: {
2538
2558
  public?: boolean | undefined;
@@ -2544,6 +2564,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
2544
2564
  public?: boolean | undefined;
2545
2565
  share?: boolean | undefined;
2546
2566
  create?: boolean | undefined;
2567
+ snapshotFiles?: boolean | undefined;
2547
2568
  } | undefined;
2548
2569
  }>>;
2549
2570
  export type TInterfaceConfig = z.infer<typeof interfaceSchema>;
@@ -2639,6 +2660,8 @@ export type TStartupConfig = {
2639
2660
  modelDescriptions?: Record<string, Record<string, string>>;
2640
2661
  sharedLinksEnabled: boolean;
2641
2662
  publicSharedLinksEnabled: boolean;
2663
+ /** Whether shared links snapshot conversation files (gates the per-link "share files" checkbox). */
2664
+ sharedLinksSnapshotFilesEnabled?: boolean;
2642
2665
  /** Effective default timing for when conversation titles become fetchable.
2643
2666
  * `immediate` = fetch in parallel with the active stream (default);
2644
2667
  * `final` = fetch only after the stream completes (legacy). */
@@ -2684,6 +2707,10 @@ export type TStartupConfig = {
2684
2707
  buildDate?: string | null;
2685
2708
  };
2686
2709
  };
2710
+ export type TSharedLinkStartupInterface = Pick<Partial<TInterfaceConfig>, 'privacyPolicy' | 'termsOfService'>;
2711
+ export type TSharedLinkStartupConfig = Pick<TStartupConfig, 'appTitle'> & Pick<Partial<TStartupConfig>, 'analyticsGtmId' | 'bundlerURL' | 'customFooter' | 'staticBundlerURL'> & {
2712
+ interface?: TSharedLinkStartupInterface;
2713
+ };
2687
2714
  export declare enum OCRStrategy {
2688
2715
  MISTRAL_OCR = "mistral_ocr",
2689
2716
  CUSTOM_OCR = "custom_ocr",
@@ -3360,6 +3387,10 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3360
3387
  defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
3361
3388
  reasoningFormat: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ReasoningParameterFormat>>;
3362
3389
  reasoningKey: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ReasoningResponseKey>>;
3390
+ /** Replays `reasoning_content` within a run's tool-call turns (e.g. Xiaomi MiMo, Kimi). */
3391
+ includeReasoningContent: z.ZodOptional<z.ZodBoolean>;
3392
+ /** Also reconstructs `reasoning_content` from persisted history across turns (implies `includeReasoningContent`). */
3393
+ includeReasoningHistory: z.ZodOptional<z.ZodBoolean>;
3363
3394
  paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
3364
3395
  key: z.ZodString;
3365
3396
  description: z.ZodOptional<z.ZodString>;
@@ -3472,6 +3503,8 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3472
3503
  defaultParamsEndpoint: string;
3473
3504
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
3474
3505
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
3506
+ includeReasoningContent?: boolean | undefined;
3507
+ includeReasoningHistory?: boolean | undefined;
3475
3508
  paramDefinitions?: {
3476
3509
  key: string;
3477
3510
  type?: SettingTypes | undefined;
@@ -3510,6 +3543,8 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3510
3543
  defaultParamsEndpoint?: string | undefined;
3511
3544
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
3512
3545
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
3546
+ includeReasoningContent?: boolean | undefined;
3547
+ includeReasoningHistory?: boolean | undefined;
3513
3548
  paramDefinitions?: {
3514
3549
  key: string;
3515
3550
  type?: SettingTypes | undefined;
@@ -3597,6 +3632,8 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3597
3632
  defaultParamsEndpoint: string;
3598
3633
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
3599
3634
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
3635
+ includeReasoningContent?: boolean | undefined;
3636
+ includeReasoningHistory?: boolean | undefined;
3600
3637
  paramDefinitions?: {
3601
3638
  key: string;
3602
3639
  type?: SettingTypes | undefined;
@@ -3672,6 +3709,8 @@ declare const customEndpointsSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3672
3709
  defaultParamsEndpoint?: string | undefined;
3673
3710
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
3674
3711
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
3712
+ includeReasoningContent?: boolean | undefined;
3713
+ includeReasoningHistory?: boolean | undefined;
3675
3714
  paramDefinitions?: {
3676
3715
  key: string;
3677
3716
  type?: SettingTypes | undefined;
@@ -5549,6 +5588,8 @@ export declare const configSchema: z.ZodObject<{
5549
5588
  }>>;
5550
5589
  fileSearch: z.ZodOptional<z.ZodBoolean>;
5551
5590
  fileCitations: z.ZodOptional<z.ZodBoolean>;
5591
+ /** Tool keys (and `'mcp'` or an MCP server name) pinned to the prompt bar by default */
5592
+ defaultPinnedTools: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5552
5593
  buildInfo: z.ZodOptional<z.ZodBoolean>;
5553
5594
  remoteAgents: z.ZodOptional<z.ZodObject<{
5554
5595
  use: z.ZodOptional<z.ZodBoolean>;
@@ -5589,14 +5630,17 @@ export declare const configSchema: z.ZodObject<{
5589
5630
  create: z.ZodOptional<z.ZodBoolean>;
5590
5631
  share: z.ZodOptional<z.ZodBoolean>;
5591
5632
  public: z.ZodOptional<z.ZodBoolean>;
5633
+ snapshotFiles: z.ZodOptional<z.ZodBoolean>;
5592
5634
  }, "strip", z.ZodTypeAny, {
5593
5635
  public?: boolean | undefined;
5594
5636
  share?: boolean | undefined;
5595
5637
  create?: boolean | undefined;
5638
+ snapshotFiles?: boolean | undefined;
5596
5639
  }, {
5597
5640
  public?: boolean | undefined;
5598
5641
  share?: boolean | undefined;
5599
5642
  create?: boolean | undefined;
5643
+ snapshotFiles?: boolean | undefined;
5600
5644
  }>]>>;
5601
5645
  }, "strip", z.ZodTypeAny, {
5602
5646
  retentionMode: RetentionMode;
@@ -5671,6 +5715,7 @@ export declare const configSchema: z.ZodObject<{
5671
5715
  use?: boolean | undefined;
5672
5716
  } | undefined;
5673
5717
  fileCitations?: boolean | undefined;
5718
+ defaultPinnedTools?: string[] | undefined;
5674
5719
  buildInfo?: boolean | undefined;
5675
5720
  remoteAgents?: {
5676
5721
  public?: boolean | undefined;
@@ -5682,6 +5727,7 @@ export declare const configSchema: z.ZodObject<{
5682
5727
  public?: boolean | undefined;
5683
5728
  share?: boolean | undefined;
5684
5729
  create?: boolean | undefined;
5730
+ snapshotFiles?: boolean | undefined;
5685
5731
  } | undefined;
5686
5732
  }, {
5687
5733
  agents?: boolean | {
@@ -5756,6 +5802,7 @@ export declare const configSchema: z.ZodObject<{
5756
5802
  use?: boolean | undefined;
5757
5803
  } | undefined;
5758
5804
  fileCitations?: boolean | undefined;
5805
+ defaultPinnedTools?: string[] | undefined;
5759
5806
  buildInfo?: boolean | undefined;
5760
5807
  remoteAgents?: {
5761
5808
  public?: boolean | undefined;
@@ -5767,6 +5814,7 @@ export declare const configSchema: z.ZodObject<{
5767
5814
  public?: boolean | undefined;
5768
5815
  share?: boolean | undefined;
5769
5816
  create?: boolean | undefined;
5817
+ snapshotFiles?: boolean | undefined;
5770
5818
  } | undefined;
5771
5819
  }>>;
5772
5820
  turnstile: z.ZodOptional<z.ZodObject<{
@@ -6801,6 +6849,7 @@ export declare const configSchema: z.ZodObject<{
6801
6849
  effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").AnthropicEffort>>>;
6802
6850
  thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ThinkingDisplay>>>;
6803
6851
  web_search: z.ZodOptional<z.ZodBoolean>;
6852
+ url_context: z.ZodOptional<z.ZodBoolean>;
6804
6853
  disableStreaming: z.ZodOptional<z.ZodBoolean>;
6805
6854
  assistant_id: z.ZodOptional<z.ZodString>;
6806
6855
  agent_id: z.ZodOptional<z.ZodString>;
@@ -6935,6 +6984,7 @@ export declare const configSchema: z.ZodObject<{
6935
6984
  effort?: import("./schemas").AnthropicEffort | null | undefined;
6936
6985
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
6937
6986
  web_search?: boolean | undefined;
6987
+ url_context?: boolean | undefined;
6938
6988
  disableStreaming?: boolean | undefined;
6939
6989
  assistant_id?: string | undefined;
6940
6990
  agent_id?: string | undefined;
@@ -7033,6 +7083,7 @@ export declare const configSchema: z.ZodObject<{
7033
7083
  effort?: import("./schemas").AnthropicEffort | null | undefined;
7034
7084
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
7035
7085
  web_search?: boolean | undefined;
7086
+ url_context?: boolean | undefined;
7036
7087
  disableStreaming?: boolean | undefined;
7037
7088
  assistant_id?: string | undefined;
7038
7089
  agent_id?: string | undefined;
@@ -7167,6 +7218,7 @@ export declare const configSchema: z.ZodObject<{
7167
7218
  effort?: import("./schemas").AnthropicEffort | null | undefined;
7168
7219
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
7169
7220
  web_search?: boolean | undefined;
7221
+ url_context?: boolean | undefined;
7170
7222
  disableStreaming?: boolean | undefined;
7171
7223
  assistant_id?: string | undefined;
7172
7224
  agent_id?: string | undefined;
@@ -7293,6 +7345,7 @@ export declare const configSchema: z.ZodObject<{
7293
7345
  effort?: import("./schemas").AnthropicEffort | null | undefined;
7294
7346
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
7295
7347
  web_search?: boolean | undefined;
7348
+ url_context?: boolean | undefined;
7296
7349
  disableStreaming?: boolean | undefined;
7297
7350
  assistant_id?: string | undefined;
7298
7351
  agent_id?: string | undefined;
@@ -7424,6 +7477,7 @@ export declare const configSchema: z.ZodObject<{
7424
7477
  effort?: import("./schemas").AnthropicEffort | null | undefined;
7425
7478
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
7426
7479
  web_search?: boolean | undefined;
7480
+ url_context?: boolean | undefined;
7427
7481
  disableStreaming?: boolean | undefined;
7428
7482
  assistant_id?: string | undefined;
7429
7483
  agent_id?: string | undefined;
@@ -7555,6 +7609,7 @@ export declare const configSchema: z.ZodObject<{
7555
7609
  effort?: import("./schemas").AnthropicEffort | null | undefined;
7556
7610
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
7557
7611
  web_search?: boolean | undefined;
7612
+ url_context?: boolean | undefined;
7558
7613
  disableStreaming?: boolean | undefined;
7559
7614
  assistant_id?: string | undefined;
7560
7615
  agent_id?: string | undefined;
@@ -8557,6 +8612,10 @@ export declare const configSchema: z.ZodObject<{
8557
8612
  defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
8558
8613
  reasoningFormat: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ReasoningParameterFormat>>;
8559
8614
  reasoningKey: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ReasoningResponseKey>>;
8615
+ /** Replays `reasoning_content` within a run's tool-call turns (e.g. Xiaomi MiMo, Kimi). */
8616
+ includeReasoningContent: z.ZodOptional<z.ZodBoolean>;
8617
+ /** Also reconstructs `reasoning_content` from persisted history across turns (implies `includeReasoningContent`). */
8618
+ includeReasoningHistory: z.ZodOptional<z.ZodBoolean>;
8560
8619
  paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
8561
8620
  key: z.ZodString;
8562
8621
  description: z.ZodOptional<z.ZodString>;
@@ -8669,6 +8728,8 @@ export declare const configSchema: z.ZodObject<{
8669
8728
  defaultParamsEndpoint: string;
8670
8729
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
8671
8730
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
8731
+ includeReasoningContent?: boolean | undefined;
8732
+ includeReasoningHistory?: boolean | undefined;
8672
8733
  paramDefinitions?: {
8673
8734
  key: string;
8674
8735
  type?: SettingTypes | undefined;
@@ -8707,6 +8768,8 @@ export declare const configSchema: z.ZodObject<{
8707
8768
  defaultParamsEndpoint?: string | undefined;
8708
8769
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
8709
8770
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
8771
+ includeReasoningContent?: boolean | undefined;
8772
+ includeReasoningHistory?: boolean | undefined;
8710
8773
  paramDefinitions?: {
8711
8774
  key: string;
8712
8775
  type?: SettingTypes | undefined;
@@ -8794,6 +8857,8 @@ export declare const configSchema: z.ZodObject<{
8794
8857
  defaultParamsEndpoint: string;
8795
8858
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
8796
8859
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
8860
+ includeReasoningContent?: boolean | undefined;
8861
+ includeReasoningHistory?: boolean | undefined;
8797
8862
  paramDefinitions?: {
8798
8863
  key: string;
8799
8864
  type?: SettingTypes | undefined;
@@ -8869,6 +8934,8 @@ export declare const configSchema: z.ZodObject<{
8869
8934
  defaultParamsEndpoint?: string | undefined;
8870
8935
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
8871
8936
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
8937
+ includeReasoningContent?: boolean | undefined;
8938
+ includeReasoningHistory?: boolean | undefined;
8872
8939
  paramDefinitions?: {
8873
8940
  key: string;
8874
8941
  type?: SettingTypes | undefined;
@@ -9215,6 +9282,8 @@ export declare const configSchema: z.ZodObject<{
9215
9282
  defaultParamsEndpoint: string;
9216
9283
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
9217
9284
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
9285
+ includeReasoningContent?: boolean | undefined;
9286
+ includeReasoningHistory?: boolean | undefined;
9218
9287
  paramDefinitions?: {
9219
9288
  key: string;
9220
9289
  type?: SettingTypes | undefined;
@@ -9506,6 +9575,8 @@ export declare const configSchema: z.ZodObject<{
9506
9575
  defaultParamsEndpoint?: string | undefined;
9507
9576
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
9508
9577
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
9578
+ includeReasoningContent?: boolean | undefined;
9579
+ includeReasoningHistory?: boolean | undefined;
9509
9580
  paramDefinitions?: {
9510
9581
  key: string;
9511
9582
  type?: SettingTypes | undefined;
@@ -9797,6 +9868,8 @@ export declare const configSchema: z.ZodObject<{
9797
9868
  defaultParamsEndpoint: string;
9798
9869
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
9799
9870
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
9871
+ includeReasoningContent?: boolean | undefined;
9872
+ includeReasoningHistory?: boolean | undefined;
9800
9873
  paramDefinitions?: {
9801
9874
  key: string;
9802
9875
  type?: SettingTypes | undefined;
@@ -10088,6 +10161,8 @@ export declare const configSchema: z.ZodObject<{
10088
10161
  defaultParamsEndpoint?: string | undefined;
10089
10162
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
10090
10163
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
10164
+ includeReasoningContent?: boolean | undefined;
10165
+ includeReasoningHistory?: boolean | undefined;
10091
10166
  paramDefinitions?: {
10092
10167
  key: string;
10093
10168
  type?: SettingTypes | undefined;
@@ -10246,6 +10321,7 @@ export declare const configSchema: z.ZodObject<{
10246
10321
  use?: boolean | undefined;
10247
10322
  } | undefined;
10248
10323
  fileCitations?: boolean | undefined;
10324
+ defaultPinnedTools?: string[] | undefined;
10249
10325
  buildInfo?: boolean | undefined;
10250
10326
  remoteAgents?: {
10251
10327
  public?: boolean | undefined;
@@ -10257,6 +10333,7 @@ export declare const configSchema: z.ZodObject<{
10257
10333
  public?: boolean | undefined;
10258
10334
  share?: boolean | undefined;
10259
10335
  create?: boolean | undefined;
10336
+ snapshotFiles?: boolean | undefined;
10260
10337
  } | undefined;
10261
10338
  };
10262
10339
  fileStrategy: FileSources.local | FileSources.firebase | FileSources.azure_blob | FileSources.s3 | FileSources.cloudfront;
@@ -10771,6 +10848,8 @@ export declare const configSchema: z.ZodObject<{
10771
10848
  defaultParamsEndpoint: string;
10772
10849
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
10773
10850
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
10851
+ includeReasoningContent?: boolean | undefined;
10852
+ includeReasoningHistory?: boolean | undefined;
10774
10853
  paramDefinitions?: {
10775
10854
  key: string;
10776
10855
  type?: SettingTypes | undefined;
@@ -11124,6 +11203,7 @@ export declare const configSchema: z.ZodObject<{
11124
11203
  effort?: import("./schemas").AnthropicEffort | null | undefined;
11125
11204
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
11126
11205
  web_search?: boolean | undefined;
11206
+ url_context?: boolean | undefined;
11127
11207
  disableStreaming?: boolean | undefined;
11128
11208
  assistant_id?: string | undefined;
11129
11209
  agent_id?: string | undefined;
@@ -11709,6 +11789,8 @@ export declare const configSchema: z.ZodObject<{
11709
11789
  defaultParamsEndpoint?: string | undefined;
11710
11790
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
11711
11791
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
11792
+ includeReasoningContent?: boolean | undefined;
11793
+ includeReasoningHistory?: boolean | undefined;
11712
11794
  paramDefinitions?: {
11713
11795
  key: string;
11714
11796
  type?: SettingTypes | undefined;
@@ -11946,6 +12028,7 @@ export declare const configSchema: z.ZodObject<{
11946
12028
  use?: boolean | undefined;
11947
12029
  } | undefined;
11948
12030
  fileCitations?: boolean | undefined;
12031
+ defaultPinnedTools?: string[] | undefined;
11949
12032
  buildInfo?: boolean | undefined;
11950
12033
  remoteAgents?: {
11951
12034
  public?: boolean | undefined;
@@ -11957,6 +12040,7 @@ export declare const configSchema: z.ZodObject<{
11957
12040
  public?: boolean | undefined;
11958
12041
  share?: boolean | undefined;
11959
12042
  create?: boolean | undefined;
12043
+ snapshotFiles?: boolean | undefined;
11960
12044
  } | undefined;
11961
12045
  } | undefined;
11962
12046
  turnstile?: {
@@ -12155,6 +12239,7 @@ export declare const configSchema: z.ZodObject<{
12155
12239
  effort?: import("./schemas").AnthropicEffort | null | undefined;
12156
12240
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
12157
12241
  web_search?: boolean | undefined;
12242
+ url_context?: boolean | undefined;
12158
12243
  disableStreaming?: boolean | undefined;
12159
12244
  assistant_id?: string | undefined;
12160
12245
  agent_id?: string | undefined;
@@ -13989,6 +14074,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
13989
14074
  }>>;
13990
14075
  fileSearch: z.ZodOptional<z.ZodBoolean>;
13991
14076
  fileCitations: z.ZodOptional<z.ZodBoolean>;
14077
+ /** Tool keys (and `'mcp'` or an MCP server name) pinned to the prompt bar by default */
14078
+ defaultPinnedTools: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13992
14079
  buildInfo: z.ZodOptional<z.ZodBoolean>;
13993
14080
  remoteAgents: z.ZodOptional<z.ZodObject<{
13994
14081
  use: z.ZodOptional<z.ZodBoolean>;
@@ -14029,14 +14116,17 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14029
14116
  create: z.ZodOptional<z.ZodBoolean>;
14030
14117
  share: z.ZodOptional<z.ZodBoolean>;
14031
14118
  public: z.ZodOptional<z.ZodBoolean>;
14119
+ snapshotFiles: z.ZodOptional<z.ZodBoolean>;
14032
14120
  }, "strip", z.ZodTypeAny, {
14033
14121
  public?: boolean | undefined;
14034
14122
  share?: boolean | undefined;
14035
14123
  create?: boolean | undefined;
14124
+ snapshotFiles?: boolean | undefined;
14036
14125
  }, {
14037
14126
  public?: boolean | undefined;
14038
14127
  share?: boolean | undefined;
14039
14128
  create?: boolean | undefined;
14129
+ snapshotFiles?: boolean | undefined;
14040
14130
  }>]>>;
14041
14131
  }, "strip", z.ZodTypeAny, {
14042
14132
  retentionMode: RetentionMode;
@@ -14111,6 +14201,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14111
14201
  use?: boolean | undefined;
14112
14202
  } | undefined;
14113
14203
  fileCitations?: boolean | undefined;
14204
+ defaultPinnedTools?: string[] | undefined;
14114
14205
  buildInfo?: boolean | undefined;
14115
14206
  remoteAgents?: {
14116
14207
  public?: boolean | undefined;
@@ -14122,6 +14213,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14122
14213
  public?: boolean | undefined;
14123
14214
  share?: boolean | undefined;
14124
14215
  create?: boolean | undefined;
14216
+ snapshotFiles?: boolean | undefined;
14125
14217
  } | undefined;
14126
14218
  }, {
14127
14219
  agents?: boolean | {
@@ -14196,6 +14288,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14196
14288
  use?: boolean | undefined;
14197
14289
  } | undefined;
14198
14290
  fileCitations?: boolean | undefined;
14291
+ defaultPinnedTools?: string[] | undefined;
14199
14292
  buildInfo?: boolean | undefined;
14200
14293
  remoteAgents?: {
14201
14294
  public?: boolean | undefined;
@@ -14207,6 +14300,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
14207
14300
  public?: boolean | undefined;
14208
14301
  share?: boolean | undefined;
14209
14302
  create?: boolean | undefined;
14303
+ snapshotFiles?: boolean | undefined;
14210
14304
  } | undefined;
14211
14305
  }>>;
14212
14306
  turnstile: z.ZodOptional<z.ZodObject<{
@@ -15241,6 +15335,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
15241
15335
  effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").AnthropicEffort>>>;
15242
15336
  thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ThinkingDisplay>>>;
15243
15337
  web_search: z.ZodOptional<z.ZodBoolean>;
15338
+ url_context: z.ZodOptional<z.ZodBoolean>;
15244
15339
  disableStreaming: z.ZodOptional<z.ZodBoolean>;
15245
15340
  assistant_id: z.ZodOptional<z.ZodString>;
15246
15341
  agent_id: z.ZodOptional<z.ZodString>;
@@ -15375,6 +15470,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
15375
15470
  effort?: import("./schemas").AnthropicEffort | null | undefined;
15376
15471
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
15377
15472
  web_search?: boolean | undefined;
15473
+ url_context?: boolean | undefined;
15378
15474
  disableStreaming?: boolean | undefined;
15379
15475
  assistant_id?: string | undefined;
15380
15476
  agent_id?: string | undefined;
@@ -15473,6 +15569,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
15473
15569
  effort?: import("./schemas").AnthropicEffort | null | undefined;
15474
15570
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
15475
15571
  web_search?: boolean | undefined;
15572
+ url_context?: boolean | undefined;
15476
15573
  disableStreaming?: boolean | undefined;
15477
15574
  assistant_id?: string | undefined;
15478
15575
  agent_id?: string | undefined;
@@ -15607,6 +15704,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
15607
15704
  effort?: import("./schemas").AnthropicEffort | null | undefined;
15608
15705
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
15609
15706
  web_search?: boolean | undefined;
15707
+ url_context?: boolean | undefined;
15610
15708
  disableStreaming?: boolean | undefined;
15611
15709
  assistant_id?: string | undefined;
15612
15710
  agent_id?: string | undefined;
@@ -15733,6 +15831,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
15733
15831
  effort?: import("./schemas").AnthropicEffort | null | undefined;
15734
15832
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
15735
15833
  web_search?: boolean | undefined;
15834
+ url_context?: boolean | undefined;
15736
15835
  disableStreaming?: boolean | undefined;
15737
15836
  assistant_id?: string | undefined;
15738
15837
  agent_id?: string | undefined;
@@ -15864,6 +15963,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
15864
15963
  effort?: import("./schemas").AnthropicEffort | null | undefined;
15865
15964
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
15866
15965
  web_search?: boolean | undefined;
15966
+ url_context?: boolean | undefined;
15867
15967
  disableStreaming?: boolean | undefined;
15868
15968
  assistant_id?: string | undefined;
15869
15969
  agent_id?: string | undefined;
@@ -15995,6 +16095,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
15995
16095
  effort?: import("./schemas").AnthropicEffort | null | undefined;
15996
16096
  thinkingDisplay?: import("./schemas").ThinkingDisplay | null | undefined;
15997
16097
  web_search?: boolean | undefined;
16098
+ url_context?: boolean | undefined;
15998
16099
  disableStreaming?: boolean | undefined;
15999
16100
  assistant_id?: string | undefined;
16000
16101
  agent_id?: string | undefined;
@@ -16997,6 +17098,10 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
16997
17098
  defaultParamsEndpoint: z.ZodDefault<z.ZodString>;
16998
17099
  reasoningFormat: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ReasoningParameterFormat>>;
16999
17100
  reasoningKey: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ReasoningResponseKey>>;
17101
+ /** Replays `reasoning_content` within a run's tool-call turns (e.g. Xiaomi MiMo, Kimi). */
17102
+ includeReasoningContent: z.ZodOptional<z.ZodBoolean>;
17103
+ /** Also reconstructs `reasoning_content` from persisted history across turns (implies `includeReasoningContent`). */
17104
+ includeReasoningHistory: z.ZodOptional<z.ZodBoolean>;
17000
17105
  paramDefinitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
17001
17106
  key: z.ZodString;
17002
17107
  description: z.ZodOptional<z.ZodString>;
@@ -17109,6 +17214,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
17109
17214
  defaultParamsEndpoint: string;
17110
17215
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
17111
17216
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
17217
+ includeReasoningContent?: boolean | undefined;
17218
+ includeReasoningHistory?: boolean | undefined;
17112
17219
  paramDefinitions?: {
17113
17220
  key: string;
17114
17221
  type?: SettingTypes | undefined;
@@ -17147,6 +17254,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
17147
17254
  defaultParamsEndpoint?: string | undefined;
17148
17255
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
17149
17256
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
17257
+ includeReasoningContent?: boolean | undefined;
17258
+ includeReasoningHistory?: boolean | undefined;
17150
17259
  paramDefinitions?: {
17151
17260
  key: string;
17152
17261
  type?: SettingTypes | undefined;
@@ -17234,6 +17343,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
17234
17343
  defaultParamsEndpoint: string;
17235
17344
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
17236
17345
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
17346
+ includeReasoningContent?: boolean | undefined;
17347
+ includeReasoningHistory?: boolean | undefined;
17237
17348
  paramDefinitions?: {
17238
17349
  key: string;
17239
17350
  type?: SettingTypes | undefined;
@@ -17309,6 +17420,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
17309
17420
  defaultParamsEndpoint?: string | undefined;
17310
17421
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
17311
17422
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
17423
+ includeReasoningContent?: boolean | undefined;
17424
+ includeReasoningHistory?: boolean | undefined;
17312
17425
  paramDefinitions?: {
17313
17426
  key: string;
17314
17427
  type?: SettingTypes | undefined;
@@ -17655,6 +17768,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
17655
17768
  defaultParamsEndpoint: string;
17656
17769
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
17657
17770
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
17771
+ includeReasoningContent?: boolean | undefined;
17772
+ includeReasoningHistory?: boolean | undefined;
17658
17773
  paramDefinitions?: {
17659
17774
  key: string;
17660
17775
  type?: SettingTypes | undefined;
@@ -17946,6 +18061,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
17946
18061
  defaultParamsEndpoint?: string | undefined;
17947
18062
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
17948
18063
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
18064
+ includeReasoningContent?: boolean | undefined;
18065
+ includeReasoningHistory?: boolean | undefined;
17949
18066
  paramDefinitions?: {
17950
18067
  key: string;
17951
18068
  type?: SettingTypes | undefined;
@@ -18237,6 +18354,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
18237
18354
  defaultParamsEndpoint: string;
18238
18355
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
18239
18356
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
18357
+ includeReasoningContent?: boolean | undefined;
18358
+ includeReasoningHistory?: boolean | undefined;
18240
18359
  paramDefinitions?: {
18241
18360
  key: string;
18242
18361
  type?: SettingTypes | undefined;
@@ -18528,6 +18647,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
18528
18647
  defaultParamsEndpoint?: string | undefined;
18529
18648
  reasoningFormat?: import("./schemas").ReasoningParameterFormat | undefined;
18530
18649
  reasoningKey?: import("./schemas").ReasoningResponseKey | undefined;
18650
+ includeReasoningContent?: boolean | undefined;
18651
+ includeReasoningHistory?: boolean | undefined;
18531
18652
  paramDefinitions?: {
18532
18653
  key: string;
18533
18654
  type?: SettingTypes | undefined;
@@ -29,10 +29,11 @@ export declare function updateSkillFavorites(skillFavorites: string[]): Promise<
29
29
  export declare function getSkillStates(): Promise<sk.TSkillStatesResponse>;
30
30
  export declare function updateSkillStates(skillStates: sk.TSkillStatesResponse): Promise<sk.TSkillStatesResponse>;
31
31
  export declare function getSharedMessages(shareId: string): Promise<t.TSharedMessagesResponse>;
32
+ export declare function getSharedStartupConfig(shareId: string): Promise<config.TSharedLinkStartupConfig>;
32
33
  export declare const listSharedLinks: (params: q.SharedLinksListParams) => Promise<q.SharedLinksResponse>;
33
34
  export declare function getSharedLink(conversationId: string): Promise<t.TSharedLinkGetResponse>;
34
- export declare function createSharedLink(conversationId: string, targetMessageId?: string): Promise<t.TSharedLinkResponse>;
35
- export declare function updateSharedLink(shareId: string, targetMessageId?: string): Promise<t.TSharedLinkResponse>;
35
+ export declare function createSharedLink(conversationId: string, targetMessageId?: string, snapshotFiles?: boolean): Promise<t.TSharedLinkResponse>;
36
+ export declare function updateSharedLink(shareId: string, targetMessageId?: string, snapshotFiles?: boolean): Promise<t.TSharedLinkResponse>;
36
37
  export declare function deleteSharedLink(shareId: string): Promise<m.TDeleteSharedLinkResponse>;
37
38
  export declare function updateUserKey(payload: t.TUpdateUserKeyRequest): Promise<any>;
38
39
  export declare function getAgentApiKeys(): Promise<t.TAgentApiKeyListResponse>;
@@ -122,6 +123,8 @@ export declare const getFiles: () => Promise<f.TFile[]>;
122
123
  * polls while `status === 'pending'` and stops on terminal status.
123
124
  */
124
125
  export declare const getFilePreview: (fileId: string) => Promise<f.TFilePreview>;
126
+ /** Preview status for a snapshotted file served through a shared link. */
127
+ export declare const getSharedFilePreview: (shareId: string, fileId: string) => Promise<f.TFilePreview>;
125
128
  export declare const getAgentFiles: (agentId: string) => Promise<f.TFile[]>;
126
129
  export declare const getFileConfig: () => Promise<TFileConfig>;
127
130
  export declare const uploadImage: (data: FormData, signal?: AbortSignal | null) => Promise<f.TFileUpload>;
@@ -211,6 +214,8 @@ export declare const uploadAssistantAvatar: (data: m.AssistantAvatarVariables) =
211
214
  export declare const uploadAgentAvatar: (data: m.AgentAvatarVariables) => Promise<a.Agent>;
212
215
  export declare const getFileDownload: (userId: string, file_id: string) => Promise<AxiosResponse>;
213
216
  export declare const getFileDownloadURL: (userId: string, file_id: string) => Promise<f.FileDownloadURLResponse>;
217
+ /** Blob download for a snapshotted file served through a shared link. */
218
+ export declare const getSharedFileDownload: (shareId: string, file_id: string) => Promise<AxiosResponse>;
214
219
  export declare const getCodeOutputDownload: (url: string) => Promise<AxiosResponse>;
215
220
  export declare const deleteFiles: (payload: {
216
221
  files: f.BatchFile[];
@@ -229,6 +229,7 @@ export declare const generateOpenAISchema: (customOpenAI: OpenAISettings) => z.Z
229
229
  effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").AnthropicEffort>>>;
230
230
  thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ThinkingDisplay>>>;
231
231
  web_search: z.ZodOptional<z.ZodBoolean>;
232
+ url_context: z.ZodOptional<z.ZodBoolean>;
232
233
  disableStreaming: z.ZodOptional<z.ZodBoolean>;
233
234
  assistant_id: z.ZodOptional<z.ZodString>;
234
235
  agent_id: z.ZodOptional<z.ZodString>;
@@ -478,6 +479,7 @@ export declare const generateGoogleSchema: (customGoogle: GoogleSettings) => z.Z
478
479
  effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").AnthropicEffort>>>;
479
480
  thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").ThinkingDisplay>>>;
480
481
  web_search: z.ZodOptional<z.ZodBoolean>;
482
+ url_context: z.ZodOptional<z.ZodBoolean>;
481
483
  disableStreaming: z.ZodOptional<z.ZodBoolean>;
482
484
  assistant_id: z.ZodOptional<z.ZodString>;
483
485
  agent_id: z.ZodOptional<z.ZodString>;