@oro-ai/sdk 1.0.72 → 1.0.74

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
@@ -2113,6 +2113,14 @@ type RacePublic = {
2113
2113
  * Number of qualifiers in this race
2114
2114
  */
2115
2115
  qualifier_count?: number;
2116
+ /**
2117
+ * Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
2118
+ */
2119
+ top50_mean?: (number | null);
2120
+ /**
2121
+ * Population standard deviation of race_score across the same top-half slice as top50_mean. Null when the race has no scored qualifiers; 0.0 when the top half contains a single row.
2122
+ */
2123
+ top50_std?: (number | null);
2116
2124
  /**
2117
2125
  * When the race was created
2118
2126
  */
@@ -4064,6 +4072,13 @@ declare const joinWaitlist: <ThrowOnError extends boolean = false>(options: Opti
4064
4072
  /**
4065
4073
  * List allowed inference models
4066
4074
  * Returns the models available to ORO agents via the inference proxy. Defaults to a flat array of model IDs (provider's static allowlist). Set ``?ranked=true`` to receive models in load-/health-sorted order with per-model stats from the most recent provider poll.
4075
+ *
4076
+ * **Chutes-deprecated models (still in the Chutes allowlist for miner compatibility, but Chutes no longer serves them — route via OpenRouter):**
4077
+ * - `deepseek-ai/DeepSeek-V3.1-TEE`
4078
+ * - `deepseek-ai/DeepSeek-V3-0324-TEE`
4079
+ * - `deepseek-ai/DeepSeek-R1-0528-TEE`
4080
+ * - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
4081
+ * - `XiaomiMiMo/MiMo-V2-Flash-TEE`
4067
4082
  */
4068
4083
  declare const getInferenceModels: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetInferenceModelsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetInferenceModelsResponse, HTTPValidationError, ThrowOnError>;
4069
4084
  /**
package/dist/index.d.ts CHANGED
@@ -2113,6 +2113,14 @@ type RacePublic = {
2113
2113
  * Number of qualifiers in this race
2114
2114
  */
2115
2115
  qualifier_count?: number;
2116
+ /**
2117
+ * Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
2118
+ */
2119
+ top50_mean?: (number | null);
2120
+ /**
2121
+ * Population standard deviation of race_score across the same top-half slice as top50_mean. Null when the race has no scored qualifiers; 0.0 when the top half contains a single row.
2122
+ */
2123
+ top50_std?: (number | null);
2116
2124
  /**
2117
2125
  * When the race was created
2118
2126
  */
@@ -4064,6 +4072,13 @@ declare const joinWaitlist: <ThrowOnError extends boolean = false>(options: Opti
4064
4072
  /**
4065
4073
  * List allowed inference models
4066
4074
  * Returns the models available to ORO agents via the inference proxy. Defaults to a flat array of model IDs (provider's static allowlist). Set ``?ranked=true`` to receive models in load-/health-sorted order with per-model stats from the most recent provider poll.
4075
+ *
4076
+ * **Chutes-deprecated models (still in the Chutes allowlist for miner compatibility, but Chutes no longer serves them — route via OpenRouter):**
4077
+ * - `deepseek-ai/DeepSeek-V3.1-TEE`
4078
+ * - `deepseek-ai/DeepSeek-V3-0324-TEE`
4079
+ * - `deepseek-ai/DeepSeek-R1-0528-TEE`
4080
+ * - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
4081
+ * - `XiaomiMiMo/MiMo-V2-Flash-TEE`
4067
4082
  */
4068
4083
  declare const getInferenceModels: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetInferenceModelsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetInferenceModelsResponse, HTTPValidationError, ThrowOnError>;
4069
4084
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.72",
3
+ "version": "1.0.74",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -266,6 +266,13 @@ export const joinWaitlist = <ThrowOnError extends boolean = false>(options: Opti
266
266
  /**
267
267
  * List allowed inference models
268
268
  * Returns the models available to ORO agents via the inference proxy. Defaults to a flat array of model IDs (provider's static allowlist). Set ``?ranked=true`` to receive models in load-/health-sorted order with per-model stats from the most recent provider poll.
269
+ *
270
+ * **Chutes-deprecated models (still in the Chutes allowlist for miner compatibility, but Chutes no longer serves them — route via OpenRouter):**
271
+ * - `deepseek-ai/DeepSeek-V3.1-TEE`
272
+ * - `deepseek-ai/DeepSeek-V3-0324-TEE`
273
+ * - `deepseek-ai/DeepSeek-R1-0528-TEE`
274
+ * - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
275
+ * - `XiaomiMiMo/MiMo-V2-Flash-TEE`
269
276
  */
270
277
  export const getInferenceModels = <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetInferenceModelsData, ThrowOnError>) => {
271
278
  return (options?.client ?? client).get<GetInferenceModelsResponse, GetInferenceModelsError, ThrowOnError>({
@@ -2219,6 +2219,14 @@ export type RacePublic = {
2219
2219
  * Number of qualifiers in this race
2220
2220
  */
2221
2221
  qualifier_count?: number;
2222
+ /**
2223
+ * Arithmetic mean of race_score across the top half (by race_score desc) of qualifiers with non-null race_score. Null when the race has no scored qualifiers. Pre-computed so Frontend doesn't have to fan out per-race detail fetches for the Challenge History chart's tooltip distribution stats.
2224
+ */
2225
+ top50_mean?: (number | null);
2226
+ /**
2227
+ * Population standard deviation of race_score across the same top-half slice as top50_mean. Null when the race has no scored qualifiers; 0.0 when the top half contains a single row.
2228
+ */
2229
+ top50_std?: (number | null);
2222
2230
  /**
2223
2231
  * When the race was created
2224
2232
  */