@oro-ai/sdk 0.7.2 → 0.7.3
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 +12 -0
- package/dist/index.d.ts +12 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +12 -0
package/dist/index.d.mts
CHANGED
|
@@ -536,6 +536,10 @@ type CompleteRunRequest = {
|
|
|
536
536
|
* S3 key for run-level logs bundle (optional, per-problem logs preferred)
|
|
537
537
|
*/
|
|
538
538
|
results_s3_key?: (string | null);
|
|
539
|
+
/**
|
|
540
|
+
* Reason for failure (e.g., 'No Chutes token', 'Sandbox execution failed')
|
|
541
|
+
*/
|
|
542
|
+
failure_reason?: (string | null);
|
|
539
543
|
};
|
|
540
544
|
/**
|
|
541
545
|
* Response for run completion.
|
|
@@ -688,6 +692,10 @@ type EvaluationRunDetail = {
|
|
|
688
692
|
* When the run completed
|
|
689
693
|
*/
|
|
690
694
|
completed_at?: (string | null);
|
|
695
|
+
/**
|
|
696
|
+
* Validator-reported failure reason
|
|
697
|
+
*/
|
|
698
|
+
failure_reason?: (string | null);
|
|
691
699
|
};
|
|
692
700
|
/**
|
|
693
701
|
* Public representation of an evaluation run.
|
|
@@ -745,6 +753,10 @@ type EvaluationRunPublic = {
|
|
|
745
753
|
* Reason for invalidation
|
|
746
754
|
*/
|
|
747
755
|
invalidation_reason?: (string | null);
|
|
756
|
+
/**
|
|
757
|
+
* Validator-reported failure reason
|
|
758
|
+
*/
|
|
759
|
+
failure_reason?: (string | null);
|
|
748
760
|
/**
|
|
749
761
|
* Score on success
|
|
750
762
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -536,6 +536,10 @@ type CompleteRunRequest = {
|
|
|
536
536
|
* S3 key for run-level logs bundle (optional, per-problem logs preferred)
|
|
537
537
|
*/
|
|
538
538
|
results_s3_key?: (string | null);
|
|
539
|
+
/**
|
|
540
|
+
* Reason for failure (e.g., 'No Chutes token', 'Sandbox execution failed')
|
|
541
|
+
*/
|
|
542
|
+
failure_reason?: (string | null);
|
|
539
543
|
};
|
|
540
544
|
/**
|
|
541
545
|
* Response for run completion.
|
|
@@ -688,6 +692,10 @@ type EvaluationRunDetail = {
|
|
|
688
692
|
* When the run completed
|
|
689
693
|
*/
|
|
690
694
|
completed_at?: (string | null);
|
|
695
|
+
/**
|
|
696
|
+
* Validator-reported failure reason
|
|
697
|
+
*/
|
|
698
|
+
failure_reason?: (string | null);
|
|
691
699
|
};
|
|
692
700
|
/**
|
|
693
701
|
* Public representation of an evaluation run.
|
|
@@ -745,6 +753,10 @@ type EvaluationRunPublic = {
|
|
|
745
753
|
* Reason for invalidation
|
|
746
754
|
*/
|
|
747
755
|
invalidation_reason?: (string | null);
|
|
756
|
+
/**
|
|
757
|
+
* Validator-reported failure reason
|
|
758
|
+
*/
|
|
759
|
+
failure_reason?: (string | null);
|
|
748
760
|
/**
|
|
749
761
|
* Score on success
|
|
750
762
|
*/
|
package/package.json
CHANGED
|
@@ -566,6 +566,10 @@ export type CompleteRunRequest = {
|
|
|
566
566
|
* S3 key for run-level logs bundle (optional, per-problem logs preferred)
|
|
567
567
|
*/
|
|
568
568
|
results_s3_key?: (string | null);
|
|
569
|
+
/**
|
|
570
|
+
* Reason for failure (e.g., 'No Chutes token', 'Sandbox execution failed')
|
|
571
|
+
*/
|
|
572
|
+
failure_reason?: (string | null);
|
|
569
573
|
};
|
|
570
574
|
|
|
571
575
|
/**
|
|
@@ -726,6 +730,10 @@ export type EvaluationRunDetail = {
|
|
|
726
730
|
* When the run completed
|
|
727
731
|
*/
|
|
728
732
|
completed_at?: (string | null);
|
|
733
|
+
/**
|
|
734
|
+
* Validator-reported failure reason
|
|
735
|
+
*/
|
|
736
|
+
failure_reason?: (string | null);
|
|
729
737
|
};
|
|
730
738
|
|
|
731
739
|
/**
|
|
@@ -784,6 +792,10 @@ export type EvaluationRunPublic = {
|
|
|
784
792
|
* Reason for invalidation
|
|
785
793
|
*/
|
|
786
794
|
invalidation_reason?: (string | null);
|
|
795
|
+
/**
|
|
796
|
+
* Validator-reported failure reason
|
|
797
|
+
*/
|
|
798
|
+
failure_reason?: (string | null);
|
|
787
799
|
/**
|
|
788
800
|
* Score on success
|
|
789
801
|
*/
|