@sanity/ailf-studio 1.7.2 → 1.8.1

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.ts CHANGED
@@ -510,9 +510,10 @@ interface StoredTestResultData {
510
510
  responseOutputTruncated?: boolean;
511
511
  taskId: string;
512
512
  tokenUsage?: {
513
- completion: number;
514
- prompt: number;
515
- total: number;
513
+ cached?: number;
514
+ completion?: number;
515
+ prompt?: number;
516
+ total?: number;
516
517
  };
517
518
  variant: "baseline" | "gold";
518
519
  }
@@ -596,7 +597,6 @@ interface SummaryData {
596
597
  renderedPrompts?: ArtifactRef;
597
598
  rawResults?: ArtifactRef;
598
599
  graderPrompts?: ArtifactRef;
599
- taskDefinitions?: ArtifactRef;
600
600
  traces?: ArtifactRef;
601
601
  };
602
602
  belowCritical: string[];