@oro-ai/sdk 1.0.10 → 1.0.11
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
|
@@ -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.
|
|
@@ -1187,6 +1193,12 @@ type EvaluationRunPublic = {
|
|
|
1187
1193
|
service_versions?: ({
|
|
1188
1194
|
[key: string]: (string);
|
|
1189
1195
|
} | null);
|
|
1196
|
+
/**
|
|
1197
|
+
* Sandbox execution details
|
|
1198
|
+
*/
|
|
1199
|
+
sandbox_metadata?: ({
|
|
1200
|
+
[key: string]: unknown;
|
|
1201
|
+
} | null);
|
|
1190
1202
|
};
|
|
1191
1203
|
/**
|
|
1192
1204
|
* 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.
|
|
@@ -1187,6 +1193,12 @@ type EvaluationRunPublic = {
|
|
|
1187
1193
|
service_versions?: ({
|
|
1188
1194
|
[key: string]: (string);
|
|
1189
1195
|
} | null);
|
|
1196
|
+
/**
|
|
1197
|
+
* Sandbox execution details
|
|
1198
|
+
*/
|
|
1199
|
+
sandbox_metadata?: ({
|
|
1200
|
+
[key: string]: unknown;
|
|
1201
|
+
} | null);
|
|
1190
1202
|
};
|
|
1191
1203
|
/**
|
|
1192
1204
|
* 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
|
/**
|
|
@@ -1237,6 +1243,12 @@ export type EvaluationRunPublic = {
|
|
|
1237
1243
|
*/
|
|
1238
1244
|
service_versions?: ({
|
|
1239
1245
|
[key: string]: (string);
|
|
1246
|
+
} | null);
|
|
1247
|
+
/**
|
|
1248
|
+
* Sandbox execution details
|
|
1249
|
+
*/
|
|
1250
|
+
sandbox_metadata?: ({
|
|
1251
|
+
[key: string]: unknown;
|
|
1240
1252
|
} | null);
|
|
1241
1253
|
};
|
|
1242
1254
|
|