@oro-ai/sdk 1.0.10 → 1.0.12
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 +18 -0
- package/dist/index.d.ts +18 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +18 -0
package/dist/index.d.mts
CHANGED
|
@@ -942,6 +942,12 @@ type CompleteRunRequest = {
|
|
|
942
942
|
* Reason for failure (e.g., 'No Chutes token', 'Sandbox execution failed')
|
|
943
943
|
*/
|
|
944
944
|
failure_reason?: (string | null);
|
|
945
|
+
/**
|
|
946
|
+
* Sandbox execution details: {exit_code, duration_seconds, stderr_tail}
|
|
947
|
+
*/
|
|
948
|
+
sandbox_metadata?: ({
|
|
949
|
+
[key: string]: unknown;
|
|
950
|
+
} | null);
|
|
945
951
|
};
|
|
946
952
|
/**
|
|
947
953
|
* Response for run completion.
|
|
@@ -1110,6 +1116,12 @@ type EvaluationRunDetail = {
|
|
|
1110
1116
|
* Reason for invalidation
|
|
1111
1117
|
*/
|
|
1112
1118
|
invalidation_reason?: (string | null);
|
|
1119
|
+
/**
|
|
1120
|
+
* Sandbox execution details
|
|
1121
|
+
*/
|
|
1122
|
+
sandbox_metadata?: ({
|
|
1123
|
+
[key: string]: unknown;
|
|
1124
|
+
} | null);
|
|
1113
1125
|
};
|
|
1114
1126
|
/**
|
|
1115
1127
|
* Public representation of an evaluation run.
|
|
@@ -1187,6 +1199,12 @@ type EvaluationRunPublic = {
|
|
|
1187
1199
|
service_versions?: ({
|
|
1188
1200
|
[key: string]: (string);
|
|
1189
1201
|
} | null);
|
|
1202
|
+
/**
|
|
1203
|
+
* Sandbox execution details
|
|
1204
|
+
*/
|
|
1205
|
+
sandbox_metadata?: ({
|
|
1206
|
+
[key: string]: unknown;
|
|
1207
|
+
} | null);
|
|
1190
1208
|
};
|
|
1191
1209
|
/**
|
|
1192
1210
|
* Status of an evaluation run through its lifecycle.
|
package/dist/index.d.ts
CHANGED
|
@@ -942,6 +942,12 @@ type CompleteRunRequest = {
|
|
|
942
942
|
* Reason for failure (e.g., 'No Chutes token', 'Sandbox execution failed')
|
|
943
943
|
*/
|
|
944
944
|
failure_reason?: (string | null);
|
|
945
|
+
/**
|
|
946
|
+
* Sandbox execution details: {exit_code, duration_seconds, stderr_tail}
|
|
947
|
+
*/
|
|
948
|
+
sandbox_metadata?: ({
|
|
949
|
+
[key: string]: unknown;
|
|
950
|
+
} | null);
|
|
945
951
|
};
|
|
946
952
|
/**
|
|
947
953
|
* Response for run completion.
|
|
@@ -1110,6 +1116,12 @@ type EvaluationRunDetail = {
|
|
|
1110
1116
|
* Reason for invalidation
|
|
1111
1117
|
*/
|
|
1112
1118
|
invalidation_reason?: (string | null);
|
|
1119
|
+
/**
|
|
1120
|
+
* Sandbox execution details
|
|
1121
|
+
*/
|
|
1122
|
+
sandbox_metadata?: ({
|
|
1123
|
+
[key: string]: unknown;
|
|
1124
|
+
} | null);
|
|
1113
1125
|
};
|
|
1114
1126
|
/**
|
|
1115
1127
|
* Public representation of an evaluation run.
|
|
@@ -1187,6 +1199,12 @@ type EvaluationRunPublic = {
|
|
|
1187
1199
|
service_versions?: ({
|
|
1188
1200
|
[key: string]: (string);
|
|
1189
1201
|
} | null);
|
|
1202
|
+
/**
|
|
1203
|
+
* Sandbox execution details
|
|
1204
|
+
*/
|
|
1205
|
+
sandbox_metadata?: ({
|
|
1206
|
+
[key: string]: unknown;
|
|
1207
|
+
} | null);
|
|
1190
1208
|
};
|
|
1191
1209
|
/**
|
|
1192
1210
|
* Status of an evaluation run through its lifecycle.
|
package/package.json
CHANGED
|
@@ -984,6 +984,12 @@ export type CompleteRunRequest = {
|
|
|
984
984
|
* Reason for failure (e.g., 'No Chutes token', 'Sandbox execution failed')
|
|
985
985
|
*/
|
|
986
986
|
failure_reason?: (string | null);
|
|
987
|
+
/**
|
|
988
|
+
* Sandbox execution details: {exit_code, duration_seconds, stderr_tail}
|
|
989
|
+
*/
|
|
990
|
+
sandbox_metadata?: ({
|
|
991
|
+
[key: string]: unknown;
|
|
992
|
+
} | null);
|
|
987
993
|
};
|
|
988
994
|
|
|
989
995
|
/**
|
|
@@ -1160,6 +1166,12 @@ export type EvaluationRunDetail = {
|
|
|
1160
1166
|
* Reason for invalidation
|
|
1161
1167
|
*/
|
|
1162
1168
|
invalidation_reason?: (string | null);
|
|
1169
|
+
/**
|
|
1170
|
+
* Sandbox execution details
|
|
1171
|
+
*/
|
|
1172
|
+
sandbox_metadata?: ({
|
|
1173
|
+
[key: string]: unknown;
|
|
1174
|
+
} | null);
|
|
1163
1175
|
};
|
|
1164
1176
|
|
|
1165
1177
|
/**
|
|
@@ -1237,6 +1249,12 @@ export type EvaluationRunPublic = {
|
|
|
1237
1249
|
*/
|
|
1238
1250
|
service_versions?: ({
|
|
1239
1251
|
[key: string]: (string);
|
|
1252
|
+
} | null);
|
|
1253
|
+
/**
|
|
1254
|
+
* Sandbox execution details
|
|
1255
|
+
*/
|
|
1256
|
+
sandbox_metadata?: ({
|
|
1257
|
+
[key: string]: unknown;
|
|
1240
1258
|
} | null);
|
|
1241
1259
|
};
|
|
1242
1260
|
|