@oro-ai/sdk 1.0.21 → 1.0.23

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
  */
@@ -838,7 +842,7 @@ type Body_submit_agent = {
838
842
  /**
839
843
  * Python agent file (max 1MB)
840
844
  */
841
- file: (Blob | File);
845
+ file: string;
842
846
  };
843
847
  /**
844
848
  * Request to cancel an agent version's evaluation.
@@ -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.
@@ -1435,6 +1445,10 @@ type LeaderboardEntry = {
1435
1445
  * Final score
1436
1446
  */
1437
1447
  final_score: number;
1448
+ /**
1449
+ * Competitive evaluation score
1450
+ */
1451
+ race_score?: (number | null);
1438
1452
  /**
1439
1453
  * When eligibility was reached
1440
1454
  */
@@ -2263,6 +2277,10 @@ type ValidationError = {
2263
2277
  loc: Array<(string | number)>;
2264
2278
  msg: string;
2265
2279
  type: string;
2280
+ input?: unknown;
2281
+ ctx?: {
2282
+ [key: string]: unknown;
2283
+ };
2266
2284
  };
2267
2285
  /**
2268
2286
  * Information about the agent currently being evaluated by a validator.
@@ -2575,6 +2593,10 @@ type GetLeaderboardData = {
2575
2593
  * Offset for pagination
2576
2594
  */
2577
2595
  offset?: number;
2596
+ /**
2597
+ * Which score to rank by
2598
+ */
2599
+ score_type?: string;
2578
2600
  /**
2579
2601
  * Suite ID (defaults to current)
2580
2602
  */
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
  */
@@ -838,7 +842,7 @@ type Body_submit_agent = {
838
842
  /**
839
843
  * Python agent file (max 1MB)
840
844
  */
841
- file: (Blob | File);
845
+ file: string;
842
846
  };
843
847
  /**
844
848
  * Request to cancel an agent version's evaluation.
@@ -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.
@@ -1435,6 +1445,10 @@ type LeaderboardEntry = {
1435
1445
  * Final score
1436
1446
  */
1437
1447
  final_score: number;
1448
+ /**
1449
+ * Competitive evaluation score
1450
+ */
1451
+ race_score?: (number | null);
1438
1452
  /**
1439
1453
  * When eligibility was reached
1440
1454
  */
@@ -2263,6 +2277,10 @@ type ValidationError = {
2263
2277
  loc: Array<(string | number)>;
2264
2278
  msg: string;
2265
2279
  type: string;
2280
+ input?: unknown;
2281
+ ctx?: {
2282
+ [key: string]: unknown;
2283
+ };
2266
2284
  };
2267
2285
  /**
2268
2286
  * Information about the agent currently being evaluated by a validator.
@@ -2575,6 +2593,10 @@ type GetLeaderboardData = {
2575
2593
  * Offset for pagination
2576
2594
  */
2577
2595
  offset?: number;
2596
+ /**
2597
+ * Which score to rank by
2598
+ */
2599
+ score_type?: string;
2578
2600
  /**
2579
2601
  * Suite ID (defaults to current)
2580
2602
  */
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.23",
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
  */
@@ -873,7 +877,7 @@ export type Body_submit_agent = {
873
877
  /**
874
878
  * Python agent file (max 1MB)
875
879
  */
876
- file: (Blob | File);
880
+ file: string;
877
881
  };
878
882
 
879
883
  /**
@@ -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
 
@@ -1499,6 +1509,10 @@ export type LeaderboardEntry = {
1499
1509
  * Final score
1500
1510
  */
1501
1511
  final_score: number;
1512
+ /**
1513
+ * Competitive evaluation score
1514
+ */
1515
+ race_score?: (number | null);
1502
1516
  /**
1503
1517
  * When eligibility was reached
1504
1518
  */
@@ -2371,6 +2385,10 @@ export type ValidationError = {
2371
2385
  loc: Array<(string | number)>;
2372
2386
  msg: string;
2373
2387
  type: string;
2388
+ input?: unknown;
2389
+ ctx?: {
2390
+ [key: string]: unknown;
2391
+ };
2374
2392
  };
2375
2393
 
2376
2394
  /**
@@ -2703,6 +2721,10 @@ export type GetLeaderboardData = {
2703
2721
  * Offset for pagination
2704
2722
  */
2705
2723
  offset?: number;
2724
+ /**
2725
+ * Which score to rank by
2726
+ */
2727
+ score_type?: string;
2706
2728
  /**
2707
2729
  * Suite ID (defaults to current)
2708
2730
  */