@oro-ai/sdk 1.0.22 → 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 +13 -1
- package/dist/index.d.ts +13 -1
- package/package.json +1 -1
- package/src/generated/types.gen.ts +13 -1
package/dist/index.d.mts
CHANGED
|
@@ -842,7 +842,7 @@ type Body_submit_agent = {
|
|
|
842
842
|
/**
|
|
843
843
|
* Python agent file (max 1MB)
|
|
844
844
|
*/
|
|
845
|
-
file:
|
|
845
|
+
file: string;
|
|
846
846
|
};
|
|
847
847
|
/**
|
|
848
848
|
* Request to cancel an agent version's evaluation.
|
|
@@ -1445,6 +1445,10 @@ type LeaderboardEntry = {
|
|
|
1445
1445
|
* Final score
|
|
1446
1446
|
*/
|
|
1447
1447
|
final_score: number;
|
|
1448
|
+
/**
|
|
1449
|
+
* Competitive evaluation score
|
|
1450
|
+
*/
|
|
1451
|
+
race_score?: (number | null);
|
|
1448
1452
|
/**
|
|
1449
1453
|
* When eligibility was reached
|
|
1450
1454
|
*/
|
|
@@ -2273,6 +2277,10 @@ type ValidationError = {
|
|
|
2273
2277
|
loc: Array<(string | number)>;
|
|
2274
2278
|
msg: string;
|
|
2275
2279
|
type: string;
|
|
2280
|
+
input?: unknown;
|
|
2281
|
+
ctx?: {
|
|
2282
|
+
[key: string]: unknown;
|
|
2283
|
+
};
|
|
2276
2284
|
};
|
|
2277
2285
|
/**
|
|
2278
2286
|
* Information about the agent currently being evaluated by a validator.
|
|
@@ -2585,6 +2593,10 @@ type GetLeaderboardData = {
|
|
|
2585
2593
|
* Offset for pagination
|
|
2586
2594
|
*/
|
|
2587
2595
|
offset?: number;
|
|
2596
|
+
/**
|
|
2597
|
+
* Which score to rank by
|
|
2598
|
+
*/
|
|
2599
|
+
score_type?: string;
|
|
2588
2600
|
/**
|
|
2589
2601
|
* Suite ID (defaults to current)
|
|
2590
2602
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -842,7 +842,7 @@ type Body_submit_agent = {
|
|
|
842
842
|
/**
|
|
843
843
|
* Python agent file (max 1MB)
|
|
844
844
|
*/
|
|
845
|
-
file:
|
|
845
|
+
file: string;
|
|
846
846
|
};
|
|
847
847
|
/**
|
|
848
848
|
* Request to cancel an agent version's evaluation.
|
|
@@ -1445,6 +1445,10 @@ type LeaderboardEntry = {
|
|
|
1445
1445
|
* Final score
|
|
1446
1446
|
*/
|
|
1447
1447
|
final_score: number;
|
|
1448
|
+
/**
|
|
1449
|
+
* Competitive evaluation score
|
|
1450
|
+
*/
|
|
1451
|
+
race_score?: (number | null);
|
|
1448
1452
|
/**
|
|
1449
1453
|
* When eligibility was reached
|
|
1450
1454
|
*/
|
|
@@ -2273,6 +2277,10 @@ type ValidationError = {
|
|
|
2273
2277
|
loc: Array<(string | number)>;
|
|
2274
2278
|
msg: string;
|
|
2275
2279
|
type: string;
|
|
2280
|
+
input?: unknown;
|
|
2281
|
+
ctx?: {
|
|
2282
|
+
[key: string]: unknown;
|
|
2283
|
+
};
|
|
2276
2284
|
};
|
|
2277
2285
|
/**
|
|
2278
2286
|
* Information about the agent currently being evaluated by a validator.
|
|
@@ -2585,6 +2593,10 @@ type GetLeaderboardData = {
|
|
|
2585
2593
|
* Offset for pagination
|
|
2586
2594
|
*/
|
|
2587
2595
|
offset?: number;
|
|
2596
|
+
/**
|
|
2597
|
+
* Which score to rank by
|
|
2598
|
+
*/
|
|
2599
|
+
score_type?: string;
|
|
2588
2600
|
/**
|
|
2589
2601
|
* Suite ID (defaults to current)
|
|
2590
2602
|
*/
|
package/package.json
CHANGED
|
@@ -877,7 +877,7 @@ export type Body_submit_agent = {
|
|
|
877
877
|
/**
|
|
878
878
|
* Python agent file (max 1MB)
|
|
879
879
|
*/
|
|
880
|
-
file:
|
|
880
|
+
file: string;
|
|
881
881
|
};
|
|
882
882
|
|
|
883
883
|
/**
|
|
@@ -1509,6 +1509,10 @@ export type LeaderboardEntry = {
|
|
|
1509
1509
|
* Final score
|
|
1510
1510
|
*/
|
|
1511
1511
|
final_score: number;
|
|
1512
|
+
/**
|
|
1513
|
+
* Competitive evaluation score
|
|
1514
|
+
*/
|
|
1515
|
+
race_score?: (number | null);
|
|
1512
1516
|
/**
|
|
1513
1517
|
* When eligibility was reached
|
|
1514
1518
|
*/
|
|
@@ -2381,6 +2385,10 @@ export type ValidationError = {
|
|
|
2381
2385
|
loc: Array<(string | number)>;
|
|
2382
2386
|
msg: string;
|
|
2383
2387
|
type: string;
|
|
2388
|
+
input?: unknown;
|
|
2389
|
+
ctx?: {
|
|
2390
|
+
[key: string]: unknown;
|
|
2391
|
+
};
|
|
2384
2392
|
};
|
|
2385
2393
|
|
|
2386
2394
|
/**
|
|
@@ -2713,6 +2721,10 @@ export type GetLeaderboardData = {
|
|
|
2713
2721
|
* Offset for pagination
|
|
2714
2722
|
*/
|
|
2715
2723
|
offset?: number;
|
|
2724
|
+
/**
|
|
2725
|
+
* Which score to rank by
|
|
2726
|
+
*/
|
|
2727
|
+
score_type?: string;
|
|
2716
2728
|
/**
|
|
2717
2729
|
* Suite ID (defaults to current)
|
|
2718
2730
|
*/
|