braintrust 0.2.2 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -191,6 +191,8 @@ declare class LazyValue<T> {
191
191
  get hasSucceeded(): boolean;
192
192
  }
193
193
 
194
+ /// <reference lib="dom" />
195
+
194
196
  type SetCurrentArg = {
195
197
  setCurrent?: boolean;
196
198
  };
@@ -383,10 +385,10 @@ declare const loginSchema: z.ZodObject<{
383
385
  fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["dirty", "tag", "commit", "branch", "author_name", "author_email", "commit_message", "commit_time", "git_diff"]>, "many">>;
384
386
  }, "strict", z.ZodTypeAny, {
385
387
  collect: "some" | "none" | "all";
386
- fields?: ("dirty" | "tag" | "commit" | "branch" | "author_name" | "author_email" | "commit_message" | "commit_time" | "git_diff")[] | undefined;
388
+ fields?: ("branch" | "dirty" | "tag" | "commit" | "author_name" | "author_email" | "commit_message" | "commit_time" | "git_diff")[] | undefined;
387
389
  }, {
388
390
  collect: "some" | "none" | "all";
389
- fields?: ("dirty" | "tag" | "commit" | "branch" | "author_name" | "author_email" | "commit_message" | "commit_time" | "git_diff")[] | undefined;
391
+ fields?: ("branch" | "dirty" | "tag" | "commit" | "author_name" | "author_email" | "commit_message" | "commit_time" | "git_diff")[] | undefined;
390
392
  }>>>;
391
393
  }, "strict", z.ZodTypeAny, {
392
394
  appUrl: string;
@@ -398,7 +400,7 @@ declare const loginSchema: z.ZodObject<{
398
400
  orgId?: string | null | undefined;
399
401
  gitMetadataSettings?: {
400
402
  collect: "some" | "none" | "all";
401
- fields?: ("dirty" | "tag" | "commit" | "branch" | "author_name" | "author_email" | "commit_message" | "commit_time" | "git_diff")[] | undefined;
403
+ fields?: ("branch" | "dirty" | "tag" | "commit" | "author_name" | "author_email" | "commit_message" | "commit_time" | "git_diff")[] | undefined;
402
404
  } | null | undefined;
403
405
  }, {
404
406
  appUrl: string;
@@ -410,7 +412,7 @@ declare const loginSchema: z.ZodObject<{
410
412
  orgId?: string | null | undefined;
411
413
  gitMetadataSettings?: {
412
414
  collect: "some" | "none" | "all";
413
- fields?: ("dirty" | "tag" | "commit" | "branch" | "author_name" | "author_email" | "commit_message" | "commit_time" | "git_diff")[] | undefined;
415
+ fields?: ("branch" | "dirty" | "tag" | "commit" | "author_name" | "author_email" | "commit_message" | "commit_time" | "git_diff")[] | undefined;
414
416
  } | null | undefined;
415
417
  }>;
416
418
  type SerializedBraintrustState = z.infer<typeof loginSchema>;
@@ -573,7 +575,7 @@ declare class Attachment extends BaseAttachment {
573
575
  * @returns The attachment status.
574
576
  */
575
577
  upload(): Promise<{
576
- upload_status: "uploading" | "done" | "error";
578
+ upload_status: "error" | "done" | "uploading";
577
579
  error_message?: string | undefined;
578
580
  }>;
579
581
  /**
@@ -649,21 +651,21 @@ declare const attachmentMetadataSchema: z.ZodObject<{
649
651
  upload_status: z.ZodEnum<["uploading", "done", "error"]>;
650
652
  error_message: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | undefined, string | null | undefined>;
651
653
  }, "strip", z.ZodTypeAny, {
652
- upload_status: "uploading" | "done" | "error";
654
+ upload_status: "error" | "done" | "uploading";
653
655
  error_message?: string | undefined;
654
656
  }, {
655
- upload_status: "uploading" | "done" | "error";
657
+ upload_status: "error" | "done" | "uploading";
656
658
  error_message?: string | null | undefined;
657
659
  }>;
658
660
  }, "strip", z.ZodTypeAny, {
659
661
  status: {
660
- upload_status: "uploading" | "done" | "error";
662
+ upload_status: "error" | "done" | "uploading";
661
663
  error_message?: string | undefined;
662
664
  };
663
665
  downloadUrl: string;
664
666
  }, {
665
667
  status: {
666
- upload_status: "uploading" | "done" | "error";
668
+ upload_status: "error" | "done" | "uploading";
667
669
  error_message?: string | null | undefined;
668
670
  };
669
671
  downloadUrl: string;
@@ -1024,6 +1026,7 @@ type LoadPromptOptions = FullLoginOptions & {
1024
1026
  id?: string;
1025
1027
  defaults?: DefaultPromptArgs;
1026
1028
  noTrace?: boolean;
1029
+ environment?: string;
1027
1030
  state?: BraintrustState;
1028
1031
  };
1029
1032
  /**
@@ -1034,6 +1037,7 @@ type LoadPromptOptions = FullLoginOptions & {
1034
1037
  * @param options.projectId The id of the project to load the prompt from. This takes precedence over `projectName` if specified.
1035
1038
  * @param options.slug The slug of the prompt to load.
1036
1039
  * @param options.version An optional version of the prompt (to read). If not specified, the latest version will be used.
1040
+ * @param options.environment Fetch the version of the prompt assigned to the specified environment (e.g. "production", "staging"). Cannot be specified at the same time as `version`.
1037
1041
  * @param options.id The id of a specific prompt to load. If specified, this takes precedence over all other parameters (project, slug, version).
1038
1042
  * @param options.defaults (Optional) A dictionary of default values to use when rendering the prompt. Prompt values will override these defaults.
1039
1043
  * @param options.noTrace If true, do not include logging metadata for this prompt when build() is called.
@@ -1053,7 +1057,7 @@ type LoadPromptOptions = FullLoginOptions & {
1053
1057
  * });
1054
1058
  * ```
1055
1059
  */
1056
- declare function loadPrompt({ projectName, projectId, slug, version, id, defaults, noTrace, appUrl, apiKey, orgName, fetch, forceLogin, state: stateArg, }: LoadPromptOptions): Promise<Prompt<true, true>>;
1060
+ declare function loadPrompt({ projectName, projectId, slug, version, environment, id, defaults, noTrace, appUrl, apiKey, orgName, fetch, forceLogin, state: stateArg, }: LoadPromptOptions): Promise<Prompt<true, true>>;
1057
1061
  /**
1058
1062
  * Options for logging in to Braintrust.
1059
1063
  */
@@ -1801,13 +1805,13 @@ declare const braintrustStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
1801
1805
  _xact_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1802
1806
  created: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1803
1807
  }, "strip", z.ZodTypeAny, {
1804
- object_type: "function" | "experiment" | "dataset" | "prompt" | "prompt_session" | "project_logs";
1808
+ object_type: "function" | "prompt" | "experiment" | "dataset" | "prompt_session" | "project_logs";
1805
1809
  object_id: string;
1806
1810
  id: string;
1807
1811
  _xact_id?: string | null | undefined;
1808
1812
  created?: string | null | undefined;
1809
1813
  }, {
1810
- object_type: "function" | "experiment" | "dataset" | "prompt" | "prompt_session" | "project_logs";
1814
+ object_type: "function" | "prompt" | "experiment" | "dataset" | "prompt_session" | "project_logs";
1811
1815
  object_id: string;
1812
1816
  id: string;
1813
1817
  _xact_id?: string | null | undefined;
@@ -1824,10 +1828,10 @@ declare const braintrustStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
1824
1828
  object_type: "prompt" | "tool" | "scorer" | "task" | "agent";
1825
1829
  id: string;
1826
1830
  data: string;
1827
- event: "done" | "error" | "text_delta" | "reasoning_delta" | "json_delta" | "progress" | "console" | "start";
1831
+ event: "text_delta" | "reasoning_delta" | "json_delta" | "error" | "console" | "progress" | "start" | "done";
1828
1832
  output_type: "completion" | "score" | "any";
1829
1833
  origin?: {
1830
- object_type: "function" | "experiment" | "dataset" | "prompt" | "prompt_session" | "project_logs";
1834
+ object_type: "function" | "prompt" | "experiment" | "dataset" | "prompt_session" | "project_logs";
1831
1835
  object_id: string;
1832
1836
  id: string;
1833
1837
  _xact_id?: string | null | undefined;
@@ -1839,10 +1843,10 @@ declare const braintrustStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
1839
1843
  object_type: "prompt" | "tool" | "scorer" | "task" | "agent";
1840
1844
  id: string;
1841
1845
  data: string;
1842
- event: "done" | "error" | "text_delta" | "reasoning_delta" | "json_delta" | "progress" | "console" | "start";
1846
+ event: "text_delta" | "reasoning_delta" | "json_delta" | "error" | "console" | "progress" | "start" | "done";
1843
1847
  output_type: "completion" | "score" | "any";
1844
1848
  origin?: {
1845
- object_type: "function" | "experiment" | "dataset" | "prompt" | "prompt_session" | "project_logs";
1849
+ object_type: "function" | "prompt" | "experiment" | "dataset" | "prompt_session" | "project_logs";
1846
1850
  object_id: string;
1847
1851
  id: string;
1848
1852
  _xact_id?: string | null | undefined;
@@ -1857,10 +1861,10 @@ declare const braintrustStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
1857
1861
  object_type: "prompt" | "tool" | "scorer" | "task" | "agent";
1858
1862
  id: string;
1859
1863
  data: string;
1860
- event: "done" | "error" | "text_delta" | "reasoning_delta" | "json_delta" | "progress" | "console" | "start";
1864
+ event: "text_delta" | "reasoning_delta" | "json_delta" | "error" | "console" | "progress" | "start" | "done";
1861
1865
  output_type: "completion" | "score" | "any";
1862
1866
  origin?: {
1863
- object_type: "function" | "experiment" | "dataset" | "prompt" | "prompt_session" | "project_logs";
1867
+ object_type: "function" | "prompt" | "experiment" | "dataset" | "prompt_session" | "project_logs";
1864
1868
  object_id: string;
1865
1869
  id: string;
1866
1870
  _xact_id?: string | null | undefined;
@@ -1875,10 +1879,10 @@ declare const braintrustStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
1875
1879
  object_type: "prompt" | "tool" | "scorer" | "task" | "agent";
1876
1880
  id: string;
1877
1881
  data: string;
1878
- event: "done" | "error" | "text_delta" | "reasoning_delta" | "json_delta" | "progress" | "console" | "start";
1882
+ event: "text_delta" | "reasoning_delta" | "json_delta" | "error" | "console" | "progress" | "start" | "done";
1879
1883
  output_type: "completion" | "score" | "any";
1880
1884
  origin?: {
1881
- object_type: "function" | "experiment" | "dataset" | "prompt" | "prompt_session" | "project_logs";
1885
+ object_type: "function" | "prompt" | "experiment" | "dataset" | "prompt_session" | "project_logs";
1882
1886
  object_id: string;
1883
1887
  id: string;
1884
1888
  _xact_id?: string | null | undefined;
@@ -2319,23 +2323,23 @@ declare const promptContentsSchema: z.ZodUnion<[z.ZodObject<{
2319
2323
  detail: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"low">, z.ZodLiteral<"high">]>>;
2320
2324
  }, "strip", z.ZodTypeAny, {
2321
2325
  url: string;
2322
- detail?: "auto" | "low" | "high" | undefined;
2326
+ detail?: "auto" | "high" | "low" | undefined;
2323
2327
  }, {
2324
2328
  url?: unknown;
2325
- detail?: "auto" | "low" | "high" | undefined;
2329
+ detail?: "auto" | "high" | "low" | undefined;
2326
2330
  }>;
2327
2331
  type: z.ZodLiteral<"image_url">;
2328
2332
  }, "strip", z.ZodTypeAny, {
2329
2333
  type: "image_url";
2330
2334
  image_url: {
2331
2335
  url: string;
2332
- detail?: "auto" | "low" | "high" | undefined;
2336
+ detail?: "auto" | "high" | "low" | undefined;
2333
2337
  };
2334
2338
  }, {
2335
2339
  type: "image_url";
2336
2340
  image_url: {
2337
2341
  url?: unknown;
2338
- detail?: "auto" | "low" | "high" | undefined;
2342
+ detail?: "auto" | "high" | "low" | undefined;
2339
2343
  };
2340
2344
  }>]>, "many">]>;
2341
2345
  role: z.ZodLiteral<"user">;
@@ -2351,7 +2355,7 @@ declare const promptContentsSchema: z.ZodUnion<[z.ZodObject<{
2351
2355
  type: "image_url";
2352
2356
  image_url: {
2353
2357
  url: string;
2354
- detail?: "auto" | "low" | "high" | undefined;
2358
+ detail?: "auto" | "high" | "low" | undefined;
2355
2359
  };
2356
2360
  })[];
2357
2361
  role: "user";
@@ -2369,7 +2373,7 @@ declare const promptContentsSchema: z.ZodUnion<[z.ZodObject<{
2369
2373
  type: "image_url";
2370
2374
  image_url: {
2371
2375
  url?: unknown;
2372
- detail?: "auto" | "low" | "high" | undefined;
2376
+ detail?: "auto" | "high" | "low" | undefined;
2373
2377
  };
2374
2378
  })[] | undefined;
2375
2379
  }>, z.ZodObject<{
@@ -2660,7 +2664,7 @@ declare const promptContentsSchema: z.ZodUnion<[z.ZodObject<{
2660
2664
  type: "image_url";
2661
2665
  image_url: {
2662
2666
  url: string;
2663
- detail?: "auto" | "low" | "high" | undefined;
2667
+ detail?: "auto" | "high" | "low" | undefined;
2664
2668
  };
2665
2669
  })[];
2666
2670
  role: "user";
@@ -2743,7 +2747,7 @@ declare const promptContentsSchema: z.ZodUnion<[z.ZodObject<{
2743
2747
  type: "image_url";
2744
2748
  image_url: {
2745
2749
  url?: unknown;
2746
- detail?: "auto" | "low" | "high" | undefined;
2750
+ detail?: "auto" | "high" | "low" | undefined;
2747
2751
  };
2748
2752
  })[] | undefined;
2749
2753
  } | {
@@ -2884,23 +2888,23 @@ declare const promptDefinitionSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<
2884
2888
  detail: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"low">, z.ZodLiteral<"high">]>>;
2885
2889
  }, "strip", z.ZodTypeAny, {
2886
2890
  url: string;
2887
- detail?: "auto" | "low" | "high" | undefined;
2891
+ detail?: "auto" | "high" | "low" | undefined;
2888
2892
  }, {
2889
2893
  url?: unknown;
2890
- detail?: "auto" | "low" | "high" | undefined;
2894
+ detail?: "auto" | "high" | "low" | undefined;
2891
2895
  }>;
2892
2896
  type: z.ZodLiteral<"image_url">;
2893
2897
  }, "strip", z.ZodTypeAny, {
2894
2898
  type: "image_url";
2895
2899
  image_url: {
2896
2900
  url: string;
2897
- detail?: "auto" | "low" | "high" | undefined;
2901
+ detail?: "auto" | "high" | "low" | undefined;
2898
2902
  };
2899
2903
  }, {
2900
2904
  type: "image_url";
2901
2905
  image_url: {
2902
2906
  url?: unknown;
2903
- detail?: "auto" | "low" | "high" | undefined;
2907
+ detail?: "auto" | "high" | "low" | undefined;
2904
2908
  };
2905
2909
  }>]>, "many">]>;
2906
2910
  role: z.ZodLiteral<"user">;
@@ -2916,7 +2920,7 @@ declare const promptDefinitionSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<
2916
2920
  type: "image_url";
2917
2921
  image_url: {
2918
2922
  url: string;
2919
- detail?: "auto" | "low" | "high" | undefined;
2923
+ detail?: "auto" | "high" | "low" | undefined;
2920
2924
  };
2921
2925
  })[];
2922
2926
  role: "user";
@@ -2934,7 +2938,7 @@ declare const promptDefinitionSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<
2934
2938
  type: "image_url";
2935
2939
  image_url: {
2936
2940
  url?: unknown;
2937
- detail?: "auto" | "low" | "high" | undefined;
2941
+ detail?: "auto" | "high" | "low" | undefined;
2938
2942
  };
2939
2943
  })[] | undefined;
2940
2944
  }>, z.ZodObject<{
@@ -3225,7 +3229,7 @@ declare const promptDefinitionSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<
3225
3229
  type: "image_url";
3226
3230
  image_url: {
3227
3231
  url: string;
3228
- detail?: "auto" | "low" | "high" | undefined;
3232
+ detail?: "auto" | "high" | "low" | undefined;
3229
3233
  };
3230
3234
  })[];
3231
3235
  role: "user";
@@ -3308,7 +3312,7 @@ declare const promptDefinitionSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<
3308
3312
  type: "image_url";
3309
3313
  image_url: {
3310
3314
  url?: unknown;
3311
- detail?: "auto" | "low" | "high" | undefined;
3315
+ detail?: "auto" | "high" | "low" | undefined;
3312
3316
  };
3313
3317
  })[] | undefined;
3314
3318
  } | {
@@ -3452,7 +3456,8 @@ declare const promptDefinitionSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<
3452
3456
  }>]>>;
3453
3457
  n: z.ZodOptional<z.ZodNumber>;
3454
3458
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3455
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3459
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
3460
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3456
3461
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3457
3462
  use_cache: z.ZodOptional<z.ZodBoolean>;
3458
3463
  } & {
@@ -3538,7 +3543,8 @@ declare const promptDefinitionSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<
3538
3543
  }>]>>;
3539
3544
  n: z.ZodOptional<z.ZodNumber>;
3540
3545
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3541
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3546
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
3547
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3542
3548
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3543
3549
  use_cache: z.ZodOptional<z.ZodBoolean>;
3544
3550
  } & {
@@ -3624,7 +3630,8 @@ declare const promptDefinitionSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<
3624
3630
  }>]>>;
3625
3631
  n: z.ZodOptional<z.ZodNumber>;
3626
3632
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3627
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3633
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
3634
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3628
3635
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
3629
3636
  use_cache: z.ZodOptional<z.ZodBoolean>;
3630
3637
  } & {
@@ -3782,7 +3789,8 @@ declare const promptDefinitionSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<
3782
3789
  }>]>>;
3783
3790
  n: z.ZodOptional<z.ZodNumber>;
3784
3791
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3785
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3792
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
3793
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3786
3794
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
3787
3795
  use_cache: z.ZodOptional<z.ZodBoolean>;
3788
3796
  } & {
@@ -3894,7 +3902,8 @@ declare const promptDefinitionSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<
3894
3902
  }>]>>;
3895
3903
  n: z.ZodOptional<z.ZodNumber>;
3896
3904
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3897
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3905
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
3906
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3898
3907
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
3899
3908
  use_cache: z.ZodOptional<z.ZodBoolean>;
3900
3909
  } & {
@@ -4003,23 +4012,23 @@ declare const promptDefinitionWithToolsSchema: z.ZodIntersection<z.ZodIntersecti
4003
4012
  detail: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"low">, z.ZodLiteral<"high">]>>;
4004
4013
  }, "strip", z.ZodTypeAny, {
4005
4014
  url: string;
4006
- detail?: "auto" | "low" | "high" | undefined;
4015
+ detail?: "auto" | "high" | "low" | undefined;
4007
4016
  }, {
4008
4017
  url?: unknown;
4009
- detail?: "auto" | "low" | "high" | undefined;
4018
+ detail?: "auto" | "high" | "low" | undefined;
4010
4019
  }>;
4011
4020
  type: z.ZodLiteral<"image_url">;
4012
4021
  }, "strip", z.ZodTypeAny, {
4013
4022
  type: "image_url";
4014
4023
  image_url: {
4015
4024
  url: string;
4016
- detail?: "auto" | "low" | "high" | undefined;
4025
+ detail?: "auto" | "high" | "low" | undefined;
4017
4026
  };
4018
4027
  }, {
4019
4028
  type: "image_url";
4020
4029
  image_url: {
4021
4030
  url?: unknown;
4022
- detail?: "auto" | "low" | "high" | undefined;
4031
+ detail?: "auto" | "high" | "low" | undefined;
4023
4032
  };
4024
4033
  }>]>, "many">]>;
4025
4034
  role: z.ZodLiteral<"user">;
@@ -4035,7 +4044,7 @@ declare const promptDefinitionWithToolsSchema: z.ZodIntersection<z.ZodIntersecti
4035
4044
  type: "image_url";
4036
4045
  image_url: {
4037
4046
  url: string;
4038
- detail?: "auto" | "low" | "high" | undefined;
4047
+ detail?: "auto" | "high" | "low" | undefined;
4039
4048
  };
4040
4049
  })[];
4041
4050
  role: "user";
@@ -4053,7 +4062,7 @@ declare const promptDefinitionWithToolsSchema: z.ZodIntersection<z.ZodIntersecti
4053
4062
  type: "image_url";
4054
4063
  image_url: {
4055
4064
  url?: unknown;
4056
- detail?: "auto" | "low" | "high" | undefined;
4065
+ detail?: "auto" | "high" | "low" | undefined;
4057
4066
  };
4058
4067
  })[] | undefined;
4059
4068
  }>, z.ZodObject<{
@@ -4344,7 +4353,7 @@ declare const promptDefinitionWithToolsSchema: z.ZodIntersection<z.ZodIntersecti
4344
4353
  type: "image_url";
4345
4354
  image_url: {
4346
4355
  url: string;
4347
- detail?: "auto" | "low" | "high" | undefined;
4356
+ detail?: "auto" | "high" | "low" | undefined;
4348
4357
  };
4349
4358
  })[];
4350
4359
  role: "user";
@@ -4427,7 +4436,7 @@ declare const promptDefinitionWithToolsSchema: z.ZodIntersection<z.ZodIntersecti
4427
4436
  type: "image_url";
4428
4437
  image_url: {
4429
4438
  url?: unknown;
4430
- detail?: "auto" | "low" | "high" | undefined;
4439
+ detail?: "auto" | "high" | "low" | undefined;
4431
4440
  };
4432
4441
  })[] | undefined;
4433
4442
  } | {
@@ -4571,7 +4580,8 @@ declare const promptDefinitionWithToolsSchema: z.ZodIntersection<z.ZodIntersecti
4571
4580
  }>]>>;
4572
4581
  n: z.ZodOptional<z.ZodNumber>;
4573
4582
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4574
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
4583
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
4584
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
4575
4585
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4576
4586
  use_cache: z.ZodOptional<z.ZodBoolean>;
4577
4587
  } & {
@@ -4657,7 +4667,8 @@ declare const promptDefinitionWithToolsSchema: z.ZodIntersection<z.ZodIntersecti
4657
4667
  }>]>>;
4658
4668
  n: z.ZodOptional<z.ZodNumber>;
4659
4669
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4660
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
4670
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
4671
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
4661
4672
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4662
4673
  use_cache: z.ZodOptional<z.ZodBoolean>;
4663
4674
  } & {
@@ -4743,7 +4754,8 @@ declare const promptDefinitionWithToolsSchema: z.ZodIntersection<z.ZodIntersecti
4743
4754
  }>]>>;
4744
4755
  n: z.ZodOptional<z.ZodNumber>;
4745
4756
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4746
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
4757
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
4758
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
4747
4759
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
4748
4760
  use_cache: z.ZodOptional<z.ZodBoolean>;
4749
4761
  } & {
@@ -4901,7 +4913,8 @@ declare const promptDefinitionWithToolsSchema: z.ZodIntersection<z.ZodIntersecti
4901
4913
  }>]>>;
4902
4914
  n: z.ZodOptional<z.ZodNumber>;
4903
4915
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4904
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
4916
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
4917
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
4905
4918
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
4906
4919
  use_cache: z.ZodOptional<z.ZodBoolean>;
4907
4920
  } & {
@@ -5013,7 +5026,8 @@ declare const promptDefinitionWithToolsSchema: z.ZodIntersection<z.ZodIntersecti
5013
5026
  }>]>>;
5014
5027
  n: z.ZodOptional<z.ZodNumber>;
5015
5028
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5016
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
5029
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
5030
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
5017
5031
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
5018
5032
  use_cache: z.ZodOptional<z.ZodBoolean>;
5019
5033
  } & {
@@ -5213,23 +5227,23 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
5213
5227
  detail: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"low">, z.ZodLiteral<"high">]>>;
5214
5228
  }, "strip", z.ZodTypeAny, {
5215
5229
  url: string;
5216
- detail?: "auto" | "low" | "high" | undefined;
5230
+ detail?: "auto" | "high" | "low" | undefined;
5217
5231
  }, {
5218
5232
  url?: unknown;
5219
- detail?: "auto" | "low" | "high" | undefined;
5233
+ detail?: "auto" | "high" | "low" | undefined;
5220
5234
  }>;
5221
5235
  type: z.ZodLiteral<"image_url">;
5222
5236
  }, "strip", z.ZodTypeAny, {
5223
5237
  type: "image_url";
5224
5238
  image_url: {
5225
5239
  url: string;
5226
- detail?: "auto" | "low" | "high" | undefined;
5240
+ detail?: "auto" | "high" | "low" | undefined;
5227
5241
  };
5228
5242
  }, {
5229
5243
  type: "image_url";
5230
5244
  image_url: {
5231
5245
  url?: unknown;
5232
- detail?: "auto" | "low" | "high" | undefined;
5246
+ detail?: "auto" | "high" | "low" | undefined;
5233
5247
  };
5234
5248
  }>]>, "many">]>;
5235
5249
  role: z.ZodLiteral<"user">;
@@ -5245,7 +5259,7 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
5245
5259
  type: "image_url";
5246
5260
  image_url: {
5247
5261
  url: string;
5248
- detail?: "auto" | "low" | "high" | undefined;
5262
+ detail?: "auto" | "high" | "low" | undefined;
5249
5263
  };
5250
5264
  })[];
5251
5265
  role: "user";
@@ -5263,7 +5277,7 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
5263
5277
  type: "image_url";
5264
5278
  image_url: {
5265
5279
  url?: unknown;
5266
- detail?: "auto" | "low" | "high" | undefined;
5280
+ detail?: "auto" | "high" | "low" | undefined;
5267
5281
  };
5268
5282
  })[] | undefined;
5269
5283
  }>, z.ZodObject<{
@@ -5554,7 +5568,7 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
5554
5568
  type: "image_url";
5555
5569
  image_url: {
5556
5570
  url: string;
5557
- detail?: "auto" | "low" | "high" | undefined;
5571
+ detail?: "auto" | "high" | "low" | undefined;
5558
5572
  };
5559
5573
  })[];
5560
5574
  role: "user";
@@ -5637,7 +5651,7 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
5637
5651
  type: "image_url";
5638
5652
  image_url: {
5639
5653
  url?: unknown;
5640
- detail?: "auto" | "low" | "high" | undefined;
5654
+ detail?: "auto" | "high" | "low" | undefined;
5641
5655
  };
5642
5656
  })[] | undefined;
5643
5657
  } | {
@@ -5781,7 +5795,8 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
5781
5795
  }>]>>;
5782
5796
  n: z.ZodOptional<z.ZodNumber>;
5783
5797
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5784
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
5798
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
5799
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
5785
5800
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
5786
5801
  use_cache: z.ZodOptional<z.ZodBoolean>;
5787
5802
  } & {
@@ -5867,7 +5882,8 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
5867
5882
  }>]>>;
5868
5883
  n: z.ZodOptional<z.ZodNumber>;
5869
5884
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5870
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
5885
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
5886
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
5871
5887
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
5872
5888
  use_cache: z.ZodOptional<z.ZodBoolean>;
5873
5889
  } & {
@@ -5953,7 +5969,8 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
5953
5969
  }>]>>;
5954
5970
  n: z.ZodOptional<z.ZodNumber>;
5955
5971
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5956
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
5972
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
5973
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
5957
5974
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
5958
5975
  use_cache: z.ZodOptional<z.ZodBoolean>;
5959
5976
  } & {
@@ -6111,7 +6128,8 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
6111
6128
  }>]>>;
6112
6129
  n: z.ZodOptional<z.ZodNumber>;
6113
6130
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6114
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
6131
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
6132
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
6115
6133
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
6116
6134
  use_cache: z.ZodOptional<z.ZodBoolean>;
6117
6135
  } & {
@@ -6223,7 +6241,8 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
6223
6241
  }>]>>;
6224
6242
  n: z.ZodOptional<z.ZodNumber>;
6225
6243
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6226
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
6244
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
6245
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
6227
6246
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
6228
6247
  use_cache: z.ZodOptional<z.ZodBoolean>;
6229
6248
  } & {
@@ -6332,7 +6351,7 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
6332
6351
  type: "image_url";
6333
6352
  image_url: {
6334
6353
  url: string;
6335
- detail?: "auto" | "low" | "high" | undefined;
6354
+ detail?: "auto" | "high" | "low" | undefined;
6336
6355
  };
6337
6356
  })[];
6338
6357
  role: "user";
@@ -6478,7 +6497,8 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
6478
6497
  }>]>>;
6479
6498
  n: z.ZodOptional<z.ZodNumber>;
6480
6499
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6481
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
6500
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
6501
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
6482
6502
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
6483
6503
  use_cache: z.ZodOptional<z.ZodBoolean>;
6484
6504
  } & {
@@ -6543,7 +6563,7 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
6543
6563
  type: "image_url";
6544
6564
  image_url: {
6545
6565
  url?: unknown;
6546
- detail?: "auto" | "low" | "high" | undefined;
6566
+ detail?: "auto" | "high" | "low" | undefined;
6547
6567
  };
6548
6568
  })[] | undefined;
6549
6569
  } | {
@@ -6687,7 +6707,8 @@ declare const evalParametersSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodOb
6687
6707
  }>]>>;
6688
6708
  n: z.ZodOptional<z.ZodNumber>;
6689
6709
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6690
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
6710
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
6711
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
6691
6712
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
6692
6713
  use_cache: z.ZodOptional<z.ZodBoolean>;
6693
6714
  } & {
@@ -6965,6 +6986,11 @@ interface EvalOptions<EvalReport, Parameters extends EvalParameters> {
6965
6986
  * A `Reporter` which you can use to summarize progress after an Eval() runs.
6966
6987
  */
6967
6988
  reporter?: ReporterDef<EvalReport> | string;
6989
+ /**
6990
+ * Do not send logs to Braintrust. When true, the evaluation runs locally
6991
+ * and builds a local summary instead of creating an experiment. Defaults to false.
6992
+ */
6993
+ noSendLogs?: boolean;
6968
6994
  /**
6969
6995
  * A callback function that will be called when an experiment is started with
6970
6996
  * information about its project, experiment id, name, and other useful information.
@@ -7320,7 +7346,7 @@ declare class AISpanProcessor {
7320
7346
  * Keep spans if:
7321
7347
  * 1. It's a root span (no parent)
7322
7348
  * 2. Custom filter returns true/false (if provided)
7323
- * 3. Span name starts with 'gen_ai.', 'braintrust.', 'llm.', or 'ai.'
7349
+ * 3. Span name starts with 'gen_ai.', 'braintrust.', 'llm.', 'ai.', or 'traceloop.'
7324
7350
  * 4. Any attribute name starts with those prefixes
7325
7351
  */
7326
7352
  private shouldKeepFilteredSpan;
@@ -7729,23 +7755,23 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
7729
7755
  detail: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"low">, z.ZodLiteral<"high">]>>;
7730
7756
  }, "strip", z.ZodTypeAny, {
7731
7757
  url: string;
7732
- detail?: "auto" | "low" | "high" | undefined;
7758
+ detail?: "auto" | "high" | "low" | undefined;
7733
7759
  }, {
7734
7760
  url?: unknown;
7735
- detail?: "auto" | "low" | "high" | undefined;
7761
+ detail?: "auto" | "high" | "low" | undefined;
7736
7762
  }>;
7737
7763
  type: z.ZodLiteral<"image_url">;
7738
7764
  }, "strip", z.ZodTypeAny, {
7739
7765
  type: "image_url";
7740
7766
  image_url: {
7741
7767
  url: string;
7742
- detail?: "auto" | "low" | "high" | undefined;
7768
+ detail?: "auto" | "high" | "low" | undefined;
7743
7769
  };
7744
7770
  }, {
7745
7771
  type: "image_url";
7746
7772
  image_url: {
7747
7773
  url?: unknown;
7748
- detail?: "auto" | "low" | "high" | undefined;
7774
+ detail?: "auto" | "high" | "low" | undefined;
7749
7775
  };
7750
7776
  }>]>, "many">]>;
7751
7777
  role: z.ZodLiteral<"user">;
@@ -7761,7 +7787,7 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
7761
7787
  type: "image_url";
7762
7788
  image_url: {
7763
7789
  url: string;
7764
- detail?: "auto" | "low" | "high" | undefined;
7790
+ detail?: "auto" | "high" | "low" | undefined;
7765
7791
  };
7766
7792
  })[];
7767
7793
  role: "user";
@@ -7779,7 +7805,7 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
7779
7805
  type: "image_url";
7780
7806
  image_url: {
7781
7807
  url?: unknown;
7782
- detail?: "auto" | "low" | "high" | undefined;
7808
+ detail?: "auto" | "high" | "low" | undefined;
7783
7809
  };
7784
7810
  })[] | undefined;
7785
7811
  }>, z.ZodObject<{
@@ -8082,7 +8108,7 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
8082
8108
  type: "image_url";
8083
8109
  image_url: {
8084
8110
  url: string;
8085
- detail?: "auto" | "low" | "high" | undefined;
8111
+ detail?: "auto" | "high" | "low" | undefined;
8086
8112
  };
8087
8113
  })[];
8088
8114
  role: "user";
@@ -8167,7 +8193,7 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
8167
8193
  type: "image_url";
8168
8194
  image_url: {
8169
8195
  url?: unknown;
8170
- detail?: "auto" | "low" | "high" | undefined;
8196
+ detail?: "auto" | "high" | "low" | undefined;
8171
8197
  };
8172
8198
  })[] | undefined;
8173
8199
  } | {
@@ -8303,7 +8329,8 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
8303
8329
  }>]>>;
8304
8330
  n: z.ZodOptional<z.ZodNumber>;
8305
8331
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8306
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8332
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
8333
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8307
8334
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
8308
8335
  use_cache: z.ZodOptional<z.ZodBoolean>;
8309
8336
  } & {
@@ -8389,7 +8416,8 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
8389
8416
  }>]>>;
8390
8417
  n: z.ZodOptional<z.ZodNumber>;
8391
8418
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8392
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8419
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
8420
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8393
8421
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
8394
8422
  use_cache: z.ZodOptional<z.ZodBoolean>;
8395
8423
  } & {
@@ -8475,7 +8503,8 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
8475
8503
  }>]>>;
8476
8504
  n: z.ZodOptional<z.ZodNumber>;
8477
8505
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8478
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8506
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
8507
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8479
8508
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
8480
8509
  use_cache: z.ZodOptional<z.ZodBoolean>;
8481
8510
  } & {
@@ -8633,7 +8662,8 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
8633
8662
  }>]>>;
8634
8663
  n: z.ZodOptional<z.ZodNumber>;
8635
8664
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8636
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8665
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
8666
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8637
8667
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
8638
8668
  use_cache: z.ZodOptional<z.ZodBoolean>;
8639
8669
  } & {
@@ -8746,7 +8776,8 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
8746
8776
  }>]>>;
8747
8777
  n: z.ZodOptional<z.ZodNumber>;
8748
8778
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8749
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8779
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
8780
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8750
8781
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
8751
8782
  use_cache: z.ZodOptional<z.ZodBoolean>;
8752
8783
  } & {
@@ -8906,7 +8937,8 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
8906
8937
  }>]>>;
8907
8938
  n: z.ZodOptional<z.ZodNumber>;
8908
8939
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8909
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8940
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
8941
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
8910
8942
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
8911
8943
  use_cache: z.ZodOptional<z.ZodBoolean>;
8912
8944
  } & {
@@ -8970,7 +9002,7 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
8970
9002
  type: "image_url";
8971
9003
  image_url: {
8972
9004
  url: string;
8973
- detail?: "auto" | "low" | "high" | undefined;
9005
+ detail?: "auto" | "high" | "low" | undefined;
8974
9006
  };
8975
9007
  })[];
8976
9008
  role: "user";
@@ -9125,7 +9157,8 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
9125
9157
  }>]>>;
9126
9158
  n: z.ZodOptional<z.ZodNumber>;
9127
9159
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9128
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
9160
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
9161
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
9129
9162
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
9130
9163
  use_cache: z.ZodOptional<z.ZodBoolean>;
9131
9164
  } & {
@@ -9191,7 +9224,7 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
9191
9224
  type: "image_url";
9192
9225
  image_url: {
9193
9226
  url?: unknown;
9194
- detail?: "auto" | "low" | "high" | undefined;
9227
+ detail?: "auto" | "high" | "low" | undefined;
9195
9228
  };
9196
9229
  })[] | undefined;
9197
9230
  } | {
@@ -9348,7 +9381,8 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
9348
9381
  }>]>>;
9349
9382
  n: z.ZodOptional<z.ZodNumber>;
9350
9383
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9351
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
9384
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
9385
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
9352
9386
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
9353
9387
  use_cache: z.ZodOptional<z.ZodBoolean>;
9354
9388
  } & {
@@ -9412,7 +9446,7 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
9412
9446
  type: "image_url";
9413
9447
  image_url: {
9414
9448
  url: string;
9415
- detail?: "auto" | "low" | "high" | undefined;
9449
+ detail?: "auto" | "high" | "low" | undefined;
9416
9450
  };
9417
9451
  })[];
9418
9452
  role: "user";
@@ -9571,7 +9605,8 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
9571
9605
  }>]>>;
9572
9606
  n: z.ZodOptional<z.ZodNumber>;
9573
9607
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9574
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
9608
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
9609
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
9575
9610
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
9576
9611
  use_cache: z.ZodOptional<z.ZodBoolean>;
9577
9612
  } & {
@@ -9637,7 +9672,7 @@ declare const evalParametersSerializedSchema: z.ZodRecord<z.ZodString, z.ZodUnio
9637
9672
  type: "image_url";
9638
9673
  image_url: {
9639
9674
  url?: unknown;
9640
- detail?: "auto" | "low" | "high" | undefined;
9675
+ detail?: "auto" | "high" | "low" | undefined;
9641
9676
  };
9642
9677
  })[] | undefined;
9643
9678
  } | {
@@ -9812,23 +9847,23 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
9812
9847
  detail: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"low">, z.ZodLiteral<"high">]>>;
9813
9848
  }, "strip", z.ZodTypeAny, {
9814
9849
  url: string;
9815
- detail?: "auto" | "low" | "high" | undefined;
9850
+ detail?: "auto" | "high" | "low" | undefined;
9816
9851
  }, {
9817
9852
  url?: unknown;
9818
- detail?: "auto" | "low" | "high" | undefined;
9853
+ detail?: "auto" | "high" | "low" | undefined;
9819
9854
  }>;
9820
9855
  type: z.ZodLiteral<"image_url">;
9821
9856
  }, "strip", z.ZodTypeAny, {
9822
9857
  type: "image_url";
9823
9858
  image_url: {
9824
9859
  url: string;
9825
- detail?: "auto" | "low" | "high" | undefined;
9860
+ detail?: "auto" | "high" | "low" | undefined;
9826
9861
  };
9827
9862
  }, {
9828
9863
  type: "image_url";
9829
9864
  image_url: {
9830
9865
  url?: unknown;
9831
- detail?: "auto" | "low" | "high" | undefined;
9866
+ detail?: "auto" | "high" | "low" | undefined;
9832
9867
  };
9833
9868
  }>]>, "many">]>;
9834
9869
  role: z.ZodLiteral<"user">;
@@ -9844,7 +9879,7 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
9844
9879
  type: "image_url";
9845
9880
  image_url: {
9846
9881
  url: string;
9847
- detail?: "auto" | "low" | "high" | undefined;
9882
+ detail?: "auto" | "high" | "low" | undefined;
9848
9883
  };
9849
9884
  })[];
9850
9885
  role: "user";
@@ -9862,7 +9897,7 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
9862
9897
  type: "image_url";
9863
9898
  image_url: {
9864
9899
  url?: unknown;
9865
- detail?: "auto" | "low" | "high" | undefined;
9900
+ detail?: "auto" | "high" | "low" | undefined;
9866
9901
  };
9867
9902
  })[] | undefined;
9868
9903
  }>, z.ZodObject<{
@@ -10165,7 +10200,7 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
10165
10200
  type: "image_url";
10166
10201
  image_url: {
10167
10202
  url: string;
10168
- detail?: "auto" | "low" | "high" | undefined;
10203
+ detail?: "auto" | "high" | "low" | undefined;
10169
10204
  };
10170
10205
  })[];
10171
10206
  role: "user";
@@ -10250,7 +10285,7 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
10250
10285
  type: "image_url";
10251
10286
  image_url: {
10252
10287
  url?: unknown;
10253
- detail?: "auto" | "low" | "high" | undefined;
10288
+ detail?: "auto" | "high" | "low" | undefined;
10254
10289
  };
10255
10290
  })[] | undefined;
10256
10291
  } | {
@@ -10386,7 +10421,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
10386
10421
  }>]>>;
10387
10422
  n: z.ZodOptional<z.ZodNumber>;
10388
10423
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10389
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10424
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
10425
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10390
10426
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
10391
10427
  use_cache: z.ZodOptional<z.ZodBoolean>;
10392
10428
  } & {
@@ -10472,7 +10508,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
10472
10508
  }>]>>;
10473
10509
  n: z.ZodOptional<z.ZodNumber>;
10474
10510
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10475
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10511
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
10512
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10476
10513
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
10477
10514
  use_cache: z.ZodOptional<z.ZodBoolean>;
10478
10515
  } & {
@@ -10558,7 +10595,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
10558
10595
  }>]>>;
10559
10596
  n: z.ZodOptional<z.ZodNumber>;
10560
10597
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10561
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10598
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
10599
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10562
10600
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
10563
10601
  use_cache: z.ZodOptional<z.ZodBoolean>;
10564
10602
  } & {
@@ -10716,7 +10754,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
10716
10754
  }>]>>;
10717
10755
  n: z.ZodOptional<z.ZodNumber>;
10718
10756
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10719
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10757
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
10758
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10720
10759
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
10721
10760
  use_cache: z.ZodOptional<z.ZodBoolean>;
10722
10761
  } & {
@@ -10829,7 +10868,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
10829
10868
  }>]>>;
10830
10869
  n: z.ZodOptional<z.ZodNumber>;
10831
10870
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10832
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10871
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
10872
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10833
10873
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
10834
10874
  use_cache: z.ZodOptional<z.ZodBoolean>;
10835
10875
  } & {
@@ -10989,7 +11029,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
10989
11029
  }>]>>;
10990
11030
  n: z.ZodOptional<z.ZodNumber>;
10991
11031
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10992
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
11032
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
11033
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
10993
11034
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
10994
11035
  use_cache: z.ZodOptional<z.ZodBoolean>;
10995
11036
  } & {
@@ -11053,7 +11094,7 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
11053
11094
  type: "image_url";
11054
11095
  image_url: {
11055
11096
  url: string;
11056
- detail?: "auto" | "low" | "high" | undefined;
11097
+ detail?: "auto" | "high" | "low" | undefined;
11057
11098
  };
11058
11099
  })[];
11059
11100
  role: "user";
@@ -11208,7 +11249,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
11208
11249
  }>]>>;
11209
11250
  n: z.ZodOptional<z.ZodNumber>;
11210
11251
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11211
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
11252
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
11253
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
11212
11254
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
11213
11255
  use_cache: z.ZodOptional<z.ZodBoolean>;
11214
11256
  } & {
@@ -11274,7 +11316,7 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
11274
11316
  type: "image_url";
11275
11317
  image_url: {
11276
11318
  url?: unknown;
11277
- detail?: "auto" | "low" | "high" | undefined;
11319
+ detail?: "auto" | "high" | "low" | undefined;
11278
11320
  };
11279
11321
  })[] | undefined;
11280
11322
  } | {
@@ -11431,7 +11473,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
11431
11473
  }>]>>;
11432
11474
  n: z.ZodOptional<z.ZodNumber>;
11433
11475
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11434
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
11476
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
11477
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
11435
11478
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
11436
11479
  use_cache: z.ZodOptional<z.ZodBoolean>;
11437
11480
  } & {
@@ -11495,7 +11538,7 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
11495
11538
  type: "image_url";
11496
11539
  image_url: {
11497
11540
  url: string;
11498
- detail?: "auto" | "low" | "high" | undefined;
11541
+ detail?: "auto" | "high" | "low" | undefined;
11499
11542
  };
11500
11543
  })[];
11501
11544
  role: "user";
@@ -11654,7 +11697,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
11654
11697
  }>]>>;
11655
11698
  n: z.ZodOptional<z.ZodNumber>;
11656
11699
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11657
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
11700
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
11701
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
11658
11702
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
11659
11703
  use_cache: z.ZodOptional<z.ZodBoolean>;
11660
11704
  } & {
@@ -11720,7 +11764,7 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
11720
11764
  type: "image_url";
11721
11765
  image_url: {
11722
11766
  url?: unknown;
11723
- detail?: "auto" | "low" | "high" | undefined;
11767
+ detail?: "auto" | "high" | "low" | undefined;
11724
11768
  };
11725
11769
  })[] | undefined;
11726
11770
  } | {
@@ -11894,7 +11938,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
11894
11938
  }>]>>;
11895
11939
  n: z.ZodOptional<z.ZodNumber>;
11896
11940
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11897
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
11941
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
11942
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
11898
11943
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
11899
11944
  use_cache: z.ZodOptional<z.ZodBoolean>;
11900
11945
  } & {
@@ -11958,7 +12003,7 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
11958
12003
  type: "image_url";
11959
12004
  image_url: {
11960
12005
  url: string;
11961
- detail?: "auto" | "low" | "high" | undefined;
12006
+ detail?: "auto" | "high" | "low" | undefined;
11962
12007
  };
11963
12008
  })[];
11964
12009
  role: "user";
@@ -12124,7 +12169,8 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
12124
12169
  }>]>>;
12125
12170
  n: z.ZodOptional<z.ZodNumber>;
12126
12171
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12127
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
12172
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
12173
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
12128
12174
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
12129
12175
  use_cache: z.ZodOptional<z.ZodBoolean>;
12130
12176
  } & {
@@ -12190,7 +12236,7 @@ declare const evaluatorDefinitionSchema: z.ZodObject<{
12190
12236
  type: "image_url";
12191
12237
  image_url: {
12192
12238
  url?: unknown;
12193
- detail?: "auto" | "low" | "high" | undefined;
12239
+ detail?: "auto" | "high" | "low" | undefined;
12194
12240
  };
12195
12241
  })[] | undefined;
12196
12242
  } | {
@@ -12356,23 +12402,23 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
12356
12402
  detail: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"low">, z.ZodLiteral<"high">]>>;
12357
12403
  }, "strip", z.ZodTypeAny, {
12358
12404
  url: string;
12359
- detail?: "auto" | "low" | "high" | undefined;
12405
+ detail?: "auto" | "high" | "low" | undefined;
12360
12406
  }, {
12361
12407
  url?: unknown;
12362
- detail?: "auto" | "low" | "high" | undefined;
12408
+ detail?: "auto" | "high" | "low" | undefined;
12363
12409
  }>;
12364
12410
  type: z.ZodLiteral<"image_url">;
12365
12411
  }, "strip", z.ZodTypeAny, {
12366
12412
  type: "image_url";
12367
12413
  image_url: {
12368
12414
  url: string;
12369
- detail?: "auto" | "low" | "high" | undefined;
12415
+ detail?: "auto" | "high" | "low" | undefined;
12370
12416
  };
12371
12417
  }, {
12372
12418
  type: "image_url";
12373
12419
  image_url: {
12374
12420
  url?: unknown;
12375
- detail?: "auto" | "low" | "high" | undefined;
12421
+ detail?: "auto" | "high" | "low" | undefined;
12376
12422
  };
12377
12423
  }>]>, "many">]>;
12378
12424
  role: z.ZodLiteral<"user">;
@@ -12388,7 +12434,7 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
12388
12434
  type: "image_url";
12389
12435
  image_url: {
12390
12436
  url: string;
12391
- detail?: "auto" | "low" | "high" | undefined;
12437
+ detail?: "auto" | "high" | "low" | undefined;
12392
12438
  };
12393
12439
  })[];
12394
12440
  role: "user";
@@ -12406,7 +12452,7 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
12406
12452
  type: "image_url";
12407
12453
  image_url: {
12408
12454
  url?: unknown;
12409
- detail?: "auto" | "low" | "high" | undefined;
12455
+ detail?: "auto" | "high" | "low" | undefined;
12410
12456
  };
12411
12457
  })[] | undefined;
12412
12458
  }>, z.ZodObject<{
@@ -12709,7 +12755,7 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
12709
12755
  type: "image_url";
12710
12756
  image_url: {
12711
12757
  url: string;
12712
- detail?: "auto" | "low" | "high" | undefined;
12758
+ detail?: "auto" | "high" | "low" | undefined;
12713
12759
  };
12714
12760
  })[];
12715
12761
  role: "user";
@@ -12794,7 +12840,7 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
12794
12840
  type: "image_url";
12795
12841
  image_url: {
12796
12842
  url?: unknown;
12797
- detail?: "auto" | "low" | "high" | undefined;
12843
+ detail?: "auto" | "high" | "low" | undefined;
12798
12844
  };
12799
12845
  })[] | undefined;
12800
12846
  } | {
@@ -12930,7 +12976,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
12930
12976
  }>]>>;
12931
12977
  n: z.ZodOptional<z.ZodNumber>;
12932
12978
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12933
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
12979
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
12980
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
12934
12981
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
12935
12982
  use_cache: z.ZodOptional<z.ZodBoolean>;
12936
12983
  } & {
@@ -13016,7 +13063,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
13016
13063
  }>]>>;
13017
13064
  n: z.ZodOptional<z.ZodNumber>;
13018
13065
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13019
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13066
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
13067
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13020
13068
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13021
13069
  use_cache: z.ZodOptional<z.ZodBoolean>;
13022
13070
  } & {
@@ -13102,7 +13150,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
13102
13150
  }>]>>;
13103
13151
  n: z.ZodOptional<z.ZodNumber>;
13104
13152
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13105
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13153
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
13154
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13106
13155
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
13107
13156
  use_cache: z.ZodOptional<z.ZodBoolean>;
13108
13157
  } & {
@@ -13260,7 +13309,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
13260
13309
  }>]>>;
13261
13310
  n: z.ZodOptional<z.ZodNumber>;
13262
13311
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13263
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13312
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
13313
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13264
13314
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
13265
13315
  use_cache: z.ZodOptional<z.ZodBoolean>;
13266
13316
  } & {
@@ -13373,7 +13423,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
13373
13423
  }>]>>;
13374
13424
  n: z.ZodOptional<z.ZodNumber>;
13375
13425
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13376
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13426
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
13427
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13377
13428
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
13378
13429
  use_cache: z.ZodOptional<z.ZodBoolean>;
13379
13430
  } & {
@@ -13533,7 +13584,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
13533
13584
  }>]>>;
13534
13585
  n: z.ZodOptional<z.ZodNumber>;
13535
13586
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13536
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13587
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
13588
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13537
13589
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
13538
13590
  use_cache: z.ZodOptional<z.ZodBoolean>;
13539
13591
  } & {
@@ -13597,7 +13649,7 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
13597
13649
  type: "image_url";
13598
13650
  image_url: {
13599
13651
  url: string;
13600
- detail?: "auto" | "low" | "high" | undefined;
13652
+ detail?: "auto" | "high" | "low" | undefined;
13601
13653
  };
13602
13654
  })[];
13603
13655
  role: "user";
@@ -13752,7 +13804,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
13752
13804
  }>]>>;
13753
13805
  n: z.ZodOptional<z.ZodNumber>;
13754
13806
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13755
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13807
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
13808
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13756
13809
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
13757
13810
  use_cache: z.ZodOptional<z.ZodBoolean>;
13758
13811
  } & {
@@ -13818,7 +13871,7 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
13818
13871
  type: "image_url";
13819
13872
  image_url: {
13820
13873
  url?: unknown;
13821
- detail?: "auto" | "low" | "high" | undefined;
13874
+ detail?: "auto" | "high" | "low" | undefined;
13822
13875
  };
13823
13876
  })[] | undefined;
13824
13877
  } | {
@@ -13975,7 +14028,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
13975
14028
  }>]>>;
13976
14029
  n: z.ZodOptional<z.ZodNumber>;
13977
14030
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13978
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
14031
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
14032
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
13979
14033
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
13980
14034
  use_cache: z.ZodOptional<z.ZodBoolean>;
13981
14035
  } & {
@@ -14039,7 +14093,7 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
14039
14093
  type: "image_url";
14040
14094
  image_url: {
14041
14095
  url: string;
14042
- detail?: "auto" | "low" | "high" | undefined;
14096
+ detail?: "auto" | "high" | "low" | undefined;
14043
14097
  };
14044
14098
  })[];
14045
14099
  role: "user";
@@ -14198,7 +14252,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
14198
14252
  }>]>>;
14199
14253
  n: z.ZodOptional<z.ZodNumber>;
14200
14254
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14201
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
14255
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
14256
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
14202
14257
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
14203
14258
  use_cache: z.ZodOptional<z.ZodBoolean>;
14204
14259
  } & {
@@ -14264,7 +14319,7 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
14264
14319
  type: "image_url";
14265
14320
  image_url: {
14266
14321
  url?: unknown;
14267
- detail?: "auto" | "low" | "high" | undefined;
14322
+ detail?: "auto" | "high" | "low" | undefined;
14268
14323
  };
14269
14324
  })[] | undefined;
14270
14325
  } | {
@@ -14438,7 +14493,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
14438
14493
  }>]>>;
14439
14494
  n: z.ZodOptional<z.ZodNumber>;
14440
14495
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14441
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
14496
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
14497
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
14442
14498
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
14443
14499
  use_cache: z.ZodOptional<z.ZodBoolean>;
14444
14500
  } & {
@@ -14502,7 +14558,7 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
14502
14558
  type: "image_url";
14503
14559
  image_url: {
14504
14560
  url: string;
14505
- detail?: "auto" | "low" | "high" | undefined;
14561
+ detail?: "auto" | "high" | "low" | undefined;
14506
14562
  };
14507
14563
  })[];
14508
14564
  role: "user";
@@ -14668,7 +14724,8 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
14668
14724
  }>]>>;
14669
14725
  n: z.ZodOptional<z.ZodNumber>;
14670
14726
  stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14671
- reasoning_effort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
14727
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
14728
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
14672
14729
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
14673
14730
  use_cache: z.ZodOptional<z.ZodBoolean>;
14674
14731
  } & {
@@ -14734,7 +14791,7 @@ declare const evaluatorDefinitionsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
14734
14791
  type: "image_url";
14735
14792
  image_url: {
14736
14793
  url?: unknown;
14737
- detail?: "auto" | "low" | "high" | undefined;
14794
+ detail?: "auto" | "high" | "low" | undefined;
14738
14795
  };
14739
14796
  })[] | undefined;
14740
14797
  } | {