@ls-stack/agent-eval 0.46.0 → 0.47.0

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
@@ -1831,9 +1831,9 @@ declare const traceAttributeDisplaySchema: z$1.ZodObject<{
1831
1831
  subtree: "subtree";
1832
1832
  }>>;
1833
1833
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1834
- sum: "sum";
1835
- last: "last";
1836
1834
  all: "all";
1835
+ last: "last";
1836
+ sum: "sum";
1837
1837
  }>>;
1838
1838
  }, z$1.core.$strip>;
1839
1839
  /**
@@ -1867,9 +1867,9 @@ declare const traceDisplayConfigSchema: z$1.ZodObject<{
1867
1867
  subtree: "subtree";
1868
1868
  }>>;
1869
1869
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1870
- sum: "sum";
1871
- last: "last";
1872
1870
  all: "all";
1871
+ last: "last";
1872
+ sum: "sum";
1873
1873
  }>>;
1874
1874
  }, z$1.core.$strip>>>;
1875
1875
  }, z$1.core.$strip>;
@@ -1907,9 +1907,9 @@ declare const traceAttributeDisplayInputSchema: z$1.ZodObject<{
1907
1907
  subtree: "subtree";
1908
1908
  }>>;
1909
1909
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1910
- sum: "sum";
1911
- last: "last";
1912
1910
  all: "all";
1911
+ last: "last";
1912
+ sum: "sum";
1913
1913
  }>>;
1914
1914
  transform: z$1.ZodOptional<z$1.ZodCustom<TraceAttributeTransform, TraceAttributeTransform>>;
1915
1915
  }, z$1.core.$strip>;
@@ -1945,9 +1945,9 @@ declare const traceDisplayInputConfigSchema: z$1.ZodObject<{
1945
1945
  subtree: "subtree";
1946
1946
  }>>;
1947
1947
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1948
- sum: "sum";
1949
- last: "last";
1950
1948
  all: "all";
1949
+ last: "last";
1950
+ sum: "sum";
1951
1951
  }>>;
1952
1952
  transform: z$1.ZodOptional<z$1.ZodCustom<TraceAttributeTransform, TraceAttributeTransform>>;
1953
1953
  }, z$1.core.$strip>>>;
@@ -1984,8 +1984,8 @@ declare const traceSpanSchema$1: z$1.ZodObject<{
1984
1984
  status: z$1.ZodEnum<{
1985
1985
  error: "error";
1986
1986
  running: "running";
1987
- cancelled: "cancelled";
1988
1987
  ok: "ok";
1988
+ cancelled: "cancelled";
1989
1989
  }>;
1990
1990
  attributes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
1991
1991
  error: z$1.ZodOptional<z$1.ZodObject<{
@@ -2026,11 +2026,11 @@ declare const evalFreshnessStatusSchema: z$1.ZodEnum<{
2026
2026
  type EvalFreshnessStatus = z$1.infer<typeof evalFreshnessStatusSchema>;
2027
2027
  /** Reducer used to collapse a column's per-case values into a single stat. */
2028
2028
  declare const evalStatAggregateSchema: z$1.ZodEnum<{
2029
+ last: "last";
2030
+ sum: "sum";
2029
2031
  avg: "avg";
2030
2032
  min: "min";
2031
2033
  max: "max";
2032
- sum: "sum";
2033
- last: "last";
2034
2034
  }>;
2035
2035
  /** Reducer used to collapse a column's per-case values into a single stat. */
2036
2036
  type EvalStatAggregate = z$1.infer<typeof evalStatAggregateSchema>;
@@ -2054,11 +2054,11 @@ declare const evalStatItemSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2054
2054
  key: z$1.ZodString;
2055
2055
  label: z$1.ZodOptional<z$1.ZodString>;
2056
2056
  aggregate: z$1.ZodEnum<{
2057
+ last: "last";
2058
+ sum: "sum";
2057
2059
  avg: "avg";
2058
2060
  min: "min";
2059
2061
  max: "max";
2060
- sum: "sum";
2061
- last: "last";
2062
2062
  }>;
2063
2063
  format: z$1.ZodOptional<z$1.ZodEnum<{
2064
2064
  number: "number";
@@ -2096,11 +2096,11 @@ declare const evalStatsConfigSchema: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1
2096
2096
  key: z$1.ZodString;
2097
2097
  label: z$1.ZodOptional<z$1.ZodString>;
2098
2098
  aggregate: z$1.ZodEnum<{
2099
+ last: "last";
2100
+ sum: "sum";
2099
2101
  avg: "avg";
2100
2102
  min: "min";
2101
2103
  max: "max";
2102
- sum: "sum";
2103
- last: "last";
2104
2104
  }>;
2105
2105
  format: z$1.ZodOptional<z$1.ZodEnum<{
2106
2106
  number: "number";
@@ -2177,10 +2177,10 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2177
2177
  caseIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2178
2178
  lastRunStatus: z$1.ZodNullable<z$1.ZodEnum<{
2179
2179
  error: "error";
2180
- pass: "pass";
2181
- fail: "fail";
2182
2180
  running: "running";
2183
2181
  cancelled: "cancelled";
2182
+ pass: "pass";
2183
+ fail: "fail";
2184
2184
  unscored: "unscored";
2185
2185
  }>>;
2186
2186
  stats: z$1.ZodOptional<z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
@@ -2199,11 +2199,11 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2199
2199
  key: z$1.ZodString;
2200
2200
  label: z$1.ZodOptional<z$1.ZodString>;
2201
2201
  aggregate: z$1.ZodEnum<{
2202
+ last: "last";
2203
+ sum: "sum";
2202
2204
  avg: "avg";
2203
2205
  min: "min";
2204
2206
  max: "max";
2205
- sum: "sum";
2206
- last: "last";
2207
2207
  }>;
2208
2208
  format: z$1.ZodOptional<z$1.ZodEnum<{
2209
2209
  number: "number";
@@ -2239,11 +2239,11 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2239
2239
  }>;
2240
2240
  label: z$1.ZodOptional<z$1.ZodString>;
2241
2241
  color: z$1.ZodOptional<z$1.ZodEnum<{
2242
- success: "success";
2243
2242
  error: "error";
2243
+ success: "success";
2244
+ warning: "warning";
2244
2245
  accent: "accent";
2245
2246
  accentDim: "accentDim";
2246
- warning: "warning";
2247
2247
  textMuted: "textMuted";
2248
2248
  }>>;
2249
2249
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2254,20 +2254,20 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2254
2254
  source: z$1.ZodLiteral<"column">;
2255
2255
  key: z$1.ZodString;
2256
2256
  aggregate: z$1.ZodEnum<{
2257
+ sum: "sum";
2257
2258
  avg: "avg";
2258
2259
  min: "min";
2259
2260
  max: "max";
2260
- sum: "sum";
2261
2261
  latest: "latest";
2262
2262
  passThresholdRate: "passThresholdRate";
2263
2263
  }>;
2264
2264
  label: z$1.ZodOptional<z$1.ZodString>;
2265
2265
  color: z$1.ZodOptional<z$1.ZodEnum<{
2266
- success: "success";
2267
2266
  error: "error";
2267
+ success: "success";
2268
+ warning: "warning";
2268
2269
  accent: "accent";
2269
2270
  accentDim: "accentDim";
2270
- warning: "warning";
2271
2271
  textMuted: "textMuted";
2272
2272
  }>>;
2273
2273
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2296,10 +2296,10 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2296
2296
  source: z$1.ZodLiteral<"column">;
2297
2297
  key: z$1.ZodString;
2298
2298
  aggregate: z$1.ZodEnum<{
2299
+ sum: "sum";
2299
2300
  avg: "avg";
2300
2301
  min: "min";
2301
2302
  max: "max";
2302
- sum: "sum";
2303
2303
  latest: "latest";
2304
2304
  passThresholdRate: "passThresholdRate";
2305
2305
  }>;
@@ -2396,10 +2396,10 @@ declare const caseRowSchema$1: z$1.ZodObject<{
2396
2396
  tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2397
2397
  status: z$1.ZodEnum<{
2398
2398
  error: "error";
2399
- pass: "pass";
2400
- fail: "fail";
2401
2399
  running: "running";
2402
2400
  cancelled: "cancelled";
2401
+ pass: "pass";
2402
+ fail: "fail";
2403
2403
  pending: "pending";
2404
2404
  }>;
2405
2405
  durationMs: z$1.ZodNullable<z$1.ZodNumber>;
@@ -2492,8 +2492,8 @@ declare const scoreTraceSchema: z$1.ZodObject<{
2492
2492
  status: z$1.ZodEnum<{
2493
2493
  error: "error";
2494
2494
  running: "running";
2495
- cancelled: "cancelled";
2496
2495
  ok: "ok";
2496
+ cancelled: "cancelled";
2497
2497
  }>;
2498
2498
  attributes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
2499
2499
  error: z$1.ZodOptional<z$1.ZodObject<{
@@ -2543,9 +2543,9 @@ declare const scoreTraceSchema: z$1.ZodObject<{
2543
2543
  subtree: "subtree";
2544
2544
  }>>;
2545
2545
  mode: z$1.ZodOptional<z$1.ZodEnum<{
2546
- sum: "sum";
2547
- last: "last";
2548
2546
  all: "all";
2547
+ last: "last";
2548
+ sum: "sum";
2549
2549
  }>>;
2550
2550
  }, z$1.core.$strip>>>;
2551
2551
  }, z$1.core.$strip>;
@@ -2561,10 +2561,10 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2561
2561
  tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2562
2562
  status: z$1.ZodEnum<{
2563
2563
  error: "error";
2564
- pass: "pass";
2565
- fail: "fail";
2566
2564
  running: "running";
2567
2565
  cancelled: "cancelled";
2566
+ pass: "pass";
2567
+ fail: "fail";
2568
2568
  pending: "pending";
2569
2569
  }>;
2570
2570
  input: z$1.ZodUnknown;
@@ -2579,8 +2579,8 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2579
2579
  status: z$1.ZodEnum<{
2580
2580
  error: "error";
2581
2581
  running: "running";
2582
- cancelled: "cancelled";
2583
2582
  ok: "ok";
2583
+ cancelled: "cancelled";
2584
2584
  }>;
2585
2585
  attributes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
2586
2586
  error: z$1.ZodOptional<z$1.ZodObject<{
@@ -2630,9 +2630,9 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2630
2630
  subtree: "subtree";
2631
2631
  }>>;
2632
2632
  mode: z$1.ZodOptional<z$1.ZodEnum<{
2633
- sum: "sum";
2634
- last: "last";
2635
2633
  all: "all";
2634
+ last: "last";
2635
+ sum: "sum";
2636
2636
  }>>;
2637
2637
  }, z$1.core.$strip>>>;
2638
2638
  }, z$1.core.$strip>;
@@ -2648,8 +2648,8 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2648
2648
  status: z$1.ZodEnum<{
2649
2649
  error: "error";
2650
2650
  running: "running";
2651
- cancelled: "cancelled";
2652
2651
  ok: "ok";
2652
+ cancelled: "cancelled";
2653
2653
  }>;
2654
2654
  attributes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
2655
2655
  error: z$1.ZodOptional<z$1.ZodObject<{
@@ -2699,9 +2699,9 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2699
2699
  subtree: "subtree";
2700
2700
  }>>;
2701
2701
  mode: z$1.ZodOptional<z$1.ZodEnum<{
2702
- sum: "sum";
2703
- last: "last";
2704
2702
  all: "all";
2703
+ last: "last";
2704
+ sum: "sum";
2705
2705
  }>>;
2706
2706
  }, z$1.core.$strip>>>;
2707
2707
  }, z$1.core.$strip>;
@@ -2761,10 +2761,10 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2761
2761
  namespace: z$1.ZodString;
2762
2762
  key: z$1.ZodString;
2763
2763
  status: z$1.ZodEnum<{
2764
+ bypass: "bypass";
2765
+ refresh: "refresh";
2764
2766
  hit: "hit";
2765
2767
  miss: "miss";
2766
- refresh: "refresh";
2767
- bypass: "bypass";
2768
2768
  }>;
2769
2769
  read: z$1.ZodOptional<z$1.ZodBoolean>;
2770
2770
  stored: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -2817,10 +2817,10 @@ declare const evalChartBuiltinMetricSchema: z$1.ZodEnum<{
2817
2817
  type EvalChartBuiltinMetric = z$1.infer<typeof evalChartBuiltinMetricSchema>;
2818
2818
  /** Reducer applied to a numeric column across all cases of a single run. */
2819
2819
  declare const evalChartAggregateSchema: z$1.ZodEnum<{
2820
+ sum: "sum";
2820
2821
  avg: "avg";
2821
2822
  min: "min";
2822
2823
  max: "max";
2823
- sum: "sum";
2824
2824
  latest: "latest";
2825
2825
  passThresholdRate: "passThresholdRate";
2826
2826
  }>;
@@ -2831,11 +2831,11 @@ type EvalChartAggregate = z$1.infer<typeof evalChartAggregateSchema>;
2831
2831
  * not emit raw hex so authored evals stay decoupled from the web theme.
2832
2832
  */
2833
2833
  declare const evalChartColorSchema: z$1.ZodEnum<{
2834
- success: "success";
2835
2834
  error: "error";
2835
+ success: "success";
2836
+ warning: "warning";
2836
2837
  accent: "accent";
2837
2838
  accentDim: "accentDim";
2838
- warning: "warning";
2839
2839
  textMuted: "textMuted";
2840
2840
  }>;
2841
2841
  /** Semantic color token resolved to a theme color by the web UI. */
@@ -2860,11 +2860,11 @@ declare const evalChartMetricSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2860
2860
  }>;
2861
2861
  label: z$1.ZodOptional<z$1.ZodString>;
2862
2862
  color: z$1.ZodOptional<z$1.ZodEnum<{
2863
- success: "success";
2864
2863
  error: "error";
2864
+ success: "success";
2865
+ warning: "warning";
2865
2866
  accent: "accent";
2866
2867
  accentDim: "accentDim";
2867
- warning: "warning";
2868
2868
  textMuted: "textMuted";
2869
2869
  }>>;
2870
2870
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2875,20 +2875,20 @@ declare const evalChartMetricSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2875
2875
  source: z$1.ZodLiteral<"column">;
2876
2876
  key: z$1.ZodString;
2877
2877
  aggregate: z$1.ZodEnum<{
2878
+ sum: "sum";
2878
2879
  avg: "avg";
2879
2880
  min: "min";
2880
2881
  max: "max";
2881
- sum: "sum";
2882
2882
  latest: "latest";
2883
2883
  passThresholdRate: "passThresholdRate";
2884
2884
  }>;
2885
2885
  label: z$1.ZodOptional<z$1.ZodString>;
2886
2886
  color: z$1.ZodOptional<z$1.ZodEnum<{
2887
- success: "success";
2888
2887
  error: "error";
2888
+ success: "success";
2889
+ warning: "warning";
2889
2890
  accent: "accent";
2890
2891
  accentDim: "accentDim";
2891
- warning: "warning";
2892
2892
  textMuted: "textMuted";
2893
2893
  }>>;
2894
2894
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2910,10 +2910,10 @@ declare const evalChartTooltipExtraSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObj
2910
2910
  source: z$1.ZodLiteral<"column">;
2911
2911
  key: z$1.ZodString;
2912
2912
  aggregate: z$1.ZodEnum<{
2913
+ sum: "sum";
2913
2914
  avg: "avg";
2914
2915
  min: "min";
2915
2916
  max: "max";
2916
- sum: "sum";
2917
2917
  latest: "latest";
2918
2918
  passThresholdRate: "passThresholdRate";
2919
2919
  }>;
@@ -2943,11 +2943,11 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
2943
2943
  }>;
2944
2944
  label: z$1.ZodOptional<z$1.ZodString>;
2945
2945
  color: z$1.ZodOptional<z$1.ZodEnum<{
2946
- success: "success";
2947
2946
  error: "error";
2947
+ success: "success";
2948
+ warning: "warning";
2948
2949
  accent: "accent";
2949
2950
  accentDim: "accentDim";
2950
- warning: "warning";
2951
2951
  textMuted: "textMuted";
2952
2952
  }>>;
2953
2953
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2958,20 +2958,20 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
2958
2958
  source: z$1.ZodLiteral<"column">;
2959
2959
  key: z$1.ZodString;
2960
2960
  aggregate: z$1.ZodEnum<{
2961
+ sum: "sum";
2961
2962
  avg: "avg";
2962
2963
  min: "min";
2963
2964
  max: "max";
2964
- sum: "sum";
2965
2965
  latest: "latest";
2966
2966
  passThresholdRate: "passThresholdRate";
2967
2967
  }>;
2968
2968
  label: z$1.ZodOptional<z$1.ZodString>;
2969
2969
  color: z$1.ZodOptional<z$1.ZodEnum<{
2970
- success: "success";
2971
2970
  error: "error";
2971
+ success: "success";
2972
+ warning: "warning";
2972
2973
  accent: "accent";
2973
2974
  accentDim: "accentDim";
2974
- warning: "warning";
2975
2975
  textMuted: "textMuted";
2976
2976
  }>>;
2977
2977
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -3000,10 +3000,10 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
3000
3000
  source: z$1.ZodLiteral<"column">;
3001
3001
  key: z$1.ZodString;
3002
3002
  aggregate: z$1.ZodEnum<{
3003
+ sum: "sum";
3003
3004
  avg: "avg";
3004
3005
  min: "min";
3005
3006
  max: "max";
3006
- sum: "sum";
3007
3007
  latest: "latest";
3008
3008
  passThresholdRate: "passThresholdRate";
3009
3009
  }>;
@@ -3033,11 +3033,11 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3033
3033
  }>;
3034
3034
  label: z$1.ZodOptional<z$1.ZodString>;
3035
3035
  color: z$1.ZodOptional<z$1.ZodEnum<{
3036
- success: "success";
3037
3036
  error: "error";
3037
+ success: "success";
3038
+ warning: "warning";
3038
3039
  accent: "accent";
3039
3040
  accentDim: "accentDim";
3040
- warning: "warning";
3041
3041
  textMuted: "textMuted";
3042
3042
  }>>;
3043
3043
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -3048,20 +3048,20 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3048
3048
  source: z$1.ZodLiteral<"column">;
3049
3049
  key: z$1.ZodString;
3050
3050
  aggregate: z$1.ZodEnum<{
3051
+ sum: "sum";
3051
3052
  avg: "avg";
3052
3053
  min: "min";
3053
3054
  max: "max";
3054
- sum: "sum";
3055
3055
  latest: "latest";
3056
3056
  passThresholdRate: "passThresholdRate";
3057
3057
  }>;
3058
3058
  label: z$1.ZodOptional<z$1.ZodString>;
3059
3059
  color: z$1.ZodOptional<z$1.ZodEnum<{
3060
- success: "success";
3061
3060
  error: "error";
3061
+ success: "success";
3062
+ warning: "warning";
3062
3063
  accent: "accent";
3063
3064
  accentDim: "accentDim";
3064
- warning: "warning";
3065
3065
  textMuted: "textMuted";
3066
3066
  }>>;
3067
3067
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -3090,10 +3090,10 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3090
3090
  source: z$1.ZodLiteral<"column">;
3091
3091
  key: z$1.ZodString;
3092
3092
  aggregate: z$1.ZodEnum<{
3093
+ sum: "sum";
3093
3094
  avg: "avg";
3094
3095
  min: "min";
3095
3096
  max: "max";
3096
- sum: "sum";
3097
3097
  latest: "latest";
3098
3098
  passThresholdRate: "passThresholdRate";
3099
3099
  }>;
@@ -3121,8 +3121,8 @@ declare const runManifestSchema$1: z$1.ZodObject<{
3121
3121
  evalSourceFingerprints: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
3122
3122
  target: z$1.ZodObject<{
3123
3123
  mode: z$1.ZodEnum<{
3124
- caseIds: "caseIds";
3125
3124
  all: "all";
3125
+ caseIds: "caseIds";
3126
3126
  evalIds: "evalIds";
3127
3127
  }>;
3128
3128
  evalKeys: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -3137,9 +3137,9 @@ declare const runManifestSchema$1: z$1.ZodObject<{
3137
3137
  median: "median";
3138
3138
  }>>>;
3139
3139
  cacheMode: z$1.ZodOptional<z$1.ZodEnum<{
3140
- refresh: "refresh";
3141
- bypass: "bypass";
3142
3140
  use: "use";
3141
+ bypass: "bypass";
3142
+ refresh: "refresh";
3143
3143
  }>>;
3144
3144
  }, z$1.core.$strip>;
3145
3145
  /** Persisted lifecycle metadata for a single eval run. */
@@ -4026,9 +4026,9 @@ declare function extractApiCalls(spans: EvalTraceSpan$1[], config: ResolvedApiCa
4026
4026
  * - `refresh`: never read, always write (forces re-execution and overwrites).
4027
4027
  */
4028
4028
  declare const cacheModeSchema: z$1.ZodEnum<{
4029
- refresh: "refresh";
4030
- bypass: "bypass";
4031
4029
  use: "use";
4030
+ bypass: "bypass";
4031
+ refresh: "refresh";
4032
4032
  }>;
4033
4033
  /** Mode controlling how cached spans behave during a run. */
4034
4034
  type CacheMode = z$1.infer<typeof cacheModeSchema>;
@@ -4042,17 +4042,17 @@ declare const spanCacheOptionsSchema: z$1.ZodObject<{
4042
4042
  type SpanCacheOptions = z$1.infer<typeof spanCacheOptionsSchema>;
4043
4043
  /** Category of operation stored in the eval cache. */
4044
4044
  declare const cacheOperationTypeSchema: z$1.ZodEnum<{
4045
- value: "value";
4046
4045
  span: "span";
4046
+ value: "value";
4047
4047
  }>;
4048
4048
  /** Category of operation stored in the eval cache. */
4049
4049
  type CacheOperationType = z$1.infer<typeof cacheOperationTypeSchema>;
4050
4050
  /** Status of a cache lookup recorded on a span or case scope. */
4051
4051
  declare const cacheStatusSchema: z$1.ZodEnum<{
4052
+ bypass: "bypass";
4053
+ refresh: "refresh";
4052
4054
  hit: "hit";
4053
4055
  miss: "miss";
4054
- refresh: "refresh";
4055
- bypass: "bypass";
4056
4056
  }>;
4057
4057
  /** Status of a cache lookup recorded on a span or case scope. */
4058
4058
  type CacheStatus = z$1.infer<typeof cacheStatusSchema>;
@@ -4069,10 +4069,10 @@ declare const traceCacheRefSchema: z$1.ZodObject<{
4069
4069
  namespace: z$1.ZodString;
4070
4070
  key: z$1.ZodString;
4071
4071
  status: z$1.ZodEnum<{
4072
+ bypass: "bypass";
4073
+ refresh: "refresh";
4072
4074
  hit: "hit";
4073
4075
  miss: "miss";
4074
- refresh: "refresh";
4075
- bypass: "bypass";
4076
4076
  }>;
4077
4077
  read: z$1.ZodOptional<z$1.ZodBoolean>;
4078
4078
  stored: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -4086,8 +4086,8 @@ declare const cacheListItemSchema$1: z$1.ZodObject<{
4086
4086
  key: z$1.ZodString;
4087
4087
  namespace: z$1.ZodString;
4088
4088
  operationType: z$1.ZodEnum<{
4089
- value: "value";
4090
4089
  span: "span";
4090
+ value: "value";
4091
4091
  }>;
4092
4092
  operationName: z$1.ZodString;
4093
4093
  spanName: z$1.ZodOptional<z$1.ZodString>;
@@ -4149,8 +4149,8 @@ declare const cacheRecordingSchema: z$1.ZodObject<{
4149
4149
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4150
4150
  error: "error";
4151
4151
  running: "running";
4152
- cancelled: "cancelled";
4153
4152
  ok: "ok";
4153
+ cancelled: "cancelled";
4154
4154
  }>>;
4155
4155
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4156
4156
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4209,8 +4209,8 @@ declare const cacheEntrySchema: z$1.ZodObject<{
4209
4209
  key: z$1.ZodString;
4210
4210
  namespace: z$1.ZodString;
4211
4211
  operationType: z$1.ZodOptional<z$1.ZodEnum<{
4212
- value: "value";
4213
4212
  span: "span";
4213
+ value: "value";
4214
4214
  }>>;
4215
4215
  operationName: z$1.ZodOptional<z$1.ZodString>;
4216
4216
  spanName: z$1.ZodOptional<z$1.ZodString>;
@@ -4222,8 +4222,8 @@ declare const cacheEntrySchema: z$1.ZodObject<{
4222
4222
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4223
4223
  error: "error";
4224
4224
  running: "running";
4225
- cancelled: "cancelled";
4226
4225
  ok: "ok";
4226
+ cancelled: "cancelled";
4227
4227
  }>>;
4228
4228
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4229
4229
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4288,8 +4288,8 @@ declare const cacheDebugKeyEntrySchema: z$1.ZodObject<{
4288
4288
  key: z$1.ZodString;
4289
4289
  namespace: z$1.ZodString;
4290
4290
  operationType: z$1.ZodEnum<{
4291
- value: "value";
4292
4291
  span: "span";
4292
+ value: "value";
4293
4293
  }>;
4294
4294
  operationName: z$1.ZodString;
4295
4295
  storedAt: z$1.ZodString;
@@ -4299,8 +4299,8 @@ declare const cacheDebugKeyEntrySchema: z$1.ZodObject<{
4299
4299
  key: z$1.ZodString;
4300
4300
  namespace: z$1.ZodString;
4301
4301
  operationType: z$1.ZodOptional<z$1.ZodEnum<{
4302
- value: "value";
4303
4302
  span: "span";
4303
+ value: "value";
4304
4304
  }>>;
4305
4305
  operationName: z$1.ZodOptional<z$1.ZodString>;
4306
4306
  spanName: z$1.ZodOptional<z$1.ZodString>;
@@ -4312,8 +4312,8 @@ declare const cacheDebugKeyEntrySchema: z$1.ZodObject<{
4312
4312
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4313
4313
  error: "error";
4314
4314
  running: "running";
4315
- cancelled: "cancelled";
4316
4315
  ok: "ok";
4316
+ cancelled: "cancelled";
4317
4317
  }>>;
4318
4318
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4319
4319
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4378,8 +4378,8 @@ declare const cacheEntryWithDebugKeySchema$1: z$1.ZodObject<{
4378
4378
  key: z$1.ZodString;
4379
4379
  namespace: z$1.ZodString;
4380
4380
  operationType: z$1.ZodOptional<z$1.ZodEnum<{
4381
- value: "value";
4382
4381
  span: "span";
4382
+ value: "value";
4383
4383
  }>>;
4384
4384
  operationName: z$1.ZodOptional<z$1.ZodString>;
4385
4385
  spanName: z$1.ZodOptional<z$1.ZodString>;
@@ -4391,8 +4391,8 @@ declare const cacheEntryWithDebugKeySchema$1: z$1.ZodObject<{
4391
4391
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4392
4392
  error: "error";
4393
4393
  running: "running";
4394
- cancelled: "cancelled";
4395
4394
  ok: "ok";
4395
+ cancelled: "cancelled";
4396
4396
  }>>;
4397
4397
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4398
4398
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4448,8 +4448,8 @@ declare const cacheEntryWithDebugKeySchema$1: z$1.ZodObject<{
4448
4448
  key: z$1.ZodString;
4449
4449
  namespace: z$1.ZodString;
4450
4450
  operationType: z$1.ZodEnum<{
4451
- value: "value";
4452
4451
  span: "span";
4452
+ value: "value";
4453
4453
  }>;
4454
4454
  operationName: z$1.ZodString;
4455
4455
  storedAt: z$1.ZodString;
@@ -4459,8 +4459,8 @@ declare const cacheEntryWithDebugKeySchema$1: z$1.ZodObject<{
4459
4459
  key: z$1.ZodString;
4460
4460
  namespace: z$1.ZodString;
4461
4461
  operationType: z$1.ZodOptional<z$1.ZodEnum<{
4462
- value: "value";
4463
4462
  span: "span";
4463
+ value: "value";
4464
4464
  }>>;
4465
4465
  operationName: z$1.ZodOptional<z$1.ZodString>;
4466
4466
  spanName: z$1.ZodOptional<z$1.ZodString>;
@@ -4472,8 +4472,8 @@ declare const cacheEntryWithDebugKeySchema$1: z$1.ZodObject<{
4472
4472
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4473
4473
  error: "error";
4474
4474
  running: "running";
4475
- cancelled: "cancelled";
4476
4475
  ok: "ok";
4476
+ cancelled: "cancelled";
4477
4477
  }>>;
4478
4478
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4479
4479
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4538,8 +4538,8 @@ declare const cacheFileSchema: z$1.ZodObject<{
4538
4538
  key: z$1.ZodString;
4539
4539
  namespace: z$1.ZodString;
4540
4540
  operationType: z$1.ZodOptional<z$1.ZodEnum<{
4541
- value: "value";
4542
4541
  span: "span";
4542
+ value: "value";
4543
4543
  }>>;
4544
4544
  operationName: z$1.ZodOptional<z$1.ZodString>;
4545
4545
  spanName: z$1.ZodOptional<z$1.ZodString>;
@@ -4551,8 +4551,8 @@ declare const cacheFileSchema: z$1.ZodObject<{
4551
4551
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4552
4552
  error: "error";
4553
4553
  running: "running";
4554
- cancelled: "cancelled";
4555
4554
  ok: "ok";
4555
+ cancelled: "cancelled";
4556
4556
  }>>;
4557
4557
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4558
4558
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4616,8 +4616,8 @@ declare const cacheDebugKeyFileSchema: z$1.ZodObject<{
4616
4616
  key: z$1.ZodString;
4617
4617
  namespace: z$1.ZodString;
4618
4618
  operationType: z$1.ZodEnum<{
4619
- value: "value";
4620
4619
  span: "span";
4620
+ value: "value";
4621
4621
  }>;
4622
4622
  operationName: z$1.ZodString;
4623
4623
  storedAt: z$1.ZodString;
@@ -4627,8 +4627,8 @@ declare const cacheDebugKeyFileSchema: z$1.ZodObject<{
4627
4627
  key: z$1.ZodString;
4628
4628
  namespace: z$1.ZodString;
4629
4629
  operationType: z$1.ZodOptional<z$1.ZodEnum<{
4630
- value: "value";
4631
4630
  span: "span";
4631
+ value: "value";
4632
4632
  }>>;
4633
4633
  operationName: z$1.ZodOptional<z$1.ZodString>;
4634
4634
  spanName: z$1.ZodOptional<z$1.ZodString>;
@@ -4640,8 +4640,8 @@ declare const cacheDebugKeyFileSchema: z$1.ZodObject<{
4640
4640
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4641
4641
  error: "error";
4642
4642
  running: "running";
4643
- cancelled: "cancelled";
4644
4643
  ok: "ok";
4644
+ cancelled: "cancelled";
4645
4645
  }>>;
4646
4646
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4647
4647
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4797,8 +4797,8 @@ type ConfigReloadState = z$1.infer<typeof configReloadStateSchema$1>;
4797
4797
  declare const createRunRequestSchema$1: z$1.ZodObject<{
4798
4798
  target: z$1.ZodObject<{
4799
4799
  mode: z$1.ZodEnum<{
4800
- caseIds: "caseIds";
4801
4800
  all: "all";
4801
+ caseIds: "caseIds";
4802
4802
  evalIds: "evalIds";
4803
4803
  }>;
4804
4804
  evalKeys: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -4811,9 +4811,9 @@ declare const createRunRequestSchema$1: z$1.ZodObject<{
4811
4811
  temporary: z$1.ZodOptional<z$1.ZodBoolean>;
4812
4812
  cache: z$1.ZodOptional<z$1.ZodObject<{
4813
4813
  mode: z$1.ZodDefault<z$1.ZodEnum<{
4814
- refresh: "refresh";
4815
- bypass: "bypass";
4816
4814
  use: "use";
4815
+ bypass: "bypass";
4816
+ refresh: "refresh";
4817
4817
  }>>;
4818
4818
  }, z$1.core.$strip>>;
4819
4819
  manualInputs: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;