@oro-ai/sdk 1.0.46 → 1.0.47
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 +16 -0
- package/dist/index.d.ts +16 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +16 -0
package/dist/index.d.mts
CHANGED
|
@@ -588,6 +588,14 @@ type AgentVersionStatus = {
|
|
|
588
588
|
per_validator_success_scores?: ({
|
|
589
589
|
[key: string]: (number);
|
|
590
590
|
} | null);
|
|
591
|
+
/**
|
|
592
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
593
|
+
*/
|
|
594
|
+
is_active_qualifier?: boolean;
|
|
595
|
+
/**
|
|
596
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
597
|
+
*/
|
|
598
|
+
outranked_by_agent_version_id?: (string | null);
|
|
591
599
|
};
|
|
592
600
|
type AgentVersionVariance = {
|
|
593
601
|
/**
|
|
@@ -1442,6 +1450,14 @@ type LeaderboardEntry = {
|
|
|
1442
1450
|
* When this agent became top
|
|
1443
1451
|
*/
|
|
1444
1452
|
top_at?: (string | null);
|
|
1453
|
+
/**
|
|
1454
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
1455
|
+
*/
|
|
1456
|
+
is_active_qualifier?: boolean;
|
|
1457
|
+
/**
|
|
1458
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
1459
|
+
*/
|
|
1460
|
+
outranked_by_agent_version_id?: (string | null);
|
|
1445
1461
|
};
|
|
1446
1462
|
type LeaderboardResponse = {
|
|
1447
1463
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -588,6 +588,14 @@ type AgentVersionStatus = {
|
|
|
588
588
|
per_validator_success_scores?: ({
|
|
589
589
|
[key: string]: (number);
|
|
590
590
|
} | null);
|
|
591
|
+
/**
|
|
592
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
593
|
+
*/
|
|
594
|
+
is_active_qualifier?: boolean;
|
|
595
|
+
/**
|
|
596
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
597
|
+
*/
|
|
598
|
+
outranked_by_agent_version_id?: (string | null);
|
|
591
599
|
};
|
|
592
600
|
type AgentVersionVariance = {
|
|
593
601
|
/**
|
|
@@ -1442,6 +1450,14 @@ type LeaderboardEntry = {
|
|
|
1442
1450
|
* When this agent became top
|
|
1443
1451
|
*/
|
|
1444
1452
|
top_at?: (string | null);
|
|
1453
|
+
/**
|
|
1454
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
1455
|
+
*/
|
|
1456
|
+
is_active_qualifier?: boolean;
|
|
1457
|
+
/**
|
|
1458
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
1459
|
+
*/
|
|
1460
|
+
outranked_by_agent_version_id?: (string | null);
|
|
1445
1461
|
};
|
|
1446
1462
|
type LeaderboardResponse = {
|
|
1447
1463
|
/**
|
package/package.json
CHANGED
|
@@ -608,6 +608,14 @@ export type AgentVersionStatus = {
|
|
|
608
608
|
per_validator_success_scores?: ({
|
|
609
609
|
[key: string]: (number);
|
|
610
610
|
} | null);
|
|
611
|
+
/**
|
|
612
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
613
|
+
*/
|
|
614
|
+
is_active_qualifier?: boolean;
|
|
615
|
+
/**
|
|
616
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
617
|
+
*/
|
|
618
|
+
outranked_by_agent_version_id?: (string | null);
|
|
611
619
|
};
|
|
612
620
|
|
|
613
621
|
export type AgentVersionVariance = {
|
|
@@ -1511,6 +1519,14 @@ export type LeaderboardEntry = {
|
|
|
1511
1519
|
* When this agent became top
|
|
1512
1520
|
*/
|
|
1513
1521
|
top_at?: (string | null);
|
|
1522
|
+
/**
|
|
1523
|
+
* True when this version is the active qualifier on its hotkey for the open race (covers both the incumbent and the scored qualifier).
|
|
1524
|
+
*/
|
|
1525
|
+
is_active_qualifier?: boolean;
|
|
1526
|
+
/**
|
|
1527
|
+
* Set when this version's score qualifies but a higher-scoring sibling on the same hotkey is the active qualifier instead.
|
|
1528
|
+
*/
|
|
1529
|
+
outranked_by_agent_version_id?: (string | null);
|
|
1514
1530
|
};
|
|
1515
1531
|
|
|
1516
1532
|
export type LeaderboardResponse = {
|