@oro-ai/sdk 1.0.65 → 1.0.67
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
|
@@ -194,6 +194,10 @@ type AdminEvaluationRunEntry = {
|
|
|
194
194
|
* Race number for RACE-phase runs
|
|
195
195
|
*/
|
|
196
196
|
race_number?: (number | null);
|
|
197
|
+
/**
|
|
198
|
+
* Inference provider used for this run (e.g. chutes, openrouter)
|
|
199
|
+
*/
|
|
200
|
+
inference_provider?: (string | null);
|
|
197
201
|
};
|
|
198
202
|
type AdminEvaluationRunsResponse = {
|
|
199
203
|
/**
|
|
@@ -2189,6 +2193,10 @@ type RaceQualifierPublic = {
|
|
|
2189
2193
|
* Rank within the race
|
|
2190
2194
|
*/
|
|
2191
2195
|
race_rank?: (number | null);
|
|
2196
|
+
/**
|
|
2197
|
+
* True when the agent's aggregate is marked discarded (admin- or auto-discarded). Sourced from AgentVersionAggregate for this version + suite; defaults to False if no aggregate row exists.
|
|
2198
|
+
*/
|
|
2199
|
+
is_discarded?: boolean;
|
|
2192
2200
|
};
|
|
2193
2201
|
type RaceSummary = {
|
|
2194
2202
|
/**
|
|
@@ -3721,6 +3729,10 @@ type ListEvaluationRunsData = {
|
|
|
3721
3729
|
* Filter to runs for a specific work item
|
|
3722
3730
|
*/
|
|
3723
3731
|
eval_work_item_id?: (string | null);
|
|
3732
|
+
/**
|
|
3733
|
+
* Filter by inference provider (e.g. chutes, openrouter). Pass 'none' to filter to runs with no provider recorded.
|
|
3734
|
+
*/
|
|
3735
|
+
inference_provider?: (string | null);
|
|
3724
3736
|
/**
|
|
3725
3737
|
* Number of runs to return
|
|
3726
3738
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -194,6 +194,10 @@ type AdminEvaluationRunEntry = {
|
|
|
194
194
|
* Race number for RACE-phase runs
|
|
195
195
|
*/
|
|
196
196
|
race_number?: (number | null);
|
|
197
|
+
/**
|
|
198
|
+
* Inference provider used for this run (e.g. chutes, openrouter)
|
|
199
|
+
*/
|
|
200
|
+
inference_provider?: (string | null);
|
|
197
201
|
};
|
|
198
202
|
type AdminEvaluationRunsResponse = {
|
|
199
203
|
/**
|
|
@@ -2189,6 +2193,10 @@ type RaceQualifierPublic = {
|
|
|
2189
2193
|
* Rank within the race
|
|
2190
2194
|
*/
|
|
2191
2195
|
race_rank?: (number | null);
|
|
2196
|
+
/**
|
|
2197
|
+
* True when the agent's aggregate is marked discarded (admin- or auto-discarded). Sourced from AgentVersionAggregate for this version + suite; defaults to False if no aggregate row exists.
|
|
2198
|
+
*/
|
|
2199
|
+
is_discarded?: boolean;
|
|
2192
2200
|
};
|
|
2193
2201
|
type RaceSummary = {
|
|
2194
2202
|
/**
|
|
@@ -3721,6 +3729,10 @@ type ListEvaluationRunsData = {
|
|
|
3721
3729
|
* Filter to runs for a specific work item
|
|
3722
3730
|
*/
|
|
3723
3731
|
eval_work_item_id?: (string | null);
|
|
3732
|
+
/**
|
|
3733
|
+
* Filter by inference provider (e.g. chutes, openrouter). Pass 'none' to filter to runs with no provider recorded.
|
|
3734
|
+
*/
|
|
3735
|
+
inference_provider?: (string | null);
|
|
3724
3736
|
/**
|
|
3725
3737
|
* Number of runs to return
|
|
3726
3738
|
*/
|
package/package.json
CHANGED
|
@@ -197,6 +197,10 @@ export type AdminEvaluationRunEntry = {
|
|
|
197
197
|
* Race number for RACE-phase runs
|
|
198
198
|
*/
|
|
199
199
|
race_number?: (number | null);
|
|
200
|
+
/**
|
|
201
|
+
* Inference provider used for this run (e.g. chutes, openrouter)
|
|
202
|
+
*/
|
|
203
|
+
inference_provider?: (string | null);
|
|
200
204
|
};
|
|
201
205
|
|
|
202
206
|
export type AdminEvaluationRunsResponse = {
|
|
@@ -2297,6 +2301,10 @@ export type RaceQualifierPublic = {
|
|
|
2297
2301
|
* Rank within the race
|
|
2298
2302
|
*/
|
|
2299
2303
|
race_rank?: (number | null);
|
|
2304
|
+
/**
|
|
2305
|
+
* True when the agent's aggregate is marked discarded (admin- or auto-discarded). Sourced from AgentVersionAggregate for this version + suite; defaults to False if no aggregate row exists.
|
|
2306
|
+
*/
|
|
2307
|
+
is_discarded?: boolean;
|
|
2300
2308
|
};
|
|
2301
2309
|
|
|
2302
2310
|
export type RaceSummary = {
|
|
@@ -4061,6 +4069,10 @@ export type ListEvaluationRunsData = {
|
|
|
4061
4069
|
* Filter to runs for a specific work item
|
|
4062
4070
|
*/
|
|
4063
4071
|
eval_work_item_id?: (string | null);
|
|
4072
|
+
/**
|
|
4073
|
+
* Filter by inference provider (e.g. chutes, openrouter). Pass 'none' to filter to runs with no provider recorded.
|
|
4074
|
+
*/
|
|
4075
|
+
inference_provider?: (string | null);
|
|
4064
4076
|
/**
|
|
4065
4077
|
* Number of runs to return
|
|
4066
4078
|
*/
|