@ax-llm/ax 14.0.28 → 14.0.30

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/index.d.cts CHANGED
@@ -1202,6 +1202,12 @@ interface AxCompileOptions {
1202
1202
  overrideCheckpointInterval?: number;
1203
1203
  saveCheckpointOnComplete?: boolean;
1204
1204
  gepaAdapter?: AxGEPAAdapter<any, any, any>;
1205
+ validationExamples?: readonly AxTypedExample<any>[];
1206
+ feedbackExamples?: readonly AxTypedExample<any>[];
1207
+ feedbackFn?: (args: Readonly<{
1208
+ prediction: unknown;
1209
+ example: AxExample;
1210
+ }>) => string | string[] | undefined;
1205
1211
  skipPerfectScore?: boolean;
1206
1212
  perfectScore?: number;
1207
1213
  maxMetricCalls?: number;
package/index.d.ts CHANGED
@@ -1202,6 +1202,12 @@ interface AxCompileOptions {
1202
1202
  overrideCheckpointInterval?: number;
1203
1203
  saveCheckpointOnComplete?: boolean;
1204
1204
  gepaAdapter?: AxGEPAAdapter<any, any, any>;
1205
+ validationExamples?: readonly AxTypedExample<any>[];
1206
+ feedbackExamples?: readonly AxTypedExample<any>[];
1207
+ feedbackFn?: (args: Readonly<{
1208
+ prediction: unknown;
1209
+ example: AxExample;
1210
+ }>) => string | string[] | undefined;
1205
1211
  skipPerfectScore?: boolean;
1206
1212
  perfectScore?: number;
1207
1213
  maxMetricCalls?: number;