@oro-ai/sdk 1.0.65 → 1.0.66

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
@@ -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
  /**
@@ -3721,6 +3725,10 @@ type ListEvaluationRunsData = {
3721
3725
  * Filter to runs for a specific work item
3722
3726
  */
3723
3727
  eval_work_item_id?: (string | null);
3728
+ /**
3729
+ * Filter by inference provider (e.g. chutes, openrouter). Pass 'none' to filter to runs with no provider recorded.
3730
+ */
3731
+ inference_provider?: (string | null);
3724
3732
  /**
3725
3733
  * Number of runs to return
3726
3734
  */
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
  /**
@@ -3721,6 +3725,10 @@ type ListEvaluationRunsData = {
3721
3725
  * Filter to runs for a specific work item
3722
3726
  */
3723
3727
  eval_work_item_id?: (string | null);
3728
+ /**
3729
+ * Filter by inference provider (e.g. chutes, openrouter). Pass 'none' to filter to runs with no provider recorded.
3730
+ */
3731
+ inference_provider?: (string | null);
3724
3732
  /**
3725
3733
  * Number of runs to return
3726
3734
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.65",
3
+ "version": "1.0.66",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -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 = {
@@ -4061,6 +4065,10 @@ export type ListEvaluationRunsData = {
4061
4065
  * Filter to runs for a specific work item
4062
4066
  */
4063
4067
  eval_work_item_id?: (string | null);
4068
+ /**
4069
+ * Filter by inference provider (e.g. chutes, openrouter). Pass 'none' to filter to runs with no provider recorded.
4070
+ */
4071
+ inference_provider?: (string | null);
4064
4072
  /**
4065
4073
  * Number of runs to return
4066
4074
  */