@oro-ai/sdk 1.0.21 → 1.0.22

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 CHANGED
@@ -581,6 +581,10 @@ type AgentVersionStatus = {
581
581
  * Final score if eligible
582
582
  */
583
583
  final_score?: (number | null);
584
+ /**
585
+ * Average reasoning coefficient from included successful runs
586
+ */
587
+ reasoning_coefficient?: (number | null);
584
588
  /**
585
589
  * Whether artifacts are released
586
590
  */
@@ -1155,6 +1159,12 @@ type EvaluationRunDetail = {
1155
1159
  sandbox_metadata?: ({
1156
1160
  [key: string]: unknown;
1157
1161
  } | null);
1162
+ /**
1163
+ * Score breakdown including reasoning details
1164
+ */
1165
+ score_components_summary?: ({
1166
+ [key: string]: unknown;
1167
+ } | null);
1158
1168
  };
1159
1169
  /**
1160
1170
  * Public representation of an evaluation run.
package/dist/index.d.ts CHANGED
@@ -581,6 +581,10 @@ type AgentVersionStatus = {
581
581
  * Final score if eligible
582
582
  */
583
583
  final_score?: (number | null);
584
+ /**
585
+ * Average reasoning coefficient from included successful runs
586
+ */
587
+ reasoning_coefficient?: (number | null);
584
588
  /**
585
589
  * Whether artifacts are released
586
590
  */
@@ -1155,6 +1159,12 @@ type EvaluationRunDetail = {
1155
1159
  sandbox_metadata?: ({
1156
1160
  [key: string]: unknown;
1157
1161
  } | null);
1162
+ /**
1163
+ * Score breakdown including reasoning details
1164
+ */
1165
+ score_components_summary?: ({
1166
+ [key: string]: unknown;
1167
+ } | null);
1158
1168
  };
1159
1169
  /**
1160
1170
  * Public representation of an evaluation run.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -601,6 +601,10 @@ export type AgentVersionStatus = {
601
601
  * Final score if eligible
602
602
  */
603
603
  final_score?: (number | null);
604
+ /**
605
+ * Average reasoning coefficient from included successful runs
606
+ */
607
+ reasoning_coefficient?: (number | null);
604
608
  /**
605
609
  * Whether artifacts are released
606
610
  */
@@ -1205,6 +1209,12 @@ export type EvaluationRunDetail = {
1205
1209
  */
1206
1210
  sandbox_metadata?: ({
1207
1211
  [key: string]: unknown;
1212
+ } | null);
1213
+ /**
1214
+ * Score breakdown including reasoning details
1215
+ */
1216
+ score_components_summary?: ({
1217
+ [key: string]: unknown;
1208
1218
  } | null);
1209
1219
  };
1210
1220